/* Reset and Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #1e3a5f;
    --color-primary-dark: #152a45;
    --color-accent: #c9a227;
    --color-accent-light: #d4b340;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f8fa;
    --color-bg-cream: #fdfcf9;
    --color-border: #e2e8f0;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-bg);
}

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

h1, h2, h3 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-primary);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-accent);
}

/* Button */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    color: var(--color-primary);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.logo:hover {
    text-decoration: none;
    color: var(--color-accent);
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--color-accent);
    text-decoration: none;
}

/* Hero */
.hero {
    padding: 10rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    color: white;
    position: relative;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    position: relative;
}

.hero .btn {
    position: relative;
}

/* Services */
.services {
    padding: 6rem 0;
    background: var(--color-bg-cream);
}

.services h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.services h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-category {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--color-border);
}

.service-category:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.service-category:hover .category-icon {
    background: var(--color-accent);
    color: var(--color-primary);
}

.service-category h3 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.6rem 0;
    color: var(--color-text-light);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--color-border);
}

.service-list li:last-child {
    border-bottom: none;
}

/* About */
.about {
    padding: 6rem 0;
    background: var(--color-bg);
}

.about h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.about h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 1rem auto 2.5rem;
    border-radius: 2px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Contact */
.contact {
    padding: 6rem 0;
    background: var(--color-bg-alt);
}

.contact h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 1rem auto 2.5rem;
    border-radius: 2px;
}

.contact-info {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.contact-info p {
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--color-accent);
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--color-primary);
}

/* Footer - see Professional Footer section below */

/* Responsive */
@media (max-width: 968px) {
    .services-categories {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .services,
    .about {
        padding: 3rem 0;
    }

    .services h2,
    .about h2 {
        font-size: 1.75rem;
    }

    .service-category {
        padding: 2rem;
    }

    .category-icon {
        width: 70px;
        height: 70px;
    }

    .category-icon svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6.5rem 0 2.5rem;
    }

    .hero-tagline {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .services,
    .about {
        padding: 2.5rem 0;
    }

    .services h2,
    .about h2 {
        font-size: 1.5rem;
    }

    .services h2::after,
    .about h2::after {
        margin: 0.75rem auto 1.5rem;
    }
}

/* Logo Image */
.logo-image {
    height: 70px;
    width: auto;
    display: block;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: color 0.2s ease;
}

.nav-dropdown-trigger:hover {
    color: var(--color-accent);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-top: 0.75rem;
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--color-text);
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

/* Landing Page Hero */
.landing-hero {
    padding: 10rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.landing-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.landing-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    position: relative;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-large svg {
    flex-shrink: 0;
}

/* Landing Values Section */
.landing-values {
    padding: 5rem 0;
    background: var(--color-bg-cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--color-accent);
}

.value-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.value-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Landing Gallery */
.landing-gallery {
    padding: 5rem 0;
    background: var(--color-bg);
}

.landing-gallery h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.landing-gallery h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 1rem auto 2.5rem;
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: white;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-light);
    background: white;
}

/* Before/After Section */
.landing-before-after {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.landing-before-after h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.landing-before-after h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 1rem auto 2.5rem;
    border-radius: 2px;
}

.before-after-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.before-after-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.before-image,
.after-image {
    position: relative;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.before-image .label,
.after-image .label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.before-after-caption {
    padding: 1.25rem;
    text-align: center;
    font-size: 1rem;
    color: var(--color-text);
}

/* Testimonial Section */
.landing-testimonial {
    padding: 5rem 0;
    background: var(--color-primary);
    color: white;
}

.landing-testimonial blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.landing-testimonial blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.landing-testimonial cite {
    font-style: normal;
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* Landing CTA Section */
.landing-cta {
    padding: 6rem 0;
    background: var(--color-bg-cream);
    text-align: center;
}

.landing-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.landing-cta > .container > p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.cta-subtext {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* Photo Showcase on Homepage */
.photo-showcase {
    padding: 5rem 0;
    background: var(--color-bg);
}

.photo-showcase h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.photo-showcase h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 1rem auto 2.5rem;
    border-radius: 2px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.showcase-item {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Responsive Styles for New Elements */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header .container {
        height: auto;
        padding: 0.5rem 1rem;
    }

    .logo-image {
        height: 80px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-primary-dark);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .nav.active {
        display: flex;
    }

    .nav > a,
    .nav-dropdown-trigger {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin: 0;
        border-radius: 0;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-menu a {
        color: rgba(255, 255, 255, 0.9);
        padding-left: 2rem;
    }

    .nav-dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--color-accent);
    }

    .landing-hero {
        padding: 8rem 0 5rem;
    }

    .landing-hero h1 {
        font-size: 2.25rem;
    }

    .landing-subtitle {
        font-size: 1.15rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .before-after-images {
        grid-template-columns: 1fr;
    }

    .before-image img,
    .after-image img {
        height: 250px;
    }

    .landing-testimonial blockquote p {
        font-size: 1.2rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .site-header .container {
        padding: 0.25rem 0.75rem;
    }

    .logo-image {
        height: 75px;
    }

    .landing-hero h1 {
        font-size: 1.85rem;
    }

    .landing-cta h2 {
        font-size: 1.75rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-large svg {
        display: none;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ============================================
   Homepage Service Category Cards
   ============================================ */
.service-category-card {
    display: block;
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
}

.service-category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}

.service-category-card:hover .category-icon {
    background: var(--color-accent);
    color: var(--color-primary);
}

.service-category-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.view-services {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.service-category-card:hover .view-services {
    color: var(--color-primary);
}

/* ============================================
   Services Page Hero
   ============================================ */
.services-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

/* ============================================
   Services Page Sticky Navigation
   ============================================ */
.services-nav {
    position: sticky;
    top: 4.5rem;
    background: white;
    border-bottom: 1px solid var(--color-border);
    z-index: 50;
    box-shadow: var(--shadow-sm);
}

.services-nav .container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.services-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
}

.services-nav-link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.services-nav-link.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-accent);
}

/* ============================================
   Services Page Sections
   ============================================ */
.services-section {
    padding: 5rem 0;
    background: var(--color-bg);
}

.services-section-alt {
    background: var(--color-bg-alt);
}

/* Two-column layout: image + content */
.service-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-section-reversed {
    direction: rtl;
}

.service-section-reversed > * {
    direction: ltr;
}

.service-section-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-section-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.service-section-info {
    padding: 1rem 0;
}

.service-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-section-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.services-section h2 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin: 0;
}

/* Service list styling */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.service-list li {
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 0.5rem;
    color: var(--color-text);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    position: relative;
    padding-left: 2rem;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.services-section-alt .service-list li {
    background: white;
}

/* ============================================
   Services Page CTA
   ============================================ */
.services-cta {
    padding: 5rem 0;
    background: var(--color-primary);
    text-align: center;
}

.cta-logo {
    height: 150px;
    width: auto;
    margin-bottom: 2rem;
    border: none;
    box-shadow: none;
    outline: none;
    background: transparent;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.services-cta h2 {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

/* ============================================
   Services Page Responsive
   ============================================ */
@media (max-width: 968px) {
    .service-section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-section-reversed {
        direction: ltr;
    }

    .service-section-image img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 8rem 0 3rem;
    }

    .services-hero h1 {
        font-size: 2.25rem;
    }

    .services-nav .container {
        gap: 0.5rem;
    }

    .services-nav-link {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
    }

    .services-section {
        padding: 4rem 0;
    }

    .service-section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .services-section h2 {
        font-size: 1.5rem;
    }

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

    .services-cta h2 {
        font-size: 1.75rem;
    }

    .cta-logo {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.85rem;
    }

    .services-hero-subtitle {
        font-size: 1.05rem;
    }

    .services-nav {
        top: 0;
    }

    .services-nav .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-nav-link {
        padding: 0.75rem 0.875rem;
        font-size: 0.8rem;
    }

    .service-section-image img {
        height: 220px;
    }

    .service-section-icon {
        width: 48px;
        height: 48px;
    }

    .service-section-icon svg {
        width: 24px;
        height: 24px;
    }

    .cta-logo {
        height: 100px;
    }
}

/* ============================================
   Service Single Page (SEO Pages)
   ============================================ */
.service-single-hero {
    padding: 10rem 0 5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
}

.service-single-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.service-single-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.service-single-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Content Section */
.service-single-content {
    padding: 5rem 0;
    background: var(--color-bg);
}

.service-single-main {
    max-width: 800px;
    margin: 0 auto;
}

.service-single-main h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-primary);
}

.service-single-main h2:first-child {
    margin-top: 0;
}

.service-single-main h3 {
    font-size: 1.35rem;
    margin: 2rem 0 0.75rem;
    color: var(--color-primary);
}

.service-single-main p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.service-single-main ul,
.service-single-main ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-single-main li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    position: relative;
}

.service-single-main ul li::marker {
    color: var(--color-accent);
}

/* Benefits Section */
.service-single-benefits {
    padding: 5rem 0;
    background: var(--color-bg-cream);
}

.service-single-benefits h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-single-benefits h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 1rem auto 2.5rem;
    border-radius: 2px;
}

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

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.benefit-text p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Service Area Callout */
.service-single-area {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.area-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.area-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.area-text h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.area-text p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Service Single Responsive */
@media (max-width: 768px) {
    .service-single-hero {
        padding: 8rem 0 4rem;
    }

    .service-single-hero h1 {
        font-size: 2.25rem;
    }

    .service-single-subtitle {
        font-size: 1.15rem;
    }

    .service-single-content {
        padding: 3rem 0;
    }

    .service-single-main h2 {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .area-content {
        flex-direction: column;
        text-align: center;
    }

    .area-text h2 {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .service-single-hero h1 {
        font-size: 1.85rem;
    }

    .service-single-subtitle {
        font-size: 1.05rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto;
    }
}

/* ============================================
   Lead Capture Page
   ============================================ */
.lead-capture-hero {
    padding: 10rem 0 5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
}

.lead-capture-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.lead-capture-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.lead-capture-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Lead Capture Content */
.lead-capture-content {
    padding: 5rem 0;
    background: var(--color-bg);
}

.lead-capture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.lead-capture-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.lead-capture-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.lead-capture-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.lead-capture-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--color-text);
}

.lead-capture-benefits li svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

/* Form Container */
.lead-capture-form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.lead-capture-form-container h3 {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    text-align: center;
}

.lead-capture-form-container iframe {
    width: 100%;
    min-height: 400px;
    border: none;
}

/* Thank You Page */
.thank-you-content {
    padding: 10rem 0 6rem;
    text-align: center;
    background: var(--color-bg-cream);
    min-height: 60vh;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.thank-you-content p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.thank-you-content .btn {
    margin: 0.5rem;
}

/* Lead Capture Responsive */
@media (max-width: 768px) {
    .lead-capture-hero {
        padding: 8rem 0 4rem;
    }

    .lead-capture-hero h1 {
        font-size: 2rem;
    }

    .lead-capture-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lead-capture-form-container {
        order: -1;
    }

    .thank-you-content {
        padding: 8rem 0 4rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }
}

/* ============================================
   Footer Services Section
   ============================================ */
.footer-services {
    margin-bottom: 1.5rem;
}

.footer-services h4 {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-services-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
}

.footer-services-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-services-links a:hover {
    color: var(--color-accent);
}

/* ============================================
   Service Page Enhanced Sections
   ============================================ */

/* Problem/Pain Point Section */
.service-problem-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.problem-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.pain-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pain-points-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
    text-align: left;
}

.pain-points-list li svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.pain-points-list li span {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* What's Included Section */
.service-whats-included {
    padding: 5rem 0;
    background: var(--color-bg-cream);
}

.service-whats-included h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-whats-included h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 1rem auto 2.5rem;
    border-radius: 2px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.included-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.included-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.included-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.included-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Mid-Page CTA Section */
.service-mid-cta {
    padding: 4rem 0;
    background: var(--color-primary);
    text-align: center;
}

.service-mid-cta h2 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 0.75rem;
}

.service-mid-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

/* Process Steps Section */
.service-process {
    padding: 5rem 0;
    background: var(--color-bg);
}

.service-process h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-process h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* FAQ Section */
.service-faqs {
    padding: 5rem 0;
    background: var(--color-bg-cream);
}

.service-faqs h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-faqs h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 1rem auto 2.5rem;
    border-radius: 2px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.faq-item p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Service Enhanced Sections Responsive */
@media (max-width: 968px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 3rem;
    }
}

@media (max-width: 768px) {
    .service-problem-section {
        padding: 4rem 0;
    }

    .problem-content h2 {
        font-size: 1.75rem;
    }

    .service-whats-included,
    .service-process,
    .service-faqs {
        padding: 4rem 0;
    }

    .service-whats-included h2,
    .service-process h2,
    .service-faqs h2 {
        font-size: 1.75rem;
    }

    .service-mid-cta {
        padding: 3rem 0;
    }

    .service-mid-cta h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 580px) {
    .included-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .faq-item {
        padding: 1.25rem 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.05rem;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 5rem 0;
    background: var(--color-bg);
}

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

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.contact-card h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.contact-card a {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: var(--color-primary);
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-hours {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.hours-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hours-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--color-primary);
}

.hours-time {
    color: var(--color-text-light);
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 0 3rem;
    }

    .contact-hero h1 {
        font-size: 2.25rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Blog Styles
   ============================================ */
.blog-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.blog-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.blog-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

/* Blog List */
.blog-list {
    padding: 5rem 0;
    background: var(--color-bg);
}

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

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-content time {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content h2 {
    font-size: 1.25rem;
    margin: 0.75rem 0;
    line-height: 1.4;
}

.blog-card-content h2 a {
    color: var(--color-primary);
    transition: color 0.2s ease;
}

.blog-card-content h2 a:hover {
    color: var(--color-accent);
}

.blog-card-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: color 0.2s ease;
}

.read-more:hover {
    color: var(--color-primary);
}

/* Blog Article Single */
.blog-article-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
}

.blog-article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.blog-article-header time {
    font-size: 0.9rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: block;
    margin-bottom: 1rem;
}

.blog-article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: white;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-excerpt {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-featured-image {
    margin-top: -3rem;
    padding: 0 1.5rem;
}

.blog-featured-image img {
    max-width: 900px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.blog-article-content {
    padding: 4rem 0;
    background: var(--color-bg);
}

.blog-article-body {
    max-width: 700px;
    margin: 0 auto;
}

.blog-article-body h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-primary);
}

.blog-article-body h2:first-child {
    margin-top: 0;
}

.blog-article-body h3 {
    font-size: 1.35rem;
    margin: 2rem 0 0.75rem;
    color: var(--color-primary);
}

.blog-article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.blog-article-body ul,
.blog-article-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-article-body li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.blog-article-body ul li::marker {
    color: var(--color-accent);
}

.blog-article-body blockquote {
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.blog-article-body blockquote p {
    font-size: 1.15rem;
    color: var(--color-text);
}

/* Blog Related CTA */
.blog-related-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-bg-cream);
    border-radius: 1rem;
    text-align: center;
    border: 1px solid var(--color-border);
}

.blog-related-cta h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.blog-related-cta p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

/* Blog Responsive */
@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 8rem 0 3rem;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .blog-article-header {
        padding: 8rem 0 3rem;
    }

    .blog-article-header h1 {
        font-size: 2rem;
    }

    .blog-excerpt {
        font-size: 1.05rem;
    }

    .blog-featured-image {
        margin-top: -2rem;
    }

    .blog-article-content {
        padding: 3rem 0;
    }

    .blog-article-body h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 1.75rem;
    }

    .blog-article-header h1 {
        font-size: 1.75rem;
    }
}

/* ============================================
   About Page Styles
   ============================================ */
.about-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* About Bio Section */
.about-bio {
    padding: 5rem 0;
    background: var(--color-bg);
}

.about-bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-bio-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.about-bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.about-bio-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0.5rem;
}

/* About Values Section */
.about-values {
    padding: 5rem 0;
    background: var(--color-bg-cream);
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-values-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.about-values-content h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.about-values-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

/* About Page Responsive */
@media (max-width: 968px) {
    .about-bio-grid,
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-bio-image,
    .about-values-image {
        text-align: center;
        order: -1;
    }

    .about-values-grid {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 0 3rem;
    }

    .about-hero h1 {
        font-size: 2.25rem;
    }

    .about-bio,
    .about-values {
        padding: 4rem 0;
    }

    .about-bio-content h2,
    .about-values-content h2 {
        font-size: 1.75rem;
    }

    .about-bio-image img,
    .about-values-image img {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.85rem;
    }

    .about-hero-subtitle {
        font-size: 1.05rem;
    }

    .about-bio-image img,
    .about-values-image img {
        max-width: 280px;
    }
}

/* ============================================
   Homepage Expanded Services Grid
   ============================================ */
.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    margin-top: -0.5rem;
}

.services-grid-expanded {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card-expanded {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.service-card-expanded:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: inherit;
}

.service-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.service-card-expanded:hover .service-card-icon {
    background: var(--color-accent);
}

.service-card-expanded h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.service-card-expanded p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.service-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: color 0.2s ease;
}

.service-card-expanded:hover .service-card-link {
    color: var(--color-primary);
}

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

/* Services Grid Responsive */
@media (max-width: 968px) {
    .services-grid-expanded {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .services-grid-expanded {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

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

    .service-card-icon {
        width: 56px;
        height: 56px;
    }

    .service-card-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   Professional Footer
   ============================================ */
.site-footer {
    padding: 4rem 0 2rem;
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--color-accent);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column h4:not(:first-child) {
    margin-top: 2rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--color-accent);
}

/* Service Areas Row - full width horizontal layout */
.footer-service-areas {
    padding: 1.5rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-service-areas h4 {
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    text-align: center;
}

.footer-areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
}

.footer-areas-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-areas-list a:hover {
    color: var(--color-accent);
}

/* Footer Brand Column */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    margin-bottom: 1.25rem;
}

.footer-contact-info a {
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-info a:hover {
    color: white;
}

.footer-address {
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-address a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-address a:hover {
    color: var(--color-accent);
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.2s ease;
}

.footer-social-links a:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1rem;
        display: block;
    }

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

    .footer-areas-list {
        gap: 0.5rem 1.25rem;
    }
}

@media (max-width: 580px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }

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

    .footer-column h4 {
        margin-bottom: 1rem;
    }

    .footer-column h4:not(:first-child) {
        margin-top: 1.5rem;
    }

    .footer-areas-list {
        gap: 0.4rem 1rem;
    }

    .footer-areas-list a {
        font-size: 0.85rem;
    }
}

/* ============================================
   Location Pages
   ============================================ */

/* Location Hero */
.location-hero {
    padding: 10rem 0 5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
}

.location-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.location-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.location-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Location Content */
.location-content {
    padding: 4rem 0;
    background: var(--color-bg);
}

.location-main {
    max-width: 800px;
    margin: 0 auto;
}

.location-main h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--color-primary);
}

.location-main h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--color-primary);
}

.location-main p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.location-main ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.25rem;
}

.location-main li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.location-main strong {
    color: var(--color-text);
}

/* Location Services Grid */
.location-services {
    padding: 4rem 0;
    background: var(--color-bg-cream);
}

.location-services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.location-services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

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

.location-service-category {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.location-service-category h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-accent);
}

.location-service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-service-category li {
    margin-bottom: 0.5rem;
}

.location-service-category li a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.location-service-category li a:hover {
    color: var(--color-accent);
}

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

/* Why Us Section */
.location-why-us {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.location-why-us h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--color-primary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-us-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.why-us-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.why-us-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

/* Other Areas Section */
.location-other-areas {
    padding: 3rem 0;
    background: var(--color-bg);
}

.location-other-areas h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.other-areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.area-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    font-size: 0.9rem;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.area-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* Secondary button style */
.btn-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    text-decoration: none;
}

/* Location Page Responsive */
@media (max-width: 968px) {
    .location-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .location-hero {
        padding: 8rem 0 4rem;
    }

    .location-hero h1 {
        font-size: 2.25rem;
    }

    .location-subtitle {
        font-size: 1.1rem;
    }

    .location-content,
    .location-services,
    .location-why-us {
        padding: 3rem 0;
    }

    .location-services h2,
    .location-why-us h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 580px) {
    .location-hero h1 {
        font-size: 1.85rem;
    }

    .location-services-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .other-areas-list {
        gap: 0.5rem;
    }

    .area-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
}
/* Microsite-specific styles */

/* Simplified header for micro-sites */
.microsite-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.microsite-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.microsite-header .header-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

.microsite-header .header-cta svg {
    flex-shrink: 0;
}

/* Hide regular nav on micro-sites (no multi-page navigation) */
.microsite-header .nav,
.microsite-header .mobile-menu-toggle {
    display: none;
}

/* Simplified footer for micro-sites */
.microsite-footer {
    text-align: center;
}

.microsite-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 0;
}

.microsite-footer .footer-logo {
    max-width: 120px;
    height: auto;
}

.microsite-footer .footer-contact-info {
    margin: 0;
}

.microsite-footer .footer-contact-info a {
    color: inherit;
    text-decoration: none;
}

.microsite-footer .footer-contact-info a:hover {
    text-decoration: underline;
}

.microsite-footer .footer-address {
    margin: 0;
    color: var(--text-muted, #6b7280);
    font-size: 0.9rem;
}

.microsite-footer .footer-main-link {
    margin-top: 0.5rem;
}

.microsite-footer .footer-main-link a {
    color: var(--primary-color, #2563eb);
    text-decoration: none;
    font-weight: 500;
}

.microsite-footer .footer-main-link a:hover {
    text-decoration: underline;
}

.microsite-footer .footer-grid {
    display: none;
}

.microsite-footer .footer-service-areas {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .microsite-header .header-cta {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .microsite-header .header-cta svg {
        width: 16px;
        height: 16px;
    }
}
