/* TODO: Minify this file to styles.min.css for production. Use cssnano or similar tool. */
:root {
    /* Editorial Palette - Bold & Confident */
    --color-primary: #1a1a2e;          /* Deep navy */
    --color-secondary: #16213e;        /* Rich dark blue */
    --color-accent: #e94560;           /* Vibrant coral/red */
    --color-accent-light: #ff6b6b;
    --color-background: #fafafa;       /* Clean white */
    --color-surface: #ffffff;
    --color-surface-alt: #f5f5f5;
    --color-surface-dark: #1a1a2e;
    --color-text: #1a1a2e;
    --color-text-muted: #64748b;
    --color-text-light: #ffffff;
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    --color-warm: #f4a261;             /* Warm accent */

    /* Editorial Typography */
    --font-display: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    /* Spacing - more generous */
    --section-padding: 8rem 2rem;
    --card-padding: 2.5rem;

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-hover: 0 30px 80px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Grain overlay */
    --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-background);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.page-container {
    display: none;
}

.page-container.active {
    display: block;
}

/* Header - Editorial Minimal */
header {
    background: transparent;
    color: var(--color-text-light);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled,
header.header-solid {
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: white;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--color-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.nav-links > li > a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links > li > a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: var(--color-accent) !important;
    color: white !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-size: 0.85rem !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    background: var(--color-accent-light) !important;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 240px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 0.5rem;
    z-index: 100;
    border: 1px solid var(--color-border-light);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    font-size: 0.925rem;
    border-bottom: none;
    transition: var(--transition);
}

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

.dropdown-arrow {
    font-size: 0.6rem;
    margin-left: 0.375rem;
    opacity: 0.7;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero - Editorial Full-Bleed Image */
.hero {
    background:
        linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 100%),
        url('https://images.unsplash.com/photo-1576013551627-0cc20b96c2a7?w=1920&q=80') center/cover no-repeat;
    color: white;
    padding: 0;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grain);
    opacity: 0.03;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--color-background) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 8rem 6rem;
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--color-accent);
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-family: var(--font-display);
}

.hero h1 span {
    color: var(--color-accent);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.85;
    line-height: 1.7;
    font-weight: 400;
    max-width: 500px;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 85%;
    height: 70vh;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    position: absolute;
    bottom: 4rem;
    left: 6rem;
    display: flex;
    gap: 3rem;
    z-index: 2;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1;
    color: white;
}

.hero-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-top: 0.25rem;
}

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

.btn {
    padding: 1.125rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.5);
    background: var(--color-accent-light);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-content {
        padding: 10rem 2rem 6rem;
        max-width: 100%;
        text-align: center;
    }
    .hero-image {
        display: none;
    }
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 4rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.15);
    }
    .cta-buttons {
        justify-content: center;
    }
    .hero-tag {
        justify-content: center;
    }
}

/* Trust Bar - Editorial Strip */
.trust-bar {
    background: var(--color-primary);
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 2;
}

.trust-items {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 2;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.trust-detail {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

/* Sections - Editorial */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-text);
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    font-family: var(--font-display);
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Grid - Editorial with Photos */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-sm);
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-image-wrapper {
    overflow: hidden;
    position: relative;
}

.service-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(26,26,46,0.4) 0%, transparent 100%);
    pointer-events: none;
}

.service-content {
    padding: 1.75rem;
}

.service-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-weight: 700;
    font-family: var(--font-display);
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.learn-more {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.learn-more::after {
    content: '→';
    transition: var(--transition);
}

.service-card:hover .learn-more {
    color: var(--color-accent);
}

.service-card:hover .learn-more::after {
    transform: translateX(4px);
}

/* Process - Timeline Style */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-border) 0%, var(--color-secondary) 50%, var(--color-border) 100%);
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 64px;
    height: 64px;
    background: var(--color-surface);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--color-secondary);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.process-step:hover .process-number {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    transform: scale(1.08);
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.625rem;
    color: var(--color-text);
    font-weight: 700;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* Why Choose - Editorial Dark Section */
.why-choose {
    background: var(--color-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grain);
    opacity: 0.04;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature {
    text-align: left;
    padding: 0;
}

.feature-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.feature h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.feature p {
    font-size: 1rem;
    opacity: 0.75;
    line-height: 1.7;
}

/* Trust Badges Section */
.trust-badges {
    background: var(--color-surface);
    text-align: center;
}

.badges-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: var(--color-surface-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-border);
}

.badge-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-primary);
}

.badge-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}

.badge-sublabel {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Before/After Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.gallery-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.gallery-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

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

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

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

.blog-card-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-article-header {
    margin-bottom: 2rem;
}

.blog-article-date {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.blog-article h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.blog-article-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-text);
}

.blog-article-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}

.blog-article-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

.blog-article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.blog-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.blog-article-content th, .blog-article-content td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.blog-article-content th {
    background: var(--color-surface-alt);
    font-weight: 600;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section - Modern Gradient */
.cta-section {
    background: linear-gradient(135deg, var(--color-surface-alt) 0%, var(--color-surface) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(13,79,95,0.04)" stroke-width="1"/></svg>');
    background-size: 60px 60px;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1.25rem;
    color: var(--color-text);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-content p {
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.cta-content .cta-buttons {
    justify-content: center;
}

.cta-section .btn-secondary {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.cta-section .btn-secondary:hover {
    background: var(--color-primary);
    color: white;
}

/* Testimonials - Clean Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--color-border);
    line-height: 1;
    opacity: 0.5;
}

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

.testimonial-stars {
    color: var(--color-accent);
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: normal;
    color: var(--color-text);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    font-size: 0.975rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-text);
    font-size: 1rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

/* FAQ - Modern Accordion */
.faq-container {
    max-width: 840px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    margin-bottom: 0.875rem;
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--color-border);
}

.faq-item.active {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.375rem 1.75rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    transition: var(--transition);
}

.faq-question span {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-secondary);
    transition: var(--transition);
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-answer {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Service Areas - Clean Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1280px;
    margin: 0 auto;
}

.area-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    text-align: center;
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.area-card::after {
    content: '→';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    opacity: 0;
    color: var(--color-secondary);
    font-weight: 600;
    transition: var(--transition);
}

.area-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    padding-right: 2.5rem;
}

.area-card:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.area-card h3 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.375rem;
    font-weight: 700;
}

.area-card p {
    font-size: 0.825rem;
    color: var(--color-text-muted);
}

/* Footer - Editorial Dark */
footer {
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 6rem 2rem 3rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grain);
    opacity: 0.03;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.footer-brand p {
    opacity: 0.65;
    margin: 1.25rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-section a:hover {
    color: white;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--color-surface-alt);
    padding: 0.4rem 2rem;
    font-size: 0.75rem;
    border-bottom: 1px solid var(--color-border-light);
    margin-top: 56px;
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.breadcrumb-separator {
    color: var(--color-border);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: var(--color-text);
    font-weight: 500;
}

.breadcrumb.hidden {
    display: none;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 1rem;
        top: 60px;
    }
}

.footer-bottom {
    max-width: 1200px;
    margin: 5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
}

/* Service Page - Slate Hero */
.service-hero {
    background:
        linear-gradient(135deg, rgba(44, 58, 68, 0.97) 0%, rgba(61, 79, 95, 0.94) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.025)" stroke-width="15"/></svg>');
    color: white;
    padding: 7rem 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, var(--color-background) 0%, transparent 100%);
}

.service-hero h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-hero p {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.service-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}

.service-content h2 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin: 3rem 0 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-content h2:first-of-type {
    margin-top: 0;
}

.service-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.85;
    font-size: 1.05rem;
}

.service-content ul {
    margin: 1.25rem 0 1.75rem 0;
    color: var(--color-text-muted);
    list-style: none;
}

.service-content li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.7;
}

.service-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    border-radius: 50%;
}

.pricing-box {
    background: linear-gradient(135deg, var(--color-surface-alt) 0%, var(--color-surface) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border: 1px solid var(--color-border-light);
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-secondary) 100%);
}

.pricing-box h3 {
    color: var(--color-text);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Location Page */
.location-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}

.location-content h2 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin: 3rem 0 1.25rem;
    font-weight: 700;
}

.location-content h2:first-of-type {
    margin-top: 0;
}

.location-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.85;
    font-size: 1.05rem;
}

.location-content ul {
    margin: 1.25rem 0 1.75rem 0;
    list-style: none;
}

.location-content li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text-muted);
}

.location-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    border-radius: 50%;
}

/* ============================================================
   COMPONENT LIBRARY - Reusable Page Elements
   ============================================================ */

/* Component: Page Hero with Background Image */
.page-hero {
    position: relative;
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.88) 100%);
    z-index: 1;
}

.page-hero > * {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Component: Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 2rem;
    background: var(--color-surface-dark);
    flex-wrap: wrap;
}

.stats-bar.light {
    background: var(--color-surface-alt);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-accent);
    line-height: 1;
}

.stats-bar:not(.light) .stat-number {
    color: white;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.stats-bar:not(.light) .stat-label {
    color: rgba(255,255,255,0.7);
}

/* Component: Image-Text Split */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse > * {
    direction: ltr;
}

.split-section.dark {
    background: var(--color-surface-dark);
    max-width: 100%;
    padding: 5rem calc((100% - 1200px) / 2 + 2rem);
}

.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.split-content h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-section.dark .split-content h2 {
    color: white;
}

.split-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.split-section.dark .split-content p {
    color: rgba(255,255,255,0.8);
}

/* Component: Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

.feature-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Component: Process Steps */
.process-section {
    padding: 5rem 2rem;
    background: var(--color-surface-alt);
}

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

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

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
    z-index: 0;
}

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

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

.process-step h3 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Component: Testimonial Callout (Service Pages) */
.testimonial-section {
    padding: 5rem 2rem;
    background: #1a1a2e;
}

.testimonial-section .testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    background: transparent;
    border: none;
    box-shadow: none;
}

.testimonial-section .testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    color: white;
}

.testimonial-section .testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: #e94560;
    position: absolute;
    top: -1rem;
    left: -2rem;
    font-family: Georgia, serif;
    opacity: 0.5;
}

.testimonial-section .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
}

.testimonial-section .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-section .testimonial-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

.testimonial-section .testimonial-location {
    opacity: 0.7;
    font-size: 0.9rem;
    color: white;
}

/* Component: CTA Banner */
.cta-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c53a52 100%);
    text-align: center;
    color: white;
}

.cta-banner h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-banner p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    background: white;
    color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-banner .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cta-banner .btn-secondary {
    border-color: rgba(255,255,255,0.5);
}

/* Component: Neighborhood/Area Grid */
.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.area-card {
    background: var(--color-surface);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.area-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.area-card h4 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.area-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Component: FAQ Accordion */
.faq-section {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section > h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--color-surface);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Component: Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Component: Services List (for location pages) */
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition);
}

.service-link:hover {
    border-color: var(--color-accent);
    transform: translateX(4px);
}

.service-link-icon {
    font-size: 1.5rem;
}

.service-link span {
    font-weight: 500;
}

/* Component: Related Articles */
.related-articles {
    padding: 4rem 2rem;
    background: var(--color-surface-alt);
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.article-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
    cursor: pointer;
}

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

.article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

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

.article-card h3 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.article-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Component Responsive */
@media (max-width: 1024px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .split-section.reverse {
        direction: ltr;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps::before {
        display: none;
    }
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 1.5rem 1.5rem;
    }
    .stats-bar {
        gap: 2rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-section .testimonial-quote {
        font-size: 1.2rem;
    }
    .testimonial-section .testimonial-quote::before {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        font-size: 3rem;
        margin-bottom: -1rem;
    }
    .area-grid {
        grid-template-columns: 1fr;
    }
    .services-list {
        grid-template-columns: 1fr;
    }
    .cta-banner h2 {
        font-size: 1.75rem;
    }
}

/* Contact Form - Clean Modern */
.contact-form {
    max-width: 620px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.925rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--color-surface);
    transition: var(--transition);
    color: var(--color-text);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(90, 114, 130, 0.12);
}

/* Enhanced Contact Page */
.contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(233, 69, 96, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

.contact-phone-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-email-link {
    color: var(--color-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}

.contact-badge i {
    color: var(--color-accent);
}

.contact-form-column .contact-form {
    max-width: 100%;
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-xl);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--color-text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--color-accent);
}

.contact-submit-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-submit-btn i {
    font-size: 1.25rem;
}

.form-success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
    border: 1px solid #a7f3d0;
}

.form-success-message h3 {
    color: #065f46;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.form-success-message p {
    color: #047857;
    font-size: 1.1rem;
}

.form-success-message .success-call {
    margin-top: 1.5rem;
}

.form-success-message .success-call a {
    color: #065f46;
    font-weight: 700;
}


@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-column {
        order: 2;
    }

    .contact-form-column {
        order: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-column .contact-form {
        padding: 1.75rem;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .menu-toggle {
        display: block;
    }

    nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-surface-dark);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: var(--shadow-lg);
        overflow: visible;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links > li > a {
        display: block;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        border-radius: 0;
    }

    .nav-cta {
        margin: 1rem 0 0.5rem;
        text-align: center;
    }

    .dropdown-menu,
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        left: 0 !important;
        top: auto !important;
        min-width: 0 !important;
        box-shadow: none;
        background: rgba(255,255,255,0.03);
        width: 100%;
        border-radius: 0;
        border: none;
        padding: 0;
        margin: 0;
    }

    .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.875rem 1.5rem 0.875rem 2.5rem !important;
        border-radius: 0 !important;
        margin: 0 !important;
        color: rgba(255,255,255,0.8) !important;
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        white-space: normal !important;
        box-sizing: border-box !important;
        transform: none !important;
        position: relative !important;
        left: 0 !important;
    }

    .hero {
        padding: 9rem 1.5rem 5rem;
        min-height: 70vh;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .trust-item {
        padding: 1rem 0.5rem;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .process-grid::before {
        display: none;
    }

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

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

    .footer-section a:hover {
        transform: none;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 480px) {
    .trust-items {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .trust-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 1rem;
        padding: 1rem;
        background: var(--color-surface-alt);
        border-radius: var(--radius-sm);
    }

    .trust-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 8rem 1.25rem 4rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* =========================
   PHASE 5: Polish & Animations
   ========================= */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--color-secondary);
    color: white;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

/* Enhanced button states */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Editorial entrance animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-image {
    animation: fadeIn 1.2s ease-out 0.3s backwards;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.trust-item {
    animation: fadeInUp 0.5s ease-out backwards;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }

.service-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.feature {
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature:nth-child(1) { animation-delay: 0.2s; }
.feature:nth-child(2) { animation-delay: 0.35s; }
.feature:nth-child(3) { animation-delay: 0.5s; }

/* Smooth image/icon loading */
.trust-icon,
.feature-icon,
.process-number {
    will-change: transform;
}

/* Print styles */
@media print {
    header,
    .hero::before,
    .hero::after,
    .cta-buttons,
    footer {
        display: none !important;
    }

    .hero {
        background: white !important;
        color: black !important;
        padding: 2rem !important;
    }

    body {
        font-size: 12pt;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-border: #333;
        --color-text-muted: #444;
    }

    .btn-primary,
    .btn-secondary {
        border: 2px solid currentColor;
    }
}

/* =========================
   PHASE 1-4 ENHANCEMENTS
   ========================= */

/* Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.animate-left {
    transform: translateX(-40px);
}

.scroll-animate.animate-left.animate-in {
    transform: translateX(0);
}

.scroll-animate.animate-right {
    transform: translateX(40px);
}

.scroll-animate.animate-right.animate-in {
    transform: translateX(0);
}

.scroll-animate.animate-scale {
    transform: scale(0.9);
}

.scroll-animate.animate-scale.animate-in {
    transform: scale(1);
}

/* Staggered animation delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Enhanced Hero with animated gradient */
.hero::before {
    background:
        linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 50%, rgba(26, 26, 46, 0.85) 100%);
    animation: heroGradientShift 15s ease-in-out infinite;
}

@keyframes heroGradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.92; }
}

/* Animated mesh gradient overlay */
.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(22, 33, 62, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(244, 162, 97, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: meshFloat 20s ease-in-out infinite;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(2%, -2%) scale(1.02); }
    50% { transform: translate(-1%, 1%) scale(0.98); }
    75% { transform: translate(-2%, -1%) scale(1.01); }
}

/* Image Comparison Slider */
.image-compare {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: ew-resize;
    box-shadow: var(--shadow-lg);
}

.image-compare img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.image-compare .compare-after {
    clip-path: inset(0 50% 0 0);
}

.image-compare .compare-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.image-compare .compare-slider::before,
.image-compare .compare-slider::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.image-compare .compare-slider::before {
    top: 50%;
    transform: translate(-50%, -50%);
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231a1a2e' viewBox='0 0 24 24'%3E%3Cpath d='M8 5l-5 7 5 7M16 5l5 7-5 7'/%3E%3C/svg%3E") center/60% no-repeat;
}

.image-compare .compare-slider::after {
    display: none;
}

.image-compare .compare-label {
    position: absolute;
    bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    z-index: 5;
}

.image-compare .compare-label-before {
    left: 1rem;
}

.image-compare .compare-label-after {
    right: 1rem;
}

/* Enhanced Card Hover Micro-interactions */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover .service-tag {
    transform: translateX(4px);
}

.service-tag {
    transition: transform 0.3s ease;
}

/* Process Timeline Animation */
.process-number {
    position: relative;
    overflow: hidden;
}

.process-number::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.process-step.animate-in .process-number::before {
    animation: pulseOnce 0.6s ease-out;
}

@keyframes pulseOnce {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.1; transform: scale(1.3); }
    100% { opacity: 0; transform: scale(1.5); }
}

/* Counter Animation for Stats */
.stat-number, .hero-stat-number {
    display: inline-block;
}

.count-up {
    animation: countFadeIn 0.6s ease-out;
}

@keyframes countFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form Validation Animations */
.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #22c55e;
}

.form-group input:valid:not(:placeholder-shown) + .input-valid-icon,
.form-group textarea:valid:not(:placeholder-shown) + .input-valid-icon {
    opacity: 1;
    transform: scale(1);
}

.input-valid-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    color: #22c55e;
    pointer-events: none;
}

.form-group {
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    animation: inputFocus 0.3s ease;
}

@keyframes inputFocus {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

/* Form Success Animation */
#form-success {
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% { opacity: 0; transform: scale(0.8); }
    50% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: checkmarkBounce 0.6s ease-out 0.2s both;
}

@keyframes checkmarkBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-checkmark svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.4s ease-out 0.5s forwards;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

/* Enhanced Trust Badges with Hover */
.badge-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.badge-item:hover {
    transform: translateY(-4px);
    background: var(--color-surface);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    transition: transform 0.3s ease, background 0.3s ease;
}

.badge-item:hover .badge-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--color-primary);
}

.badge-item:hover .badge-icon svg {
    fill: white;
}

a.badge-item {
    text-decoration: none;
    color: inherit;
}

a.badge-item:hover .badge-label {
    color: var(--color-accent);
}

/* Google Reviews Widget Styles */
.reviews-widget {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--color-border-light);
    text-align: center;
    max-width: 400px;
    margin: 2rem auto;
}

.reviews-widget-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.google-logo {
    height: 24px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.reviews-rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-text);
}

.reviews-stars {
    color: #fbbc04;
    font-size: 1.25rem;
}

.reviews-count {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.reviews-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.reviews-cta:hover {
    gap: 0.75rem;
}

/* Floating Action Elements */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.floating-btn-phone {
    background: #22c55e;
    color: white;
}

.floating-btn-quote {
    background: var(--color-accent);
    color: white;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
    }
    body {
        padding-bottom: 80px;
    }
}

/* Improved Pattern/Grain Texture */
.hero::after {
    background:
        linear-gradient(to top, var(--color-background) 0%, transparent 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04;
}

/* Loading skeleton for images */
.skeleton-loader {
    background: linear-gradient(90deg, var(--color-surface-alt) 25%, var(--color-surface) 50%, var(--color-surface-alt) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* =========================
   PHASE 6: Advanced UI Enhancements
   ========================= */

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-warm));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* Page Transition Effects */
.page-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.page-container.active {
    opacity: 1;
    transform: translateY(0);
}

.page-container.page-exit {
    opacity: 0;
    transform: translateY(-20px);
}

/* Enhanced Hamburger Menu Animation */
.menu-toggle {
    width: 44px;
    height: 44px;
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

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

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }
}

/* Enhanced FAQ Accordion with smooth height */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.75rem 1.5rem;
}

.faq-question {
    user-select: none;
}

.faq-question span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-surface-alt);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question span {
    background: var(--color-accent);
    color: white;
}

/* Enhanced Homepage FAQ Design */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, var(--color-surface) 0%, rgba(255,255,255,0.02) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before,
.faq-item.active::before {
    transform: scaleY(1);
}

.faq-item:hover {
    border-color: var(--color-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.12);
}

.faq-question {
    padding: 1.5rem 1.75rem;
    padding-left: 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-question span {
    margin-left: auto;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
    font-weight: 400;
}

.faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(233, 69, 96, 0.05) 100%);
    border-radius: var(--radius-md);
    color: var(--color-accent);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon,
.faq-item.active .faq-icon {
    background: var(--color-accent);
    color: white;
    transform: scale(1.05);
}

.faq-answer {
    padding-left: 1.5rem;
    font-size: 0.975rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.75rem;
}

/* Parallax Hero Effect */
.page-hero {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .page-hero {
        background-attachment: scroll;
    }
}

/* Enhanced Gallery Hover */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(26, 26, 46, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-overlay {
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.9;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Button Magnetic Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.btn-primary:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Subtle Text Shadow on Hero */
.hero h1, .page-hero h1 {
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* Improved Card Focus States */
.service-card:focus-within,
.testimonial-card:focus-within,
.area-card:focus-within {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

/* Smooth Image Load */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

/* Tooltip for Floating CTA */
.floating-btn::after {
    content: attr(title);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .floating-btn::after {
        display: none;
    }
}

/* Back to Top Button Indicator */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-secondary);
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .back-to-top {
        left: 1rem;
        bottom: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* Multi-page override - all content visible on individual pages */
.page-content {
    display: block;
}

/* Anchor-wrapped cards - no underline, proper colors */
a.service-card,
a.area-card {
    text-decoration: none;
    color: inherit;
    display: block;
}
a.service-card:hover,
a.area-card:hover {
    text-decoration: none;
    color: inherit;
}

/* =========================
   QA FIXES: Dropdown, Spacing, Hero Gaps
   ========================= */

/* Paragraph spacing for content sections */
.service-content p,
.location-content p,
.blog-article-content p {
    margin-bottom: 1.5rem;
}

.service-content h2,
.location-content h2,
.blog-article-content h2 {
    margin-top: 3rem;
}

.service-content h3,
.location-content h3,
.blog-article-content h3 {
    margin-top: 2.5rem;
}

/* Hero gap fix */
.page-hero + section {
    padding-top: 3rem;
}

@media (max-width: 768px) {
    .page-hero + section {
        padding-top: 2rem;
    }
}
