:root {
    /* Background Colors */
    --color-charcoal-black: #121212;
    --color-soft-graphite: #1E1E1E;
    
    /* Text Colors */
    --color-off-white: #F2F2F2;
    --color-muted-gray: #B5B5B5;
    --color-near-black: #1A1A1A;
    
    /* Accent Colors */
    --color-burnt-orange: #FF7A00;
    --color-burnt-orange-hover: #E86E00;
    --color-blood-red: #B11212;
    
    /* Legacy/Utility */
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    
    /* Fonts */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--color-off-white);
    background-color: var(--color-charcoal-black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 1);
    backdrop-filter: blur(8px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 40px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.nav-primary,
.nav-utility {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-primary {
    justify-content: flex-start;
}

.nav-utility {
    justify-content: flex-end;
}

.logo {
    text-decoration: none;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0.5rem 1rem;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.logo-image {
    opacity: 0.88;
}

.logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s ease, opacity 0.2s ease;
    position: relative;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link.active {
    color: var(--color-burnt-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-off-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/dog-walking-peachtree-city-georgia-hero.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.15) 100%
    );
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 2rem 0 0 5%;
    text-align: left;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    line-height: 1.15;
    color: var(--color-off-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-location {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 1.5rem;
    color: var(--color-burnt-orange);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 2.5rem;
    color: var(--color-muted-gray);
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-burnt-orange);
    color: var(--color-white);
    border-color: var(--color-burnt-orange);
}

.btn-primary:hover {
    background-color: var(--color-burnt-orange-hover);
    border-color: var(--color-burnt-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-off-white);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-burnt-orange);
    margin: 1.5rem auto 0;
}

/* Services */
.services {
    background-color: var(--color-soft-graphite);
}

.services .section-title {
    color: var(--color-off-white);
    font-weight: 800;
    margin-bottom: 2rem;
}

.services .section-title::after {
    width: 40px;
    height: 4px;
    background-color: var(--color-burnt-orange);
    margin: 1.5rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--color-charcoal-black);
    padding: 2.5rem 2rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.service-identity {
    margin-bottom: 2rem;
}

.service-title {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: var(--color-off-white);
    font-weight: 700;
}

.service-descriptor {
    font-size: 0.95rem;
    color: var(--color-muted-gray);
    margin: 0;
    line-height: 1.5;
}

.service-core {
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-core-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
}

.service-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-option:first-child {
    padding-right: 1rem;
}

.service-option:last-child {
    padding-left: 1rem;
}

.service-duration {
    font-size: 0.85rem;
    color: var(--color-muted-gray);
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    opacity: 0.8;
    text-align: center;
    line-height: 1.3;
}

.service-price {
    font-size: 2rem;
    color: var(--color-burnt-orange);
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.service-details {
    margin-top: auto;
    padding-top: 1.5rem;
}

.service-detail-text {
    font-size: 0.85rem;
    color: var(--color-muted-gray);
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-note {
    font-size: 0.9rem;
    color: var(--color-muted-gray);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

/* About */
.about {
    background-color: var(--color-charcoal-black);
    position: relative;
}

.about .section-title {
    font-weight: 800;
    color: var(--color-off-white);
    position: relative;
    z-index: 1;
}

.about .section-title::after {
    width: 40px;
    height: 4px;
    background-color: var(--color-burnt-orange);
    margin: 1.5rem auto 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--color-near-black);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.about-main {
    display: flex;
    flex-direction: column;
}

.about-text {
    font-size: 1rem;
    color: var(--color-off-white);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.about-subtitle {
    font-size: 1.25rem;
    color: var(--color-off-white);
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.about-list li {
    font-size: 1rem;
    color: var(--color-off-white);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.about-list li::before {
    content: '•';
    color: var(--color-burnt-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.owner-info {
    display: flex;
    flex-direction: column;
}

.owner-name {
    font-size: 1.5rem;
    color: var(--color-burnt-orange);
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.owner-title {
    font-size: 0.95rem;
    color: var(--color-muted-gray);
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.owner-experience {
    font-size: 0.9rem;
    color: var(--color-muted-gray);
    margin: 0;
}

.owner-quote {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-text {
    font-size: 0.95rem;
    color: var(--color-off-white);
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
    font-style: italic;
}

/* Reviews */
.reviews {
    background-color: var(--color-soft-graphite);
}

.reviews .section-title {
    color: var(--color-off-white);
    font-weight: 800;
}

.reviews .section-title::after {
    width: 40px;
    height: 4px;
    background-color: var(--color-burnt-orange);
    margin: 1.5rem auto 0;
}

.reviews-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--color-off-white);
    opacity: 0.9;
    font-weight: 400;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--color-charcoal-black);
    padding: 2.5rem 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.review-stars .star {
    color: var(--color-burnt-orange);
    font-size: 1.25rem;
    line-height: 1;
}

.review-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1rem;
    color: var(--color-off-white);
    line-height: 1.7;
    margin: 0;
    opacity: 0.9;
    font-style: italic;
}

.review-author {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-author-name {
    font-size: 1rem;
    color: var(--color-burnt-orange);
    font-weight: 600;
    margin: 0;
    text-align: right;
}

/* Areas */
.areas {
    background-color: var(--color-charcoal-black);
    position: relative;
}


.areas .section-title {
    color: var(--color-off-white);
    font-weight: 800;
}

.areas .section-title::after {
    width: 40px;
    height: 4px;
    background-color: var(--color-burnt-orange);
    margin: 1.5rem auto 0;
}

.areas-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--color-off-white);
    opacity: 0.9;
    font-weight: 400;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    padding: 0;
}

.areas-list li {
    background-color: var(--color-charcoal-black);
    padding: 1.25rem 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    padding-left: 2.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    color: var(--color-off-white);
}

.areas-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.areas-list li::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-burnt-orange);
    border-radius: 50%;
}

.areas-note {
    text-align: center;
    color: var(--color-off-white);
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.areas-cta {
    text-align: center;
}

.areas-note a {
    color: var(--color-burnt-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.areas-note a:hover {
    color: var(--color-burnt-orange-hover);
    opacity: 1;
    text-decoration: underline;
}

/* Contact */
.contact {
    background-color: var(--color-soft-graphite);
}

.contact .section-title {
    color: var(--color-off-white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-off-white);
}

.contact-preference {
    margin-bottom: 1rem;
    color: var(--color-muted-gray);
    font-style: italic;
    font-size: 1rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--color-off-white);
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-off-white);
}

.contact-link {
    color: var(--color-burnt-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-burnt-orange-hover);
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-off-white);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    color: var(--color-burnt-orange);
}

.social-link svg {
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    background-color: var(--color-soft-graphite);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-off-white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 1rem;
    background-color: var(--color-charcoal-black);
    color: var(--color-off-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-burnt-orange);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-muted-gray);
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
/* Footer */
.footer {
    background-color: var(--color-charcoal-black);
    color: var(--color-off-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-off-white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-off-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-description {
    color: var(--color-muted-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-address {
    font-style: normal;
    color: var(--color-muted-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-address p {
    margin: 0.5rem 0;
}

.footer-link {
    color: var(--color-off-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-burnt-orange);
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-off-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 0.5rem 0;
}

.footer-social-link:hover {
    color: var(--color-burnt-orange);
    transform: translateX(5px);
}

.footer-social-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-social-link:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-copyright,
.footer-location {
    color: var(--color-muted-gray);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    opacity: 0.8;
}

.footer-copyright time {
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        grid-template-columns: 1fr auto;
        padding: 0.5rem 16px;
        gap: 1rem;
    }

    .logo-image {
        height: 72px;
    }

    .nav-primary,
    .nav-utility {
        position: fixed;
        left: -100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 0;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .nav-primary {
        top: 80px;
        padding-top: 2rem;
        padding-bottom: 0;
    }

    .nav-utility {
        top: 224px;
        padding-top: 0;
        padding-bottom: 2rem;
    }

    .nav-primary.active,
    .nav-utility.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        text-align: center;
        font-size: 0.95rem;
    }

    .logo {
        justify-self: flex-start;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-image {
        background-position: center center;
        background-size: cover;
        height: 100%;
    }

    .hero-overlay {
        width: 100%;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.8) 100%
        );
    }

    .hero-content {
        max-width: 100%;
        padding: 10px 20px 40px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-location {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 2rem;
        padding: 0 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .service-descriptor {
        font-size: 0.9rem;
    }

    .service-core {
        margin: 1.5rem 0;
        padding: 1.5rem 0;
    }

    .service-core-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .service-option:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 1.5rem;
    }

    .service-option:last-child {
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .service-duration {
        font-size: 0.8rem;
    }

    .service-price {
        font-size: 1.75rem;
    }

    .services-cta {
        margin-top: 2rem;
        padding: 0 16px;
    }

    .services-note {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.25rem;
    }

    .about-main {
        padding: 0;
    }

    .about-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
        margin: 1.25rem 0 0.75rem;
    }

    .about-list {
        margin-bottom: 1.25rem;
    }

    .about-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .about-sidebar {
        padding-left: 0;
        padding-top: 1.5rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .owner-name {
        font-size: 1.25rem;
    }

    .owner-title {
        font-size: 0.85rem;
    }

    .quote-text {
        font-size: 0.9rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 2rem 1.5rem;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .review-stars {
        margin-bottom: 1.25rem;
    }

    .review-stars .star {
        font-size: 1.1rem;
    }

    .review-author-name {
        font-size: 0.95rem;
    }

    .reviews-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 16px;
    }

    .areas-list {
        grid-template-columns: 1fr;
    }

    .areas-intro {
        font-size: 1rem;
        padding: 0 16px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding: 0;
    }

    .contact-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .contact-item {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .contact-preference {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .contact-form-container {
        padding: 0;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.875rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .footer-about,
    .footer-contact,
    .footer-social {
        padding: 0;
    }

    .footer-title {
        font-size: 1.25rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-address {
        text-align: center;
        font-size: 0.9rem;
    }

    .footer-social-links {
        align-items: center;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .footer-copyright,
    .footer-location {
        font-size: 0.85rem;
    }
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

