/* ========================================
   YASMEEN CREATIVE - Main Stylesheet
   ======================================== */

/* ========================================
   SELF-HOSTED FONTS
   ======================================== */
/* Albert Sans */
@font-face {
    font-family: 'Albert Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/albert-sans-latin-400-normal.woff2') format('woff2'),
         url('../fonts/albert-sans-latin-400-normal.woff') format('woff');
}
@font-face {
    font-family: 'Albert Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/albert-sans-latin-500-normal.woff2') format('woff2'),
         url('../fonts/albert-sans-latin-500-normal.woff') format('woff');
}
@font-face {
    font-family: 'Albert Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/albert-sans-latin-600-normal.woff2') format('woff2'),
         url('../fonts/albert-sans-latin-600-normal.woff') format('woff');
}
@font-face {
    font-family: 'Albert Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/albert-sans-latin-700-normal.woff2') format('woff2'),
         url('../fonts/albert-sans-latin-700-normal.woff') format('woff');
}

/* Barlow */
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/barlow-latin-400-normal.woff2') format('woff2'),
         url('../fonts/barlow-latin-400-normal.woff') format('woff');
}
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/barlow-latin-500-normal.woff2') format('woff2'),
         url('../fonts/barlow-latin-500-normal.woff') format('woff');
}
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/barlow-latin-600-normal.woff2') format('woff2'),
         url('../fonts/barlow-latin-600-normal.woff') format('woff');
}
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/barlow-latin-700-normal.woff2') format('woff2'),
         url('../fonts/barlow-latin-700-normal.woff') format('woff');
}

/* ========================================
   GREEN COLOR USAGE RULES (WCAG AA Compliant)
   ==========================================
   --primary (#4abd92): Brand green - 2.48:1 on white (FAILS text contrast)
   USE FOR: Buttons (white text), backgrounds, borders, decorative, text on dark bg

   --primary-text (#257a5c): Accessible green - 5.7:1 on white (PASSES)
   USE FOR: ALL green text on white/light backgrounds, links, hover states
   ======================================== */
:root {
    --primary: #4abd92;
    --primary-text: #257a5c; /* WCAG AA 5.7:1 - use for text on white/light backgrounds */
    --primary-accessible: #257a5c; /* Alias for --primary-text */
    --secondary: #221c58;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --light-grey: #f8f9fa;
    --medium-grey: #6c757d;
    --dark-grey: #2d2d2d;
    --text-grey: #4a4a4a;
    --primary-light: rgba(74, 189, 146, 0.1);
    --primary-dark: #3ea57f;
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
    font-family: 'Barlow', sans-serif; 
    color: var(--dark-grey); 
    line-height: 1.7; 
    overflow-x: hidden;
    background: var(--white);
}

/* Desktop scaled effect - using font-size for cross-browser compatibility */
@media (min-width: 64.0625rem) {
    html {
        font-size: 17.6px; /* 16px Ãƒâ€” 1.1 = 17.6px for 10% larger */
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--secondary);
}

/* Explicit font-sizes to avoid deprecated browser defaults (H1UserAgentFontSizeInSection) */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

/* Green italic accent for emphasized words in headings
   WCAG Accessible: #2a8a6f = ~4.5:1 ratio (passes AAA for large text)
   Brand green #4abd92 = 2.48:1 ratio (fails WCAG AA) */
h1 em, h2 em, h3 em, .section-title em {
    color: #2a8a6f;
    font-style: italic;
}

/* On dark backgrounds (navy), light green has good contrast - use brand color */
.section-dark h1 em, .section-dark h2 em, .section-dark h3 em, .section-dark .section-title em {
    color: var(--primary);
}

/* CONTRAST RULE: On green backgrounds, use navy instead of green for em */
.cta-content-box h2 em {
    color: var(--secondary);
}
.cta-section h2 em {
    color: var(--secondary);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
.container { max-width: 75rem; margin: 0 auto; padding: 0 1.875rem; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(1.25rem);
    backdrop-filter: blur(1.25rem);
    border-bottom: 0.0625rem solid rgba(34, 28, 88, 0.08);
    transition: all 0.3s ease;
}
.nav.scrolled {
    box-shadow: 0 0.25rem 1.875rem rgba(34, 28, 88, 0.1);
}
.nav.scrolled .nav-inner {
    padding: 0.3125rem 1.875rem;
}
.nav.scrolled .nav-logo img {
    height: 4.9375rem;
}
/* Transparent nav for homepage hero */
.nav.nav-transparent {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom-color: transparent;
}
.nav.nav-transparent .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}
.nav.nav-transparent .nav-links a:hover,
.nav.nav-transparent .nav-links a.active {
    color: var(--primary);
}
/* Keep mega-menu text visible on white dropdown background */
.nav.nav-transparent .mega-menu a {
    color: var(--secondary);
}
.nav.nav-transparent .mega-menu-header {
    color: var(--secondary);
}
.nav.nav-transparent .mega-menu a:hover {
    color: var(--primary-text);
}
.nav.nav-transparent .nav-cta {
    color: #fff !important;
}
/* Transparent nav: Pricing button white outline */
.nav.nav-transparent .nav-cta-group .nav-cta-link {
    color: var(--white);
    border-color: var(--white);
}
.nav.nav-transparent .nav-cta-group .nav-cta-link:hover {
    color: var(--secondary);
    background: var(--white);
}
/* Transparent nav: Book Now hover = green text */
.nav.nav-transparent .nav-cta-primary:hover {
    color: var(--primary) !important;
}
/* Desktop mega menu: WHO WE SERVE is NAVY (on white dropdown) */
/* Mobile: see mobile breakpoint rule for WHITE on navy background */
/* Transparent nav: CTA hover = navy */
.nav.nav-transparent .mega-menu-cta a:hover {
    background: var(--secondary);
    color: var(--white);
}
.nav.nav-transparent .mobile-menu-btn span {
    background: #fff;
}
/* Logo swap: show light logo on transparent, dark logo when scrolled */
.nav .logo-light {
    display: none;
}
.nav.nav-transparent .logo-dark {
    display: none;
}
.nav.nav-transparent .logo-light {
    display: block;
}
.nav.nav-transparent.scrolled .logo-dark {
    display: block;
}
.nav.nav-transparent.scrolled .logo-light {
    display: none;
}
/* When scrolled, return to white */
.nav.nav-transparent.scrolled {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(1.25rem);
    backdrop-filter: blur(1.25rem);
    border-bottom-color: rgba(34, 28, 88, 0.08);
}
.nav.nav-transparent.scrolled .nav-links a {
    color: var(--secondary);
}
.nav.nav-transparent.scrolled .nav-links a:hover,
.nav.nav-transparent.scrolled .nav-links a.active {
    color: var(--primary-text);
}
.nav.nav-transparent.scrolled .mobile-menu-btn span {
    background: var(--secondary);
}
/* Scrolled: Pricing button green outline */
.nav.nav-transparent.scrolled .nav-cta-group .nav-cta-link {
    color: var(--primary-text);
    border-color: var(--primary);
}
.nav.nav-transparent.scrolled .nav-cta-group .nav-cta-link:hover {
    color: var(--white);
    background: var(--primary);
}
/* Scrolled: Book Now hover = green text */
.nav.nav-transparent.scrolled .nav-cta-primary:hover {
    color: var(--primary-text) !important;
}
/* Scrolled: Quote Calculator hover stays white */
.nav.nav-transparent.scrolled .mega-menu-cta a:hover {
    color: var(--white);
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 1.875rem;
    max-width: 75rem;
    margin: 0 auto;
    transition: padding 0.3s ease;
}
.nav-logo img {
    height: 6.5625rem;
    width: auto;
    transition: height 0.3s ease;
}
.nav-links {
    display: flex;
    gap: 1.875rem;
    align-items: center;
}
.nav-links a {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.3125rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.125rem;
    background: var(--primary);
    transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-text);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
/* CTA Group - Desktop */
.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.5rem;
}
.nav-cta-group .nav-cta-link {
    color: var(--primary);
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--primary);
    border-radius: 3.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.nav-cta-group .nav-cta-link:hover {
    color: var(--white);
    background: var(--primary);
}
.nav-cta-group .nav-cta-link::after { display: none; }
.nav-cta-group .nav-cta-primary {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.875rem 1.75rem;
    border-radius: 3.125rem;
    font-weight: 600;
    border: 0.125rem solid var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}
.nav-cta-group .nav-cta-primary:hover {
    background: transparent;
    color: var(--primary) !important;
}
.nav-cta-group .nav-cta-primary::after { display: none; }

/* Legacy single CTA (for backward compatibility) */
.nav-links > li:last-child:not(.nav-cta-group) > a.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.875rem 1.75rem;
    border-radius: 3.125rem;
    font-weight: 600;
    border: 0.125rem solid var(--primary);
    margin-left: 0.5rem;
}
.nav-links > li:last-child:not(.nav-cta-group) > a.nav-cta:hover {
    background: transparent;
    color: var(--primary) !important;
}
.nav-links a.nav-cta::after { display: none; }

/* Dropdown Menu */
.nav-links li {
    position: relative;
    list-style: none;
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-dropdown > a::before {
    content: '';
    position: absolute;
    right: -0.875rem;
    top: 50%;
    transform: translateY(-50%);
    border-left: 0.25rem solid transparent;
    border-right: 0.25rem solid transparent;
    border-top: 0.25rem solid currentColor;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover > a::before {
    transform: translateY(-50%) rotate(180deg);
}
/* Old dropdown-menu removed - replaced by mega-menu */

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.625rem 2.5rem rgba(34, 28, 88, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    min-width: 42rem;
}
.mega-menu::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}
@media (hover: hover) and (pointer: fine) {
    .has-mega-menu:hover .mega-menu {
        opacity: 1;
        visibility: visible;
    }
}
.mega-menu-column h4,
.mega-menu-header {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary-light);
    text-decoration: none;
    transition: color 0.2s ease;
}
a.mega-menu-header:hover {
    color: var(--secondary);
    transform: none;
}
span.mega-menu-header {
    cursor: default;
    font-size: inherit;
    font-weight: inherit;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    color: var(--secondary);
    border-bottom-color: rgba(34, 28, 88, 0.15);
}
/* .mega-menu-view-all removed - unused */
.mega-menu-column a {
    display: block;
    padding: 0.625rem 0;
    text-decoration: none;
    transition: all 0.2s ease;
}
.mega-menu-column a::after {
    display: none;
}
.mega-menu-column a:hover {
    transform: translateX(0.25rem);
}
.mega-menu-column a:hover .mega-link-title {
    color: var(--primary);
}
.mega-link-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.125rem;
    transition: color 0.2s ease;
}
.mega-link-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-grey);
    font-weight: 400;
}

/* Mega Menu CTA Bar (Quote Calculator) */
.mega-menu-cta {
    grid-column: 1 / -1;
    margin-top: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
}
.mega-menu-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--primary-light);
    color: var(--secondary);
    border: 2px solid var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.mega-menu-cta a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 28, 88, 0.4);
}
.mega-menu-cta a::after {
    display: none;
}
.mega-menu-cta .cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mega-menu-cta .cta-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}
.mega-menu-cta .cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.mega-menu-cta .cta-title {
    font-weight: 700;
}
.mega-menu-cta .cta-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}
.mega-menu-cta .cta-arrow {
    margin-left: auto;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}
.mega-menu-cta a:hover .cta-arrow {
    transform: translateX(0.25rem);
}

/* Hide mobile-only elements on desktop */
.nav-menu-logo-wrapper {
    display: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.3125rem;
    cursor: pointer;
    padding: 0.625rem;
    background: none;
    border: none;
    z-index: 1001;
}
.mobile-menu-btn span {
    width: 1.5625rem;
    height: 0.125rem;
    background: var(--secondary);
    transition: all 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.3125rem, -0.3125rem);
}
.mobile-menu-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero {
    padding: 9rem 0 4rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1545 100%);
    position: relative;
    overflow: hidden;
    contain: layout;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 150%;
    transform: translate(20%, -50%);
    background: radial-gradient(ellipse, rgba(74, 189, 146, 0.12) 0%, transparent 70%);
    pointer-events: none;
    will-change: transform;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 37.5rem;
}
.hero-content .flex-center {
    justify-content: flex-start;
}
.hero-badge {
    display: inline-block;
    background: rgba(74, 189, 146, 0.2);
    border: 0.0625rem solid rgba(74, 189, 146, 0.3);
    padding: 0.625rem 1.5rem;
    border-radius: 3.125rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.hero h1 span {
    color: var(--primary); /* Green on dark bg is fine */
}
.hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}
/* Unused hero components removed:
   - .hero-grid, .hero-images, .hero-img-1/2 (replaced by hero-cinema)
   - .hero-slider, .slider-* components (unused)
   - .hero-image-border, .trace-dot (unused)
*/

/* Page Hero (smaller) */
.page-hero {
    padding: 0 0 3rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1545 100%);
    text-align: center;
    position: relative;
}
.page-hero .container {
    padding-top: 9rem;
}
.page-hero h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 0.9375rem;
}
.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 37.5rem;
    margin: 0 auto;
}
.breadcrumb {
    margin-top: 1.25rem;
    font-size: 0.9rem;
}
.breadcrumb a {
    color: var(--primary);  /* Light green - good contrast on dark hero */
}
.breadcrumb a:hover {
    color: var(--white);
}
.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   CINEMATIC HERO
   Animated horizontal filmstrip background
   ======================================== */

.page-hero--cinematic {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1545 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 2rem;
}

/* Filmstrip layer - offset by half padding difference to align with content */
.filmstrip {
    position: absolute;
    top: calc(50% + 2rem); /* (6rem top - 2rem bottom) / 2 = 2rem offset */
    left: -1rem;
    transform: translateY(-50%);
    display: flex;
    animation: pan-strip 50s linear infinite;
    will-change: transform;
}

@keyframes pan-strip {
    0% { transform: translateY(-50%) translateX(0); }
    100% { transform: translateY(-50%) translateX(-50%); }
}

/* Accessibility: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .filmstrip {
        animation: none;
    }
}

/* Filmstrip offset classes - start animation at different points
   Creates variety when combined with Set A/B image selections
   50s cycle / 8 offsets = 6.25s per offset */
.filmstrip.filmstrip-offset-1 { animation-delay: -6.25s; }
.filmstrip.filmstrip-offset-2 { animation-delay: -12.5s; }
.filmstrip.filmstrip-offset-3 { animation-delay: -18.75s; }
.filmstrip.filmstrip-offset-4 { animation-delay: -25s; }
.filmstrip.filmstrip-offset-5 { animation-delay: -31.25s; }
.filmstrip.filmstrip-offset-6 { animation-delay: -37.5s; }
.filmstrip.filmstrip-offset-7 { animation-delay: -43.75s; }

.filmstrip img {
    height: 240px;
    width: 360px;
    object-fit: cover;
    object-position: center;
    border-radius: 0.5rem;
    opacity: 0.35;
    flex-shrink: 0;
    margin-right: 1rem;
}

/* Content panel - solid navy */
.page-hero--cinematic .hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 3rem;
    background: var(--secondary);
    border-radius: 1rem;
    text-align: center;
}

.page-hero--cinematic .hero-content h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 0.9375rem;
}

.page-hero--cinematic .hero-content p {
    color: var(--white);
    font-size: 1.1rem;
    max-width: 100%;
    margin: 0 auto;
}

.page-hero--cinematic .section-tag {
    background: rgba(74, 189, 146, 0.2);
    color: var(--primary);
    margin-bottom: 1rem;
}

.page-hero--cinematic .breadcrumb {
    margin-top: 1.25rem;
}

.page-hero--cinematic .btn-primary {
    background: var(--secondary);
    color: var(--white);
    border: 2px solid var(--primary);
}

/* Tablet: 64rem */
@media (max-width: 64rem) {
    .page-hero--cinematic .hero-content {
        max-width: 600px;
        padding: 2.5rem;
    }
    .page-hero--cinematic .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* Mobile: 48rem */
@media (max-width: 48rem) {
    .page-hero--cinematic {
        min-height: 320px;
        padding: 7rem 1rem 2rem;
    }

    .filmstrip {
        animation-duration: 60s;
        top: calc(50% + 2.5rem); /* (7rem top - 2rem bottom) / 2 = 2.5rem offset */
    }

    .filmstrip img {
        height: 160px;
        width: 240px;
        margin-right: 0.5rem;
    }

    .page-hero--cinematic .hero-content {
        padding: 1.5rem;
        max-width: 92%;
        margin-top: 6rem;
    }

    .page-hero--cinematic .hero-content h1 {
        font-size: 1.6rem;
    }

    .page-hero--cinematic .hero-content p {
        font-size: 0.9rem;
    }
}

/* Service Hero Image Section */
.service-hero-section {
    padding: 3.75rem 0;
    background: var(--white);
}
.service-hero-image {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.625rem 2.5rem rgba(34, 28, 88, 0.1);
}
.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ========================================
   CINEMA VIEWFINDER HERO
   ======================================== */
.hero-cinema {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1545 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}

.viewfinder {
    position: absolute;
    inset: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewfinder-frame {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0 0 4px #1a1a1a, 0 0 0 8px #0a0a0a, 0 40px 80px rgba(0, 0, 0, 0.8);
}

.viewfinder-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Focus marks - corner brackets */
.vf-focus-marks {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vf-focus {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.vf-focus-tl { top: 15%; left: 15%; border-right: none; border-bottom: none; }
.vf-focus-tr { top: 15%; right: 15%; border-left: none; border-bottom: none; }
.vf-focus-bl { bottom: 15%; left: 15%; border-right: none; border-top: none; }
.vf-focus-br { bottom: 15%; right: 15%; border-left: none; border-top: none; }

.vf-focus-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.vf-focus-center::before,
.vf-focus-center::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vf-focus-center::before { width: 20px; height: 1px; }
.vf-focus-center::after { width: 1px; height: 20px; }

/* Rule of thirds grid */
.vf-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vf-grid::before,
.vf-grid::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
}

.vf-grid::before {
    width: 1px;
    height: 100%;
    left: 33.33%;
    box-shadow: calc(33.33% + 1px) 0 0 rgba(255, 255, 255, 0.15);
}

.vf-grid::after {
    width: 100%;
    height: 1px;
    top: 33.33%;
    box-shadow: 0 calc(33.33% + 1px) 0 rgba(255, 255, 255, 0.15);
}

/* REC indicator */
.vf-rec {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ff3b30;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
}

.vf-rec span {
    width: 12px;
    height: 12px;
    background: #ff3b30;
    border-radius: 50%;
    animation: recPulse 1s ease-in-out infinite;
}

@keyframes recPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Timecode */
.vf-timecode {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
}

/* Camera info */
.vf-info {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    display: flex;
    gap: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Film grain overlay */
.vf-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image: 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");
    background-repeat: repeat;
    mix-blend-mode: overlay;
    animation: grainShift 0.5s steps(10) infinite;
}

@keyframes grainShift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    30% { transform: translate(-1%, 1%); }
    40% { transform: translate(1%, -1%); }
    50% { transform: translate(-1%, 0); }
    60% { transform: translate(1%, 0); }
    70% { transform: translate(0, 1%); }
    80% { transform: translate(0, -1%); }
    90% { transform: translate(1%, 1%); }
}

/* Vignette effect */
.viewfinder-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

/* Hero content overlay */
.hero-cinema .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 2rem;
    background: rgba(30, 24, 82, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(61, 184, 138, 0.2);
}

.hero-cinema .hero-content .hero-badge {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    background: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 2rem;
    display: inline-block;
}

.hero-cinema .hero-content h1 {
    font-family: 'Albert Sans', sans-serif;
    font-size: 4rem;
    color: var(--white);
    margin: 1rem 0;
    line-height: 1.1;
}

.hero-cinema .hero-content h1 em {
    color: var(--primary);
    font-style: italic;
    display: block;
}

.hero-cinema .hero-content p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-cinema .hero-content p strong {
    color: var(--white);
}

.hero-cinema .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-cinema .btn {
    border-radius: 3rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero-cinema .btn-primary {
    background: var(--secondary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.hero-cinema .btn-primary:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--secondary);
}

.hero-cinema .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-cinema .btn-ghost:hover {
    background: var(--white);
    color: var(--secondary);
}

/* Cinema Hero - Mobile */
@media (max-width: 48rem) {
    .hero-cinema {
        min-height: 100svh;
        padding: 1.25rem;
        flex-direction: column;
    }

    .viewfinder {
        inset: 1.25rem;
        flex-direction: column;
    }

    .viewfinder-frame {
        flex: 1;
        aspect-ratio: auto;
        border-radius: 1.5rem;
        box-shadow: 0 0 0 4px rgba(255,255,255,0.25), 0 0 30px rgba(255,255,255,0.1), 0 1.5rem 4rem rgba(0,0,0,0.5);
    }

    .vf-focus { width: 30px; height: 30px; }
    .vf-focus-center { width: 50px; height: 50px; }
    .vf-info { bottom: 0.75rem; left: 0.75rem; font-size: 9px; gap: 0.5rem; }
    .vf-rec { top: 0.75rem; left: 50%; transform: translateX(calc(-50% - 3rem)); font-size: 10px; }
    .vf-timecode { top: 0.75rem; left: 50%; transform: translateX(calc(-50% + 1.5rem)); right: auto; font-size: 10px; }

    .hero-cinema .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: calc(100% - 1.5rem);
        width: 100%;
        padding: 1.5rem 1rem;
        background: radial-gradient(ellipse at center, rgba(30, 24, 82, 0.9) 0%, rgba(30, 24, 82, 0.7) 50%, transparent 80%);
        backdrop-filter: none;
        border-radius: 1rem;
        border: none;
    }

    .hero-cinema .hero-content h1 { font-size: 2.5rem; }
    .hero-cinema .hero-content p { font-size: 1.1rem; }
    .hero-cinema .btn { padding: 0.875rem 1.5rem; font-size: 1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .vf-rec span, .vf-grain { animation: none; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.9375rem 2rem;
    border-radius: 3.125rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 0.125rem solid transparent;
}
.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
}
.btn-dark {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-dark:hover {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}
.btn-white {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}
.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
/* Hero button override */
.hero .btn-primary {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}
.hero .btn-primary:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

/* Button focus states for keyboard accessibility */
.btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
    outline-color: var(--secondary);
}
.btn-dark:focus-visible {
    outline-color: var(--primary);
}
.btn-white:focus-visible {
    outline-color: var(--secondary);
}
.hero .btn-primary:focus-visible {
    outline-color: var(--secondary);
}

/* FAQ View All Button - Navy outline style */
.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-outline::after {
    content: '→';
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}
.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 28, 88, 0.2);
}
.btn-outline:hover::after {
    transform: translateX(4px);
}
.btn-outline:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Ghost button - text only, transparent bg (for dark backgrounds) */
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}
.btn-ghost:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Text colors - WCAG compliant for their intended backgrounds */
.text-white { color: var(--white); }
.text-navy { color: var(--secondary); }
/* WARNING: .text-green uses brand green - ONLY use on dark/navy backgrounds (fails WCAG AA on white) */
.text-green { color: var(--primary); }
/* Use .text-green-dark for green text on white/light backgrounds (WCAG AA compliant) */
.text-green-dark { color: var(--primary-text); }

/* Background colors */
.bg-navy { background-color: var(--secondary); }
.bg-green { background-color: var(--primary); }
.bg-light { background-color: var(--light-grey); }
.bg-white { background-color: var(--white); }

/* Spacing */
.mt-lg { margin-top: 2rem; }
.mb-lg { margin-bottom: 2rem; }
.mt-xl { margin-top: 3rem; }
.mb-xl { margin-bottom: 3rem; }

/* Flexbox utilities */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.9375rem;
    flex-wrap: wrap;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 4rem 0;
}

.section-light {
    background: var(--light-grey);
}
.section-dark {
    background: var(--secondary);
}
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}
.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-text);
    padding: 0.5rem 1.25rem;
    border-radius: 3.125rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-grey);
    max-width: 37.5rem;
    margin: 0 auto;
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
    background: var(--white);
    padding: 2.5rem 0;
    position: relative;
    z-index: 10;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item {
    transition: transform 0.3s ease;
    cursor: default;
}
.stat-item:hover {
    transform: scale(1.05);
}
.stat-item h3,
.stat-item .stat-number {
    font-family: 'Albert Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}
.stat-item:hover h3,
.stat-item:hover .stat-number {
    color: var(--primary-text);
}
.stat-item p {
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
/* Center 4th card on desktop (3-col: row 1 has 3, row 2 has 1 centered) */
.services-grid .service-card:nth-child(4):last-child {
    grid-column: 2;
}
.services-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}
.services-grid.services-grid-4col {
    grid-template-columns: repeat(4, 1fr);
}
/* Override the centering rule for 4-col grids */
.services-grid.services-grid-4col .service-card:nth-child(4):last-child {
    grid-column: auto;
}
.service-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(34, 28, 88, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 1rem 2.5rem rgba(34, 28, 88, 0.12);
}
.service-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0; /* Placeholder while image loads */
}
/* Corner accent brackets */
.service-card-img::before,
.service-card-img::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card-img::before {
    top: 1rem;
    left: 1rem;
    border-top: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
    border-radius: 0.5rem 0 0 0;
}

.service-card-img::after {
    bottom: 1rem;
    right: 1rem;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    border-radius: 0 0 0.5rem 0;
}

.service-card:hover .service-card-img::before,
.service-card:hover .service-card-img::after {
    width: 50px;
    height: 50px;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.05);
}
.service-card-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-card h3 {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.service-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}
.service-card .price {
    font-weight: 700;
    color: var(--primary-text);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.service-card .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin: 0 0.25rem;
}

/* ========================================
   PRICING CARDS
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.pricing-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 0.5rem 2rem rgba(34, 28, 88, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 1rem 2.5rem rgba(34, 28, 88, 0.12);
}
.pricing-card.featured {
    border: 0.125rem solid var(--primary);
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.375rem 1.25rem;
    border-radius: 3.125rem;
    font-size: 0.8rem;
    font-weight: 600;
}
.pricing-tier {
    color: var(--primary-text);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.625rem;
}
.pricing-name {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}
.pricing-price--quote {
    font-size: 1.75rem;
    color: var(--primary-text);
}
.pricing-features {
    text-align: left;
    margin-bottom: 1.5rem;
}
.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-grey);
    font-size: 0.95rem;
    border-bottom: 0.0625rem solid var(--light-grey);
    position: relative;
    padding-left: 1.75rem;
}
.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338b593' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ========================================
   PRICING CATEGORY NAVIGATION
   ======================================== */
.pricing-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 0;
    background: var(--white);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Sticky positioning - matches portfolio filters */
    position: sticky;
    top: 5.5rem;
    z-index: 90;
}
.pricing-nav::-webkit-scrollbar {
    display: none;
}
.pricing-nav-link {
    flex-shrink: 0;
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    border-radius: 2rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.pricing-nav-link:hover,
.pricing-nav-link.active {
    background: var(--secondary);
    color: var(--white);
}
.pricing-nav-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Accordion Feature Lists */
.accordion-features .accordion-hidden {
    display: none;
}
.accordion-features.expanded .accordion-hidden {
    display: list-item;
}
.accordion-toggle {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: var(--primary-text);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
    text-align: center;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}
.accordion-toggle:hover {
    color: var(--primary-text);
    text-decoration: underline;
}
.accordion-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-list {
    max-width: 50rem;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(34, 28, 88, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(34, 28, 88, 0.1);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    transition: color 0.2s ease, background 0.2s ease;
}
.faq-question:hover {
    background: rgba(74, 189, 146, 0.05);
    color: var(--primary-text);
}
.faq-question:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: -3px;
    border-radius: 0.75rem;
}
.faq-question-text {
    flex: 1;
}
.faq-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.faq-icon svg {
    width: 1rem;
    height: 1rem;
    stroke: var(--primary);
    stroke-width: 2.5;
    fill: none;
}
.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-answer {
    max-height: 50rem;
}
.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-grey);
    line-height: 1.7;
}
.faq-answer-content p {
    margin-bottom: 1rem;
}
.faq-answer-content p:last-child {
    margin-bottom: 0;
}
.faq-answer-content ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}
.faq-answer-content li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style: none;
    padding-left: 1.25rem;
}
.faq-answer-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.375rem;
    height: 0.375rem;
    background: var(--primary);
    border-radius: 50%;
}
.faq-answer-content strong {
    color: var(--secondary);
    font-weight: 600;
}
.faq-answer-content a {
    color: var(--primary-text);
    text-decoration: underline;
    text-underline-offset: 0.125rem;
}
.faq-answer-content a:hover {
    color: var(--primary);
}
@media (prefers-reduced-motion: reduce) {
    .faq-icon,
    .faq-answer,
    .faq-item {
        transition: none;
    }
}
@media (max-width: 48rem) {
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    .faq-answer-content {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
}
@media (max-width: 30rem) {
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    .faq-answer-content {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   PACKAGE CARDS (Bundled)
   ======================================== */
.package-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
}
.package-section-featured {
    background: var(--primary-light);
    border: 0.125rem solid var(--primary);
}
.package-section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
}
.package-section-header h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin: 0;
}
.best-value-badge {
    background: var(--primary);
    color: var(--secondary);
    padding: 0.375rem 1rem;
    border-radius: 3.125rem;
    font-size: 0.8rem;
    font-weight: 600;
}
/* Package Tabs */
.package-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.tab-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 3.125rem;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}
.tab-btn.active {
    background: #fff;
    color: var(--secondary);
    border-color: #fff;
}
.tab-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.tab-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: var(--primary-accessible);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 3.125rem;
    font-weight: 600;
}
.tab-content {
    transition: opacity 0.3s ease;
}
.tab-content.hidden {
    display: none;
}
.package-card-featured {
    box-shadow: 0 0 0 2px var(--primary);
}
.tab-content .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.package-section .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.package-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    min-height: 11.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
}
.package-card h3 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 0.625rem;
}
.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-text);
}
.package-original {
    color: var(--text-grey);
    font-size: 0.85rem;
    text-decoration: line-through;
}
.package-details {
    color: var(--text-grey);
    font-size: 0.85rem;
    margin-top: 0.625rem;
}
.package-savings {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-text);
    padding: 0.3125rem 0.75rem;
    border-radius: 3.125rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.625rem;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.why-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(34, 28, 88, 0.08);
    border: 1px solid rgba(34, 28, 88, 0.06);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}
.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.why-card:hover {
    border-color: var(--primary);
    box-shadow: 0 1rem 3rem rgba(34, 28, 88, 0.12);
    transform: translateY(-0.25rem);
}
.why-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}
.why-card:hover .why-icon {
    background: var(--primary);
    transform: scale(1.1);
}
.why-card:hover .why-icon svg {
    stroke: var(--white);
}
.why-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: var(--primary);
    transition: stroke 0.3s ease;
}
.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}
.why-card:hover h3 {
    color: var(--primary-text);
}
.why-card p {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.5;
}

/* ========================================
   CONTENT GRID
   ======================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    overflow: hidden;
}
.content-grid.reverse {
    direction: rtl;
}
.content-grid.reverse > * {
    direction: ltr;
}
.content-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9375rem;
    overflow: hidden;
    min-height: 0;
}
.content-images picture {
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #f0f0f0; /* Placeholder while image loads */
}
.content-images img {
    border-radius: 0.75rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: 18.75rem;
    min-height: 0;
    transition: transform 0.4s ease;
}
.content-images img:hover {
    transform: scale(1.05);
}

/* Content Images with Video - video in left column spanning 2 rows */
.content-images-with-video {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.content-video {
    grid-row: 1 / 3;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: var(--dark-grey);
}
.content-video picture,
.content-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: auto;
    max-height: none;
}
.content-video .video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.content-video:hover .video-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%);
}
.content-video .play-button {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    color: var(--secondary);
}
.content-video .play-button:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: var(--white);
}
.content-video .play-button:focus {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}
.content-video .play-button svg {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 0.2rem;
}
.content-video .video-label {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    white-space: nowrap;
}
.content-video.playing .video-overlay {
    display: none;
}
.content-video.playing img,
.content-video.playing picture {
    visibility: hidden;
}
.content-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.content-text {
    max-width: 31.25rem;
}
.content-text h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}
.content-text p {
    color: var(--text-grey);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}
.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}
.features-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--dark-grey);
    font-size: 0.95rem;
}
.features-list li::before {
    content: '';
    background: var(--primary);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.9375rem;
}
.portfolio-item {
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.portfolio-item:hover {
    transform: scale(1.02);
}
.portfolio-item:hover img {
    transform: scale(1.05);
}
.portfolio-item:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.portfolio-item.hidden {
    display: none;
}

/* Video Showreel in Portfolio Grid */
.portfolio-video {
    grid-column: span 2;
    grid-row: span 2;
    position: relative;
}

.portfolio-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%, transparent 100%);
    transition: background 0.3s ease;
}

.portfolio-video:hover .video-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

.video-label {
    position: absolute;
    bottom: 3.5rem;
    left: 1rem;
    right: 1rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.portfolio-video .play-button {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.3);
}

.portfolio-video .play-button:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: var(--white);
}

.portfolio-video .play-button:focus {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.25rem 0.625rem;
    border-radius: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Video playing state */
.portfolio-video.playing .video-overlay {
    display: none;
}

.portfolio-video.playing img {
    display: none;
}

.portfolio-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.75rem;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}
.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--primary);
}
.contact-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}
.contact-text a,
.contact-text p {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}
.contact-text a:hover {
    color: var(--primary);
}
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 0.625rem 2.5rem rgba(34, 28, 88, 0.08);
}
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary);
    font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 0.0625rem solid #e0e0e0;
    border-radius: 0.5rem;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.form-group textarea {
    height: 6.25rem;
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.125rem;
}
.form-submit {
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 3.125rem;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
.form-submit:hover {
    background: var(--primary);
}

/* ========================================
   CTA SECTION - Border Trace Effect with Shimmer
   ======================================== */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Logo watermark - outline style */
.cta-section .logo-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: auto;
    opacity: 0.08;
    filter: brightness(0) invert(1);
    pointer-events: none;
}
/* Shimmer effect */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.4) 40%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.4) 60%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: shimmerSweep 4s ease-in-out infinite;
    pointer-events: none;
}
.cta-section::after {
    display: none;
}
@keyframes shimmerSweep {
    0% { left: -100%; }
    100% { left: 150%; }
}
/* Border trace wrapper */
.cta-section .border-trace {
    position: relative;
    display: inline-block;
    padding: 2.5rem 3rem;
    z-index: 10;
}
.cta-section .border-trace::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255,255,255,0.25);
    pointer-events: none;
}
.cta-section .trace-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    animation: tracePath 6s linear infinite;
    box-shadow: 0 0 15px rgba(255,255,255,0.6), 0 0 30px rgba(255,255,255,0.3);
}
@keyframes tracePath {
    0% { top: -4px; left: -4px; }
    25% { top: -4px; left: calc(100% - 4px); }
    50% { top: calc(100% - 4px); left: calc(100% - 4px); }
    75% { top: calc(100% - 4px); left: -4px; }
    100% { top: -4px; left: -4px; }
}
@media (max-width: 48rem) {
    .cta-section .border-trace {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .cta-section::before,
    .cta-section .trace-dot,
    .hero-image-border .trace-dot {
        animation: none;
    }
    .cta-section::before {
        display: none;
    }
    .hero-image-border .trace-dot {
        display: none;
    }
}
.cta-section .container {
    position: relative;
    z-index: 1;
}
.cta-section h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1.125rem;
}
.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 31.25rem;
    margin: 0 auto 1.5rem;
}

/* ========================================
   SPLIT CTA + STATS SECTION
   ======================================== */
.cta-stats-section {
    display: flex;
    min-height: 500px;
}

/* Left Half - Green CTA */
.cta-half {
    flex: 1;
    background: var(--primary-accessible);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
}

/* CTA Content Box with Border Animation */
.cta-content-box {
    position: relative;
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    width: 450px;
    height: 450px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.cta-content-box .trace-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 255, 255, 0.5);
    animation: tracePath 6s linear infinite;
    z-index: 10;
    pointer-events: none;
}

.cta-content-box h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Right Half - Navy Stats */
.stats-half {
    flex: 1;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
}

/* Stats Container - 2x2 Grid */
.cta-stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    width: 100%;
    max-width: 480px;
}

/* Stat Cards - Square */
.cta-stats-section .stat-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(74, 189, 146, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Corner accent */
.cta-stats-section .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border-top: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
    border-radius: 1rem 0 0 0;
}

.cta-stats-section .stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    border-radius: 0 0 1rem 0;
}

/* Float animations - staggered delays */
.cta-stats-section .stat-card:nth-child(1) { animation: float-card 6s ease-in-out infinite; }
.cta-stats-section .stat-card:nth-child(2) { animation: float-card 6s ease-in-out infinite; animation-delay: -1.5s; }
.cta-stats-section .stat-card:nth-child(3) { animation: float-card 6s ease-in-out infinite; animation-delay: -3s; }
.cta-stats-section .stat-card:nth-child(4) { animation: float-card 6s ease-in-out infinite; animation-delay: -4.5s; }

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.cta-stats-section .stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cta-stats-section .stat-number span {
    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--primary-dark) 25%,
        #7de8c7 50%,
        var(--primary-dark) 75%,
        var(--primary) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

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

/* Green shimmer text effect */
.shimmer-green {
    display: inline;
    background: linear-gradient(90deg, var(--primary) 0%, #7de8c2 25%, #ffffff 50%, #7de8c2 75%, var(--primary) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
    font-weight: 700;
}

.cta-stats-section .stat-label {
    font-size: 0.95rem;
    color: var(--secondary);
    opacity: 0.8;
    font-weight: 500;
    line-height: 1.3;
}

/* Mobile - Split CTA */
@media (max-width: 48rem) {
    .cta-stats-section {
        flex-direction: column;
        min-height: auto;
    }

    .cta-half {
        padding: 2.5rem 1.5rem;
    }

    .cta-content-box {
        padding: 1.75rem;
    }

    .cta-content-box h2 {
        font-size: 1.6rem;
    }

    .cta-content-box p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-content-box .trace-dot {
        width: 6px;
        height: 6px;
    }

    .stats-half {
        padding: 2.5rem 1.5rem;
    }

    .cta-stats-section .stats-grid {
        gap: 1rem;
        max-width: 340px;
    }

    .cta-stats-section .stat-card {
        animation: none;
        padding: 0.875rem;
    }

    .cta-stats-section .stat-card::before,
    .cta-stats-section .stat-card::after {
        width: 22px;
        height: 22px;
    }

    .cta-stats-section .stat-number {
        font-size: 2rem;
    }

    .cta-stats-section .stat-label {
        font-size: 0.8rem;
    }
}

/* Reduced motion - Split CTA */
@media (prefers-reduced-motion: reduce) {
    .cta-stats-section .stat-card,
    .cta-content-box .trace-dot,
    .cta-stats-section .stat-number span {
        animation: none;
    }
    .cta-content-box .trace-dot {
        display: none;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1a1545;
    padding: 3rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-brand img {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-0.125rem);
}
.footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--white);
}
.footer-column .footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.footer-column li {
    margin-bottom: 0.5rem;
}
.footer-column a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-column a:hover {
    color: var(--primary);
}
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.footer-bottom .cookie-notice {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* ========================================
   RESPONSIVE - TABLET (1024px)
   ======================================== */
@media (max-width: 64rem) {
    /* Center alignment for all content below desktop */
    .hero-content,
    .page-hero,
    .page-hero .container,
    .section-header,
    .content-text,
    .contact-info,
    .pricing-card,
    .why-card,
    .stat-item,
    .service-card-content,
    .premium-card-content {
        text-align: center;
    }

    /* Center grid items - elements with max-width need to be centered in their grid cells */
    .hero-grid,
    .content-grid {
        justify-items: center;
    }

    /* Center flex containers */
    .hero-content .flex-center,
    .page-hero .flex-center,
    .content-text .flex-center,
    .section-header .flex-center {
        justify-content: center;
    }

    /* Center card buttons */
    .card-buttons {
        align-items: center;
    }

    /* Center features list grid */
    .features-list {
        grid-template-columns: auto auto;
        justify-content: center;
        gap: 1rem 2rem;
    }

    /* Center features list items */
    .features-list li {
        justify-content: flex-start;
    }

    /* Center content images */
    .content-images {
        display: flex;
        justify-content: center;
    }

    /* Center grids within containers */
    .services-grid,
    .pricing-grid,
    .why-grid,
    .stats-grid {
        justify-content: center;
    }

    /* Center hero slider */
    .hero-slider {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-images { order: -1; }
    .hero h1 { font-size: 2.6rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid.services-grid-4col { grid-template-columns: repeat(2, 1fr); }
    /* Reset 4th card centering - 2x2 grid needs no orphan handling */
    .services-grid .service-card:nth-child(4):last-child { grid-column: auto; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .package-section .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr; gap: 2.1875rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
    .portfolio-video { grid-column: span 2; grid-row: span 2; }
}

/* ========================================
   RESPONSIVE - TABLET SMALL (834px)
   ======================================== */
@media (max-width: 52rem) {
    /* Services Grid - ensure 2-column */
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    /* Pricing Grid - ensure 2-column with tighter spacing */
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .pricing-card { padding: 1.25rem; }

    /* Why Grid - 2-column */
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

    /* Typography scaling */
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; }
    .hero h1 { font-size: 2.4rem; }

    /* Stats bar */
    .stats-bar { padding: 2rem 0; }
    .stat-number { font-size: 2rem; }

    /* Portfolio */
    .portfolio-grid { grid-template-columns: repeat(3, 1fr); }

    /* Blog grid */
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    /* Related posts */
    .related-posts-grid { grid-template-columns: repeat(2, 1fr); }
    .related-card:last-child { display: none; }
}

/* ========================================
   RESPONSIVE - MOBILE (768px)
   ======================================== */
@media (max-width: 48rem) {
    .container { padding: 0 1.25rem; }
    
    /* Mobile Navigation - Navy Background Design */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #1a1545; /* Navy background */
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 9999;
    }
    .nav-links.active {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;  /* Equal spacing in both directions */
        align-content: start;
        overflow-y: auto;
        padding: 6rem 1.5rem 0;
    }
    .nav-links li {
        list-style: none;
        display: flex;
        justify-content: center;
    }
    .nav-links li.nav-dropdown {
        grid-column: 1 / -1;
    }

    /* Logo inside mobile menu */
    .nav-menu-logo-wrapper {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        margin-bottom: 0.75rem;
    }
    .nav-menu-logo {
        width: 80px;
        height: auto;
        filter: brightness(0) invert(1); /* White logo on dark bg */
    }

    /* Nav links - white text on navy background */
    .nav-links a {
        font-size: 1.35rem;
        color: var(--white);
        font-weight: 600;
        text-align: center;
        padding: 0.625rem 0.75rem;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary);
    }
    /* Transparent nav inherits same white text (navy bg) */
    .nav.nav-transparent .nav-links a {
        color: var(--white);
    }
    .nav.nav-transparent .nav-links a:hover,
    .nav.nav-transparent .nav-links a.active {
        color: var(--primary);
    }
    /* Override scrolled state on mobile - keep white text on navy menu */
    .nav.nav-transparent.scrolled .nav-links a {
        color: var(--white);
    }
    .nav.nav-transparent.scrolled .nav-links a:hover,
    .nav.nav-transparent.scrolled .nav-links a.active {
        color: var(--primary);
    }
    /* Close button (X) - white on navy menu background */
    .mobile-menu-btn.active span {
        background: var(--white);
    }
    .nav.nav-transparent .mobile-menu-btn.active span {
        background: var(--white);
    }

    /* CTA Group - Navy footer with grid layout */
    .nav-cta-group {
        grid-column: 1 / -1;
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem;
        margin-top: 0.75rem;
        background: rgba(26, 21, 69, 0.95);
        border-top: 3px solid var(--primary);
        border-radius: 1rem 1rem 0 0;
    }
    .nav-links.active .nav-cta-group {
        display: grid;
    }
    /* CTA buttons - white outline */
    .nav-cta-link {
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        padding: 0.875rem 1rem;
        color: var(--white);
        background: transparent;
        border: 2px solid var(--white);
        border-radius: 0.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .nav-cta-link:hover,
    .nav.nav-transparent.scrolled .nav-cta-link:hover {
        background: var(--white);
        color: var(--secondary);
    }
    /* Scrolled: Pricing button stays white on mobile (navy menu bg) */
    .nav.nav-transparent.scrolled .nav-cta-group .nav-cta-link {
        color: var(--white);
        border-color: var(--white);
    }
    /* Primary CTA - green, full width */
    .nav-cta-primary {
        grid-column: 1 / -1;
        text-align: center;
        font-size: 1.1rem;
        font-weight: 700;
        padding: 1rem;
        background: var(--primary);
        color: var(--white) !important;
        border: 2px solid var(--primary);
        border-radius: 0.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .nav-cta-primary:hover {
        background: #3da17d;
        border-color: #3da17d;
    }

    /* Legacy single CTA (backward compatibility) */
    .nav-links li:last-child:not(.nav-cta-group) {
        grid-column: 1 / -1;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 0.5rem;
    }
    .nav-links a.nav-cta {
        background: var(--primary);
        color: var(--white) !important;
        padding: 0.75rem 2rem;
        border-radius: 3.125rem;
        margin-left: 0;
        font-size: 1.1rem;
    }

    .header-arrow {
        font-size: 0.7em;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav-dropdown > a {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 0.5rem;
    }
    .nav-dropdown > a::before {
        position: static;
        transform: none;
        transition: transform 0.3s ease;
    }
    .nav-dropdown.open > a::before {
        transform: rotate(180deg);
    }
    /* Mobile dropdown-menu removed - replaced by mega-menu */

    /* Mobile Mega Menu - Frosted Glass on Navy */
    .mega-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border-radius: 0.75rem;
        min-width: auto;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem 1.5rem;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .has-mega-menu.open .mega-menu {
        max-height: 60rem;
        padding: 0.75rem;
    }
    /* Capture and Design columns side-by-side */
    .mega-menu-column {
        text-align: left;
    }
    /* Override desktop transparent nav rule - match anchor styling */
    .nav.nav-transparent .mega-menu-header {
        color: var(--white);
        font-size: 1.35rem;
    }
    /* Mega menu headers styling */
    .mega-menu-column h4,
    .mega-menu-header {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
        margin-top: 0;
        padding-bottom: 0.25rem;
        border-bottom: none;
        color: var(--primary);
    }
    /* Mega menu link titles - white on dark bg */
    .mega-link-title {
        color: var(--white);
        transition: color 0.2s ease;
    }
    /* Mega menu link hover effects */
    .mega-menu a {
        transition: all 0.2s ease;
        border-radius: 0.5rem;
        padding: 0.5rem 0.75rem;
        margin: 0.125rem 0;
    }
    .mega-menu a:hover {
        background: rgba(255, 255, 255, 0.12);
    }
    .mega-menu a:hover .mega-link-title {
        color: var(--primary);
    }
    .mega-menu a:active {
        background: rgba(74, 189, 146, 0.2);
    }
    /* Clickable header hover */
    a.mega-menu-header:hover {
        background: rgba(74, 189, 146, 0.15);
    }
    /* .mega-menu-view-all mobile styles removed - unused */
    /* Who We Serve spans full width as horizontal row */
    .mega-menu-column:last-child {
        grid-column: 1 / -1;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(74, 189, 146, 0.2);
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem 0.75rem;
        justify-content: center;
        text-align: center;
    }
    .mega-menu-column:last-child .mega-menu-header {
        width: 100%;
        text-align: center;
        margin-bottom: 0.25rem;
    }
    /* Non-clickable mega menu header (span instead of anchor) */
    /* Mobile: WHITE on navy background */
    span.mega-menu-header {
        cursor: default;
        color: var(--white);
        font-size: 1.35rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .mega-menu-column:last-child a:not(.mega-menu-header) {
        padding: 0.25rem 0.5rem;
    }
    .mega-menu-column a {
        padding: 0.35rem 0;
    }
    .mega-menu-column a:hover {
        transform: none;
    }
    .mega-link-title {
        font-size: 1rem;
        font-weight: 500;
        /* color: white set at line ~3205 */
    }
    .mega-link-desc {
        display: none;
    }
    /* Mega Menu CTA - Mobile */
    .mega-menu-cta {
        grid-column: 1 / -1;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(74, 189, 146, 0.2);
    }
    .mega-menu-cta a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 0.5rem;
    }
    .mega-menu-cta .cta-subtitle {
        display: none;
    }

    .mobile-menu-btn { 
        display: flex; 
        z-index: 10000;
        position: relative;
    }
    .nav-logo img { height: 4.6875rem; }
    
    /* Hero */
    .hero { padding: 8rem 0 3rem; }
    .hero-content { text-align: center; }
    .hero-content .flex-center { justify-content: center; }
    .hero h1 { font-size: 1.9rem; }
    .hero p { font-size: 1rem; margin-bottom: 1.5625rem; }
    /* Mobile hero-images, hero-slider, slider-*, hero-image-border removed - unused */

    /* Page Hero */
    .page-hero { padding: 0 0 2.5rem; }
    .page-hero .container { padding-top: 8rem; }
    .page-hero h1 { font-size: 1.8rem; }
    .page-hero p { font-size: 0.95rem; }
    
    /* Service Hero Image */
    .service-hero-section { padding: 2rem 0; }
    .service-hero-image { border-radius: 0.75rem; }
    
    /* Sections */
    .section { padding: 3rem 0; }
    .section-header { margin-bottom: 1.5rem; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 1rem; }

    /* Stats */
    .stats-bar { padding: 2rem 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .stat-item h3, .stat-item .stat-number { font-size: 2.2rem; }
    .stat-item p { font-size: 0.85rem; }
    
    /* Service Cards - 2 column */
    .services-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    /* Center last card when it's alone in its row (odd number of cards) */
    .services-grid .service-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: calc((100% - 1.5rem) / 2);
    }
    .service-card-content { padding: 1.25rem; }
    .service-card h3 { font-family: 'Barlow', sans-serif; font-size: 1.1rem; margin-bottom: 0.5rem; }
    .service-card p { font-size: 0.85rem; margin-bottom: 0.625rem; }
    .service-card .price { font-size: 0.95rem; margin-bottom: 0.625rem; }
    .service-card .btn { padding: 0.625rem 1rem; font-size: 0.85rem; }
    
    /* Pricing Cards */
    .pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .pricing-card { padding: 1.25rem; }
    .pricing-price { font-size: 2.5rem; }

    /* Pricing Category Nav - Mobile adjustments */
    .pricing-nav {
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Scroll offset for pricing section anchors */
    #photography,
    #videography,
    #floor-plans,
    #bundles,
    #design {
        scroll-margin-top: 10rem; /* Main nav (6rem) + pricing nav (~3rem) + buffer */
    }
    .pricing-nav-link {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    /* Package Sections */
    .package-section { padding: 1.5625rem 1.25rem; margin-bottom: 1.5625rem; }
    .package-section-header { margin-bottom: 1.5625rem; }
    .package-section-header h3 { font-size: 1.4rem; }
    
    /* Package Cards - 2 column */
    .package-card { padding: 1.25rem; min-height: 10rem; border-radius: 0.75rem; }
    .package-price { font-size: 1.6rem; }
    .package-card h3 { font-size: 0.9rem; margin-bottom: 0.5rem; }
    .package-details { font-size: 0.75rem; margin-top: 0.5rem; }
    .package-savings { font-size: 0.7rem; padding: 0.25rem 0.625rem; }
    
    /* Why Grid - 2 column */
    .why-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .why-card { padding: 1.25rem; }
    .why-icon { width: 2.8125rem; height: 2.8125rem; font-size: 1.2rem; margin-bottom: 0.75rem; }
    .why-card h3 { font-size: 0.95rem; margin-bottom: 0.375rem; }
    .why-card p { font-size: 0.8rem; }
    
    /* Content Grid */
    .content-grid { gap: 1.5rem; }
    .content-images { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .content-images img { aspect-ratio: 1; }
    .content-text { text-align: center; }
    .content-text h2 { font-size: 1.7rem; }
    .content-text p { font-size: 0.95rem; }

    /* Content Video in Grid - Mobile */
    .content-images-with-video { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
    .content-video { grid-column: 1 / -1; grid-row: auto; max-height: 400px; }
    .content-video .play-button { width: 3.5rem; height: 3.5rem; }
    .content-video .video-label { font-size: 0.85rem; bottom: 1rem; }

    /* Portfolio - 2 column */
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .portfolio-video { grid-column: span 2; grid-row: span 2; }
    .video-label { font-size: 0.9rem; bottom: 3rem; }
    .portfolio-video .play-button { width: 3.5rem; height: 3.5rem; }

    /* Features List - keep 2 columns on mobile, centered */
    .features-list { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; max-width: 20rem; margin: 1.5rem auto; }
    .features-list li { font-size: 0.9rem; }
    .features-list li::before { width: 1.375rem; height: 1.375rem; font-size: 0.7rem; }
    
    /* Contact */
    .contact-grid { gap: 2rem; }
    .contact-info h2 { font-size: 1.7rem; }
    .contact-form { padding: 1.875rem 1.5625rem; }
    .contact-form h3 { font-size: 1.3rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    /* Footer - Two-column layout */
    .footer { padding: 2.5rem 0 1.5rem; }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        text-align: center;
    }
    .footer-brand {
        grid-column: span 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .footer-brand img { width: 100px; margin-bottom: 0.75rem; }
    .footer-social { justify-content: center; gap: 0.5rem; }
    .footer-social a { width: 2.25rem; height: 2.25rem; }
    .footer-social svg { width: 1.125rem; height: 1.125rem; }
    .footer-column .footer-heading { font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 0.02em; }
    .footer-column a { font-size: 0.85rem; }
    .footer-column li { margin-bottom: 0.4rem; }
    .footer-bottom { padding-top: 1.25rem; margin-top: 0.5rem; }
    .footer-bottom p { font-size: 0.8rem; }
    .footer-bottom .cookie-notice { font-size: 0.7rem; }
    
    /* CTA */
    .cta-section { padding: 3rem 0; }
    .cta-section h2 { font-size: 1.8rem; }
    .cta-section p { font-size: 1rem; }

    /* CTA Stats Section - Tablet */
    .cta-content-box { padding: 2rem; border-radius: 1.5rem; width: 380px; height: 380px; }
    .cta-half { padding: 2.5rem 1.5rem; }

    /* Disable hover transform on cards - mobile */
    .why-card:hover,
    .service-card:hover,
    .pricing-card:hover {
        transform: none;
    }

    /* Buttons */
    .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (480px)
   ======================================== */
@media (max-width: 30rem) {
    /* Section Padding - Mobile */
    .section { padding: 2rem 0; }
    .stats-bar { padding: 1.5rem 0; }
    .hero { padding: 6rem 0 2rem; }
    .section-header { margin-bottom: 1.25rem; }

    .hero h1 { font-size: 1.7rem; }
    .hero p { font-size: 0.95rem; }
    .section-title { font-size: 1.6rem; }
    .stat-item h3, .stat-item .stat-number { font-size: 1.8rem; }
    .pricing-price { font-size: 2.2rem; }
    .btn { padding: 0.6875rem 1.25rem; font-size: 0.85rem; }
    .service-card .btn { padding: 0.6875rem 1.25rem; font-size: 0.85rem; }
    .package-price { font-size: 1.6rem; }

    /* Single column for very small screens */
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    /* Reset orphan card centering - single column doesn't need it */
    .services-grid .service-card:last-child:nth-child(odd) {
        max-width: none;
        grid-column: auto;
        justify-self: auto;
    }
    .services-grid-2col { grid-template-columns: repeat(2, 1fr); }

    /* Why Grid - keep 2 columns, more compact */
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .why-card { padding: 1rem; }
    .why-icon { width: 2.25rem; height: 2.25rem; margin-bottom: 0.5rem; }
    .why-icon svg { width: 1.125rem; height: 1.125rem; }
    .why-card h3 { font-size: 0.8rem; margin-bottom: 0.25rem; }
    .why-card p { font-size: 0.65rem; line-height: 1.3; }

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

    /* CTA Stats Section - Mobile */
    .cta-content-box { padding: 1.5rem; border-radius: 1rem; width: 100%; height: auto; min-height: 280px; }

    /* Content Grid - Mobile */
    .content-grid { gap: 1rem; }

    /* Card padding - Mobile */
    .pricing-card { padding: 1rem; }
    .package-card { padding: 1rem; }
    .service-card-content { padding: 1rem; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(74, 189, 146, 0.3);
}
.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top svg {
    width: 1.25rem;
    height: 1.25rem;
}
@media (max-width: 48rem) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2.75rem;
        height: 2.75rem;
    }
}

/* ========================================
   LEGAL PAGES (Privacy Policy, Terms)
   ======================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
.legal-content h1, .legal-content h2, .legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-grey);
}
.legal-content p {
    margin-bottom: 1rem;
    color: var(--medium-grey);
}
.legal-content ol, .legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}
.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--medium-grey);
}
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.legal-content th, .legal-content td {
    border: 1px solid var(--light-grey);
    padding: 0.75rem;
    text-align: left;
}
.legal-content th {
    background: var(--off-white);
    font-weight: 600;
}
.legal-content strong {
    color: var(--dark-grey);
}

/* ========================================
   PORTFOLIO FILTERS
   ======================================== */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
    /* Sticky positioning - stays visible while scrolling gallery */
    position: sticky;
    top: 5.5rem;
    z-index: 90;
    background: white;
    padding: 1rem 0;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    border-radius: 2rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn:focus {
    background: var(--secondary);
    color: var(--white);
    outline: none;
}

.filter-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.filter-btn.active,
.filter-btn[aria-pressed="true"] {
    background: var(--secondary);
    color: var(--white);
}

/* .portfolio-item duplicate removed - consolidated in PORTFOLIO section */

/* Mobile filters */
@media (max-width: 48rem) {
    .portfolio-filters {
        gap: 0.5rem;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   LIGHTBOX (Accessible Image Viewer)
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, 0.95);
}

.lightbox[open] {
    display: flex;
    flex-direction: column;
}

.lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    z-index: 10;
}

#lightbox-counter {
    color: var(--white);
    font-size: 0.875rem;
    font-family: 'Barlow', sans-serif;
}

.lightbox-close {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-close:focus {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 4rem 1rem 2rem;
    position: relative;
}

.lightbox-figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 80vh;
    margin: 0;
}

#lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 0.25rem;
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9375rem;
    font-family: 'Barlow', sans-serif;
    max-width: 600px;
    line-height: 1.5;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: background 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover,
.lightbox-nav:focus {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

/* Mobile lightbox */
@media (max-width: 48rem) {
    .lightbox-nav {
        padding: 0.75rem;
    }
    .lightbox-prev {
        left: 0.5rem;
    }
    .lightbox-next {
        right: 0.5rem;
    }
    #lightbox-image {
        max-height: 60vh;
    }
    .lightbox-header {
        padding: 0.75rem 1rem;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .portfolio-item,
    .lightbox,
    .lightbox-nav,
    .lightbox-close,
    .filter-btn {
        transition: none;
    }
    .portfolio-item:hover {
        transform: none;
    }
}

/* Visually hidden (for screen readers) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   BLOG CONTENT STYLES
   ======================================== */
.page-hero + .section {
    padding-top: 3rem;
}

.blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    margin-bottom: 1.25rem;
}

.blog-content ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-content li {
    list-style: disc;
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

.blog-content li:last-child {
    margin-bottom: 0;
}

.blog-content .features-list {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.blog-content .features-list li {
    align-items: flex-start;
}

.blog-content a {
    color: var(--primary-text);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s ease;
}

.blog-content a:hover {
    text-decoration-color: var(--primary-text);
}

/* ========================================
   BLOG GRID - DESIGN C (Modern Grid)
   ======================================== */

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

.blog-card {
    position: relative;
    overflow: visible;
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Color overlay on hover */
.blog-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 189, 146, 0.7) 0%, rgba(34, 28, 88, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-image::after {
    opacity: 1;
}

/* Read indicator - hidden */
.blog-card-read-indicator {
    display: none;
}

/* Floating category badge - positioned inside image to avoid overflow clipping */
.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 3;
}

.blog-card-content {
    padding: 1.5rem 1rem 2rem;
    background: var(--white);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-grey);
    margin-bottom: 0.75rem;
}

.blog-card-meta svg {
    width: 12px;
    height: 12px;
    opacity: 0.6;
}

.blog-card-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--primary-text);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-grey);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

@media (max-width: 48rem) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0.75rem;
    }

    .blog-card-content {
        padding: 1rem 0.5rem 1.25rem;
        text-align: center;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    .blog-card-excerpt {
        display: none; /* Hide excerpt on mobile for cleaner 2-col layout */
    }
}

/* ========================================
   ARTICLE HERO - DESIGN C
   ======================================== */

.article-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    max-height: 500px;
    overflow: hidden;
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%; /* Show skyline, not top gradient */
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        transparent 85%
    );
}

.article-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 0;
    color: var(--white);
}

.article-hero-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.article-hero-back:hover {
    color: var(--white);
    gap: 0.75rem;
}

.article-hero-back svg {
    width: 16px;
    height: 16px;
}

.article-hero-category {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.article-hero h1 {
    font-family: 'Albert Sans', sans-serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    max-width: 800px;
    color: var(--white);
}

.article-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.article-hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-hero-meta svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

/* Article hero responsive */
@media (max-width: 48rem) {
    .article-hero {
        height: 45vh;
        min-height: 300px;
    }

    .article-hero-image img {
        object-position: 55% 70%; /* Mobile: center on Big Ben/BT Tower/Tower Bridge */
    }

    .article-hero-content {
        padding: 2rem 0;
        text-align: center;
    }

    .article-hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* ========================================
   ARTICLE CONTENT ENHANCEMENTS - DESIGN C
   ======================================== */

.article-content h2 {
    position: relative;
    padding-left: 1.5rem;
    margin: 2.5rem 0 1.25rem;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25em;
    bottom: 0.25em;
    width: 4px;
    background: var(--primary);
}

/* Pull Quote */
.pull-quote {
    position: relative;
    margin: 3rem -2rem;
    padding: 3rem 2rem;
    background: var(--secondary);
    color: var(--white);
}

.pull-quote::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-family: 'Albert Sans', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
    opacity: 0.3;
}

.pull-quote p {
    position: relative;
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white);
    margin: 0;
    z-index: 1;
}

.pull-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
}

/* Callout Box */
.content-callout {
    position: relative;
    margin: 2rem 0;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    background: var(--light-grey);
    border-left: 4px solid var(--primary);
}

.content-callout-icon {
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
}

.content-callout strong {
    display: block;
    font-family: 'Albert Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.content-callout p {
    margin: 0;
    color: var(--text-grey);
}

/* Pull quote responsive */
@media (max-width: 48rem) {
    .pull-quote {
        margin: 2rem -1rem;
        padding: 2rem 1.5rem;
    }

    .pull-quote::before {
        font-size: 5rem;
    }

    .pull-quote p {
        font-size: 1.125rem;
    }

    .article-content h2 {
        padding-left: 1rem;
    }

    .article-content h2::before {
        width: 3px;
    }
}

/* ========================================
   RELATED POSTS - DESIGN C
   ======================================== */

.related-posts {
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #1a1545 100%);
    padding: 4rem 0;
}

/* Animated pulse dividers - top and bottom (match card edges) */
.related-posts::before,
.related-posts::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 3.75rem), 71.25rem);
    height: 3px;
    background: var(--primary);
    animation: pulse-divider 2s ease-in-out infinite;
}

.related-posts::before {
    top: 0;
}

.related-posts::after {
    bottom: 0;
}

@keyframes pulse-divider {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.related-posts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.related-posts-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
}

.related-posts-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.02em;
    margin-top: 0;
}

.related-posts-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.related-posts-link:hover {
    color: var(--primary);
    gap: 0.75rem;
}

.related-posts-link svg {
    width: 16px;
    height: 16px;
}

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

.related-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.related-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.related-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.related-card:hover .related-card-image img {
    transform: scale(1.08);
}


/* Content below image (not overlaid) */
.related-card-content {
    padding: 1.25rem 1rem 1.5rem;
    background: var(--white);
}

.related-card-category {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.related-card-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.related-card:hover .related-card-title {
    color: var(--primary-text);
}

.related-card-meta {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-grey);
}

/* Related posts responsive */
@media (max-width: 64rem) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-card:last-child {
        display: none;
    }
}

@media (max-width: 48rem) {
    .related-posts {
        padding: 3rem 0;
    }

    .related-posts-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .related-posts-title {
        font-size: 1.5rem;
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }

    .related-card:last-child {
        display: none; /* Show only 2 articles on mobile */
    }

    .related-card-content {
        padding: 1rem 0.75rem 1.25rem;
        text-align: center;
    }

    .related-card-title {
        font-size: 1rem;
    }
}

/* ========================================
   SECTION DIVIDERS
   ======================================== */
.section-divider {
    background: var(--light-grey);
    padding: 0;
    display: flex;
    justify-content: center;
}

.divider-line {
    width: 60%;
    max-width: 40rem;
    border: none;
    border-top: 1px solid rgba(34, 28, 88, 0.15);
    margin: 0;
}

/* ========================================
   UTILITY CLASSES (Additional)
   ======================================== */
/* .text-white duplicate removed - defined in main utility classes without !important */
/* .text-center duplicate removed - defined in main utility classes */
/* WARNING: .text-primary uses brand green - ONLY use on dark/navy backgrounds (fails WCAG AA on white) */
.text-primary { color: var(--primary); }
.text-primary-bold { color: var(--primary); font-weight: 600; }

/* Button margin utilities */
.btn--mt { margin-top: 1.5rem; }
.btn--mb { margin-bottom: 0.75rem; }

/* Section tag variants */
.section-tag--light { background: rgba(74, 189, 146, 0.2); }

/* Dark section text */
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255, 255, 255, 0.8); }
.section-dark .section-tag { color: var(--white); }

/* Content images single column */
.content-images--single { grid-template-columns: 1fr; }

/* Container narrow for blog */
.container--narrow { max-width: 800px; }

/* Card link (for blog cards) */
.card-link { text-decoration: none; color: inherit; }
.card-link:hover { text-decoration: none; }

/* Flex utilities */
.flex-gap { display: flex; gap: 0.9375rem; flex-wrap: wrap; }

/* Spacing utilities */
.mt-40 { margin-top: 2.5rem; }
.mt-50 { margin-top: 3.125rem; }

/* Text utilities */
/* WARNING: .text-accent uses brand green - ONLY use on dark/navy backgrounds (fails WCAG AA on white) */
.text-accent { color: var(--primary); font-weight: 600; }
/* .text-center duplicate removed - defined in utility classes */

/* Button section wrapper */
.btn-section { text-align: center; margin-top: 2.5rem; }

/* Promo box */
.promo-box {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.875rem;
    background: var(--white);
    border-radius: 1rem;
}
.promo-box--featured {
    background: var(--light-grey);
    border: 2px solid var(--primary);
}
.promo-box h3 { margin-bottom: 0.625rem; }
.promo-box p { color: var(--text-grey); margin-bottom: 0.9375rem; }
.promo-box .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

/* Thank you page specific */
.thank-you-hero { min-height: 60vh; display: flex; align-items: center; }
.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thank-you-message { font-size: 1.2rem; max-width: 600px; margin: 20px auto 30px; }
.why-grid--narrow { max-width: 900px; margin: 0 auto; }

/* Duplicate .promo-box removed - consolidated above */
.promo-box--highlight {
    background: var(--light-grey);
    border: 2px solid var(--primary);
}
.promo-box .price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

/* Promo box service links grid */
.promo-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}
.promo-service-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--light-grey);
    border: 1px solid rgba(34, 28, 88, 0.1);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}
.promo-service-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
@media (max-width: 30rem) {
    .promo-services {
        gap: 0.5rem;
    }
    .promo-service-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* ========================================
   PREMIUM CARDS (Design Services)
   Corner accents, square images, icon titles
   ======================================== */
.premium-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(34, 28, 88, 0.1),
        0 4px 12px rgba(74, 189, 146, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.premium-card:hover {
    transform: translateY(-0.5rem);
    box-shadow:
        0 20px 50px rgba(34, 28, 88, 0.15),
        0 8px 20px rgba(74, 189, 146, 0.12);
}

.premium-card-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

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

/* Corner accent brackets */
.premium-card-img::before,
.premium-card-img::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 2;
    transition: all 0.3s ease;
}

.premium-card-img::before {
    top: 1rem;
    left: 1rem;
    border-top: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
    border-radius: 0.5rem 0 0 0;
}

.premium-card-img::after {
    bottom: 1rem;
    right: 1rem;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    border-radius: 0 0 0.5rem 0;
}

.premium-card:hover .premium-card-img::before,
.premium-card:hover .premium-card-img::after {
    width: 50px;
    height: 50px;
}

.premium-card-content {
    padding: 1.75rem;
    text-align: center;
}

.premium-card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.premium-card-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.premium-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin: 0;
}

.premium-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.premium-card .btn {
    width: 60%;
    display: block;
    margin: 0 auto 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 2rem;
}


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

@media (max-width: 64rem) {
    .premium-grid {
        gap: 1.5rem;
    }

    .premium-card-content {
        padding: 1.25rem;
    }
}

@media (max-width: 52rem) {
    .premium-grid {
        gap: 1.25rem;
    }

    .premium-card-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 48rem) {
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .premium-card .btn {
        width: 70%;
    }
}


/* ========================================
   UNIFIED CARD BUTTONS
   ======================================== */

/* Card Button Container - Side-by-side layout */
.card-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Learn more button - Green filled */
.card-btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 2rem;
    background: var(--primary-accessible);
    color: white;
    border: 2px solid var(--primary-accessible);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

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

/* Get a Quote button - Navy filled */
.card-btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 2rem;
    background: var(--secondary);
    color: white;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

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

/* Focus states for accessibility */
.card-btn-primary:focus-visible,
.card-btn-secondary:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}


/* ========================================
   HOW IT WORKS - STICKY CARD STACK
   ======================================== */

.process-section {
    background: var(--light-grey);
    padding: 4rem 0 2rem;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.process-subtitle {
    color: var(--text-grey);
    font-size: 1.1rem;
}

/* Sticky Card Container */
.process-cards {
    max-width: 50rem;
    margin: 0 auto;
}

/* Individual Process Card */
.process-card {
    position: sticky;
    top: 5.5rem;
    margin-bottom: 0.75rem;
    background: var(--secondary);
    border: 0.125rem solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 -0.625rem 1.875rem rgba(0, 0, 0, 0.3);
}

.process-card:last-child {
    margin-bottom: 2rem;
}

.process-card:hover {
    border-color: var(--primary);
}

/* Large decorative step number */
.process-number {
    font-family: 'Albert Sans', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(74, 189, 146, 0.18);
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    line-height: 1;
    pointer-events: none;
}

/* Step label (01, 02, etc.) */
.process-step {
    display: inline-block;
    background: var(--primary-accessible);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* Step title */
.process-card-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

/* Step description */
.process-card-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 40rem;
}

/* Links within description */
.process-link {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    transition: color 0.2s ease;
}

.process-link:hover {
    color: #6dd4ad;
}

/* Icon for each step */
.process-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.process-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--primary);
}

/* Responsive Styles */
@media (max-width: 48rem) {
    .process-card {
        top: 5rem;
        margin-bottom: 4rem;
        padding: 2rem 1.5rem;
    }

    .process-number {
        font-size: 5rem;
        top: -0.5rem;
        right: 0.5rem;
    }

    .process-title {
        font-size: 2rem;
    }

    .process-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 30rem) {
    .process-card {
        top: 4.5rem;
        margin-bottom: 3rem;
        padding: 1.5rem 1rem;
    }

    .process-number {
        font-size: 4rem;
    }

    .process-card-text {
        font-size: 0.95rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .process-card {
        position: relative;
        top: auto;
        margin-bottom: 1.5rem;
    }
}


/* ========================================
   ACCESSIBILITY - SKIP LINK
   ======================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Screen Reader Only - visually hidden but accessible
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   QUOTE CALCULATOR
   ======================================== */

/* Email Gate */
.quote-gate {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(34, 28, 88, 0.1);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.quote-gate-content {
    max-width: 450px;
    margin: 0 auto;
}

.quote-gate-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quote-gate-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: var(--primary);
}

.quote-gate h2 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.quote-gate p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quote-gate-form {
    margin-bottom: 1.5rem;
}

.quote-gate-input-wrap {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.quote-gate-input-wrap input {
    flex: 1;
    min-width: 200px;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.quote-gate-input-wrap input:focus {
    border-color: var(--primary);
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.quote-gate-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    min-height: 1.25rem;
}

.quote-gate-benefits {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.quote-gate-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.quote-gate-benefits svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--primary);
    flex-shrink: 0;
}

/* Calculator Container */
.quote-calculator {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(34, 28, 88, 0.1);
    overflow: hidden;
}

/* Calculator Section */
.calc-section {
    padding: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.calc-section:last-child {
    border-bottom: none;
}

.calc-section-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-grey);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calc-section-title svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--primary);
}

.calc-section-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0.5rem 0 1rem 0;
    font-weight: 400;
}

.calc-section-note {
    font-weight: 400;
    opacity: 0.7;
    font-size: 0.65rem;
    text-transform: none;
    letter-spacing: normal;
}

/* Property Size Selector */
.size-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.size-option {
    position: relative;
}

.size-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.size-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    background: var(--white);
}

.size-option label:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.size-option input:checked + label {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.size-option input:focus-visible + label {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.size-label {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.size-desc {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Service Options */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-option {
    position: relative;
}

.service-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-option label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
}

.service-option label:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.service-option input:checked + label {
    border-color: var(--primary);
    background: var(--primary-light);
}

.service-option input:focus-visible + label {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-checkbox {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid #ccc;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.service-option input:checked + label .service-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}

.service-checkbox svg {
    width: 1rem;
    height: 1rem;
    fill: var(--white);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.service-option input:checked + label .service-checkbox svg {
    opacity: 1;
}

.service-name {
    font-weight: 600;
    color: var(--secondary);
}

.service-details {
    font-size: 0.8rem;
    color: var(--text-grey);
    margin-top: 0.125rem;
}

.service-price {
    font-weight: 700;
    color: var(--primary-text);
    font-size: 1.125rem;
    white-space: nowrap;
}

.service-price-from {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-grey);
    display: block;
}

/* Add-on Options */
.addon-option {
    margin-left: 2rem;
}

/* Bundle Suggestion */
.bundle-suggestion {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(74, 189, 146, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 1rem;
    display: none;
    animation: slideIn 0.3s ease;
}

.bundle-suggestion.visible {
    display: block;
}

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

.bundle-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.bundle-icon {
    background: var(--primary);
    color: var(--white);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.bundle-title {
    font-weight: 700;
    color: var(--secondary);
}

.bundle-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.bundle-info {
    flex: 1;
}

.bundle-name {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
}

.bundle-savings {
    color: var(--primary-text);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Quote Summary */
.quote-summary {
    background: var(--secondary);
    color: var(--white);
    padding: 2rem;
}

.summary-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 1.25rem;
}

.summary-items {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.summary-item-name {
    flex: 1;
    opacity: 0.9;
}

.summary-item-price {
    font-weight: 600;
    min-width: 5.5rem;
    text-align: right;
}

.summary-item.discount {
    color: var(--primary);
}

.savings-pill {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Split summary sections for mixed capture + design services */
.quote-summary .summary-section {
    background: white !important;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.quote-summary .summary-section:last-child {
    margin-bottom: 0;
}

.summary-section-capture {
    border: 2px solid var(--primary);
}

.summary-section-capture .summary-section-header {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(74, 189, 146, 0.2);
}

.summary-section-capture .summary-item {
    border-bottom-color: rgba(74, 189, 146, 0.15);
    color: var(--secondary);
}

.summary-section-design {
    border: 2px dashed #ccc;
    background: var(--light-grey) !important;
}

.summary-section-design .summary-section-header {
    color: #666;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #ccc;
}

.summary-section-design .summary-item {
    border-bottom-color: rgba(0, 0, 0, 0.05);
    color: var(--secondary);
}

.summary-section-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 2px solid var(--primary);
    color: var(--secondary);
    font-size: 1.1rem;
}

.summary-section-note {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 500;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
    background: rgba(255, 193, 7, 0.15);
    border-left: 3px solid #f0ad4e;
    border-radius: 0 0.25rem 0.25rem 0;
    line-height: 1.5;
}

/* Remove button for summary items */
.summary-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 0.5rem;
    font-size: 1rem;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s, color 0.2s;
}

.summary-item-remove:hover {
    opacity: 1;
    color: #e74c3c;
}

.summary-empty {
    text-align: center;
    padding: 2rem 0;
    opacity: 0.6;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
}

.total-label {
    font-size: 1rem;
    font-weight: 600;
}

.total-price {
    font-size: 2rem;
    font-weight: 700;
}

.total-vat {
    font-size: 0.75rem;
    opacity: 0.7;
    display: block;
    text-align: right;
}

/* Email Form Section */
.email-form-section {
    background: var(--light-grey);
    padding: 2rem;
}

.email-form-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.email-form-title svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--primary);
}

.email-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.75rem;
    align-items: end;
}

.email-form input[type="hidden"] {
    display: none;
}

.email-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.email-form .form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-grey);
}

.email-form .form-group input {
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.email-form .form-group input:focus {
    border-color: var(--primary);
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-light);
    border-radius: 0.5rem;
    color: var(--primary-text);
}

.form-success.visible {
    display: block;
}

.form-success svg {
    width: 3rem;
    height: 3rem;
    fill: var(--primary);
    margin-bottom: 0.75rem;
}

.form-success h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

/* Book Now CTA */
.book-cta {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #e8e8e8;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.book-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.5rem rgba(74, 189, 146, 0.3);
}

.book-btn:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.book-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

/* Design Services Consultation Note */
.book-cta-note {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #fff8e6 0%, #fff3d4 100%);
    border: 2px solid #f5a623;
    border-left: 4px solid #f5a623;
    border-radius: 0.5rem;
    color: #7a5d2b;
    font-size: 1rem;
    font-weight: 600;
    display: none;
    text-align: center;
}

.book-cta-note.visible {
    display: block;
}

/* Apply Bundle Button */
.bundle-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bundle-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.bundle-btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.bundle-btn.applied,
.bundle-btn.applied:hover {
    background: var(--secondary);
}

/* Email Submit Button */
.email-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    width: 100%;
    animation: email-submit-glow 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(74, 189, 146, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes email-submit-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(74, 189, 146, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(74, 189, 146, 0.7), 0 0 30px rgba(74, 189, 146, 0.4);
    }
}

.email-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 189, 146, 0.5);
    animation: none;
}

.email-submit:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    animation: none;
}

.email-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    animation: none;
    box-shadow: none;
}

.enquiry-note {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-top: 0.75rem;
    text-align: center;
    line-height: 1.5;
}

.book-cta .btn svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

/* Fine Print */
.fine-print {
    padding: 1.5rem 2rem;
    background: var(--light-grey);
    font-size: 0.8rem;
    color: var(--text-grey);
    line-height: 1.5;
}

.fine-print p {
    margin-bottom: 0.25rem;
}

/* Hidden honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

/* .visually-hidden duplicate removed - defined in lightbox section */

/* Quote Calculator Responsive */
@media (max-width: 48rem) {
    .quote-gate {
        padding: 2rem 1.5rem;
    }

    .quote-gate h2 {
        font-size: 1.5rem;
    }

    .quote-gate-input-wrap {
        flex-direction: column;
    }

    .quote-gate-input-wrap input {
        width: 100%;
    }

    .calc-section {
        padding: 1.5rem;
    }

    .size-selector {
        gap: 0.5rem;
    }

    .size-option label {
        padding: 1rem 0.5rem;
    }

    .size-label {
        font-size: 0.875rem;
    }

    .size-desc {
        font-size: 0.7rem;
    }

    .service-option label {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .service-price {
        width: 100%;
        text-align: right;
        padding-left: 2.25rem;
    }

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

    .bundle-content {
        flex-direction: column;
        align-items: stretch;
    }

    .total-price {
        font-size: 1.5rem;
    }

    .quote-summary,
    .email-form-section,
    .fine-print {
        padding: 1.5rem;
    }

    .addon-option {
        margin-left: 1rem;
    }
}

@media (max-width: 30rem) {
    .size-selector {
        grid-template-columns: 1fr;
    }

    .size-option label {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
}

/* ======================
   Print Styles
   ====================== */
@media print {
    /* Hide non-essential elements */
    .nav,
    .mobile-menu-btn,
    .back-to-top,
    .lightbox,
    .filter-controls,
    .tab-buttons,
    .faq-accordion,
    .btn,
    .btn-light,
    .btn-outline,
    .card-buttons,
    .cta-section,
    .cta-split,
    .hero-buttons,
    .related-posts,
    footer form,
    .footer-social,
    .video-container,
    .play-button,
    iframe {
        display: none !important;
    }

    /* Reset backgrounds and colors for printing */
    body,
    .section-dark,
    .page-hero,
    .article-hero,
    .footer {
        background: white !important;
        color: black !important;
    }

    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* Typography for print */
    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1, h2, h3, h4, h5, h6 {
        color: black !important;
        page-break-after: avoid;
    }

    p, li {
        orphans: 3;
        widows: 3;
    }

    /* Show link URLs */
    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    a[href^="/"]::after,
    a[href^="#"]::after {
        content: none;
    }

    /* Images */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    /* Cards and sections */
    .pricing-card,
    .service-card,
    .why-card {
        page-break-inside: avoid;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }

    /* Footer - simplified */
    .footer {
        border-top: 1px solid #ccc;
        padding: 1rem 0 !important;
    }

    .footer-content {
        display: block !important;
    }

    .footer-section {
        display: none;
    }

    .footer-section:first-child {
        display: block;
    }

    /* Page margins */
    @page {
        margin: 2cm;
    }
}

/* ========================================
   404 ERROR PAGE
   ======================================== */

/* Hero */
.error-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1545 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 7rem 1rem 5rem;
}

.error-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/blog-hero-skyline.webp') center 70% / cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

.error-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
}

/* 404 Camera Viewfinder - scoped to error-hero to avoid homepage conflict */
.error-hero .viewfinder {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.error-hero .viewfinder-frame {
    width: 220px;
    height: 150px;
    border: 3px solid var(--primary);
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
}

/* Corner brackets - camera-style */
.error-hero .viewfinder-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.error-hero .viewfinder-corner.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.error-hero .viewfinder-corner.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.error-hero .viewfinder-corner.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.error-hero .viewfinder-corner.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

/* Center focus crosshair */
.error-hero .viewfinder-crosshair {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.error-hero .viewfinder-crosshair::before,
.error-hero .viewfinder-crosshair::after {
    content: '';
    position: absolute;
    background: var(--primary);
}

.error-hero .viewfinder-crosshair::before {
    width: 1px;
    height: 100%;
    left: 50%;
}

.error-hero .viewfinder-crosshair::after {
    height: 1px;
    width: 100%;
    top: 50%;
}

/* REC indicator */
.error-hero .viewfinder-rec {
    position: absolute;
    top: 8px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #ff4444;
    letter-spacing: 0.05em;
}

.error-hero .viewfinder-rec::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ff4444;
    border-radius: 50%;
    animation: error-rec-blink 1.5s infinite;
}

@keyframes error-rec-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.error-code {
    font-family: 'Albert Sans', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.4rem;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.error-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 1rem 0;
}

.error-title em {
    color: var(--primary);
    font-style: normal;
}

.error-text {
    font-family: 'Barlow', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.error-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-buttons .btn {
    min-width: 150px;
    padding: 0.875rem 1.5rem;
}

/* White solid button */
.btn-white-solid {
    background: var(--white);
    color: var(--secondary);
    border: 2px solid var(--white);
    font-weight: 600;
    border-radius: 3rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-white-solid:hover,
.btn-white-solid:focus {
    background: transparent;
    color: var(--white);
}

.btn-white-solid:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Services Section - Two Categories */
.error-services {
    padding: 3.5rem 0;
    background: var(--light-grey);
}

.error-services .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.error-services .section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-text);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.error-services .section-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 0;
}

/* Service Categories */
.service-category {
    margin-bottom: 2.5rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.category-header h3 {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-line {
    flex: 1;
    max-width: 80px;
    height: 2px;
    background: var(--primary);
    opacity: 0.4;
}

/* Service Links Grid */
.error-services .service-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.error-services .service-links.design-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 1rem;
    background: var(--white);
    border-radius: 8px;
    text-decoration: none;
    color: var(--secondary);
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(34, 28, 88, 0.06);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.service-link:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(34, 28, 88, 0.1);
    transform: translateY(-2px);
}

.service-link:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.service-link svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Blog Section */
.error-blog {
    padding: 3rem 0;
    background: var(--white);
}

.error-blog .section-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.error-blog .section-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.error-blog .section-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 0;
}

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

.blog-link {
    display: block;
    padding: 1.25rem;
    background: var(--light-grey);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.blog-link:hover {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(34, 28, 88, 0.08);
}

.blog-link:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.blog-link-category {
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-link-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link:hover .blog-link-title {
    color: var(--primary-text);
}

.blog-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-text);
}

/* 404 Responsive */
@media (max-width: 48rem) {
    .error-hero {
        min-height: auto;
        padding: 5rem 1rem 2.5rem;
    }

    .error-hero .viewfinder-frame {
        width: 180px;
        height: 120px;
    }

    .error-code {
        font-size: 3.25rem;
    }

    .error-title {
        font-size: 1.75rem;
    }

    .error-text {
        font-size: 1.1rem;
    }

    .error-services .service-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .error-services .service-links.design-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .error-blog .blog-links {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 30rem) {
    .error-hero {
        padding: 4.5rem 1rem 2rem;
    }

    .error-hero .viewfinder-frame {
        width: 160px;
        height: 105px;
    }

    .error-code {
        font-size: 2.75rem;
        letter-spacing: 0.25rem;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .error-text {
        font-size: 1rem;
    }

    .error-hero .viewfinder {
        margin-bottom: 2rem;
    }

    .error-buttons {
        flex-direction: column;
        align-items: center;
    }

    .error-buttons .btn {
        width: 100%;
        max-width: 260px;
    }

    .error-services .service-links,
    .error-services .service-links.design-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .error-services,
    .error-blog {
        padding: 2.5rem 0;
    }
}

/* 404 Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .error-hero .viewfinder-rec::before {
        animation: none;
    }

    .error-services .service-link,
    .error-blog .blog-link {
        transition: none;
    }

    .error-services .service-link:hover,
    .error-blog .blog-link:hover {
        transform: none;
    }
}


/* ========================================
   AIRBNB / SHORT-TERM RENTAL PAGE
   ======================================== */

/* 3-column grid utility for What's Included section */
.why-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .why-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid-3col {
        grid-template-columns: 1fr;
    }
}

/* Alternative service link box */
.service-alt-link {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.service-alt-link p {
    font-size: 1.125rem;
    margin: 0;
    color: var(--text-color);
}

.service-alt-link a {
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.service-alt-link a:hover,
.service-alt-link a:focus {
    color: var(--primary);
}

.service-alt-link a svg {
    width: 1em;
    height: 1em;
    transition: transform 0.2s ease;
}

.service-alt-link a:hover svg,
.service-alt-link a:focus svg {
    transform: translateX(4px);
}

/* Preparation checklist */
.prep-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.prep-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.prep-checklist li:last-child {
    border-bottom: none;
}

.prep-checklist .check-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.prep-checklist strong {
    color: var(--heading-color);
}

/* ========================================
   AREA LANDING PAGES
   ======================================== */

/* Area page hero - image-focused */
.area-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.area-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #2d2d2d; /* Dark placeholder for hero */
}

.area-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.area-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 5%;
    color: #fff;
    max-width: 800px;
}

.area-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.area-hero-content p {
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.area-hero .breadcrumb {
    color: rgba(255,255,255,0.8);
}

.area-hero .breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.area-hero .breadcrumb a:hover {
    color: #fff;
}

/* Hero section tag - light style for dark background */
.section-tag-light {
    color: var(--primary);
    background: rgba(255,255,255,0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

/* Property type cards */
.property-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.property-type-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.property-type-card picture {
    display: block;
    background-color: #f0f0f0; /* Placeholder while image loads */
}

.property-type-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.property-type-card-content {
    padding: 1.5rem;
}

.property-type-card h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

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

/* Stats highlight for area */
.area-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.area-stat {
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.area-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.area-stat-label {
    color: var(--text-grey);
    font-size: 0.95rem;
}

/* Stats section subheadings */
.stats-subheading {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-size: 1.25rem;
}

.area-stats-spaced {
    margin-bottom: 3rem;
}

.stats-source {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--text-grey);
}

/* Services grid for area */
.area-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.area-service-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.area-service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(45,138,107,0.1);
}

.area-service-card h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.area-service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.area-service-card .price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-grey);
}

/* Nearby areas */
.nearby-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.nearby-area-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--light-grey);
    border-radius: 50px;
    color: #333;
    font-size: 0.95rem;
}

/* Active area tag - current page indicator */
.nearby-area-tag--active {
    background: var(--primary);
    color: #fff;
}

/* Clickable area tag - link styling */
a.nearby-area-tag {
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease;
}

a.nearby-area-tag:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Content with image - alternating layout */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

.content-split-image {
    border-radius: 12px;
    overflow: hidden;
    max-height: 450px;
    background-color: #f0f0f0; /* Placeholder while image loads */
}

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

/* Consistent spacing for content sections */
.content-split-text .section-tag {
    margin-bottom: 1rem;
    display: inline-block;
}

.content-split-text h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.content-split-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-split-text p:last-child {
    margin-bottom: 0;
}

/* Local tip closing tagline */
.local-tip-tagline {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

/* ===========================================
   AREA PAGES - RESPONSIVE BREAKPOINTS
   =========================================== */

/* Large tablets and small desktops (1024px) */
@media (max-width: 64rem) {
    .area-hero {
        height: 60vh;
        min-height: 450px;
    }

    .content-split {
        gap: 3rem;
    }

    .area-stats {
        gap: 1.5rem;
    }

    .property-types-grid {
        gap: 1.5rem;
    }
}

/* Tablets (900px) */
@media (max-width: 56.25rem) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-split.reverse {
        direction: ltr;
    }
}

/* Small tablets (768px) */
@media (max-width: 48rem) {
    .area-hero {
        height: 55vh;
        min-height: 400px;
    }

    .area-hero-content {
        padding: 2rem 5%;
    }

    .area-hero-content p {
        font-size: 1.1rem;
    }

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

    .property-type-card img {
        height: 200px;
    }

    .area-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .area-stat {
        padding: 1.5rem 1rem;
    }

    .area-stat-number {
        font-size: 2rem;
    }

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

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

    .content-split-image {
        max-height: 350px;
    }

    .nearby-area-tag {
        padding: 0.4rem 1rem;
        font-size: 0.875rem;
    }

    .stats-subheading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .area-stats-spaced {
        margin-bottom: 2rem;
    }

    .stats-source {
        margin-top: 1.5rem;
        font-size: 0.8rem;
    }

    .local-tip-tagline {
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .section-tag-light {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Large phones (576px) */
@media (max-width: 36rem) {
    .area-hero {
        height: 50vh;
        min-height: 350px;
    }

    .area-hero-content {
        padding: 1.5rem 4%;
    }

    .area-hero-content p {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .area-hero .breadcrumb {
        font-size: 0.8rem;
    }

    .area-stats {
        grid-template-columns: 1fr 1fr;
    }

    .area-stat {
        padding: 1.25rem 0.75rem;
    }

    .area-stat-number {
        font-size: 1.75rem;
    }

    .area-stat-label {
        font-size: 0.8rem;
    }

    .property-type-card-content {
        padding: 1.25rem;
    }

    .property-type-card h3 {
        font-size: 1.1rem;
    }

    .property-type-card p {
        font-size: 0.9rem;
    }

    .content-split-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .content-split-text p {
        font-size: 0.95rem;
    }

    .content-split-image {
        max-height: 300px;
    }

    .area-service-card .price {
        font-size: 1.25rem;
    }

    .nearby-areas {
        gap: 0.5rem;
    }

    .nearby-area-tag {
        padding: 0.35rem 0.875rem;
        font-size: 0.8rem;
    }

    .stats-subheading {
        font-size: 1rem;
    }

    .stats-source {
        font-size: 0.75rem;
    }

    .local-tip-tagline {
        font-size: 1rem;
    }
}

/* Small phones (400px) */
@media (max-width: 25rem) {
    .area-hero {
        min-height: 300px;
    }

    .area-hero-content h1 {
        font-size: 1.75rem;
    }

    .area-hero-content p {
        font-size: 0.9rem;
    }

    .area-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .area-stat {
        padding: 1rem;
    }

    .area-stat-number {
        font-size: 1.5rem;
    }

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

    .property-type-card img {
        height: 180px;
    }
}

/* ========================================
   PPC LANDING PAGE OPTIMIZATIONS
   Integrated Hero Offer Card & CTAs
   ======================================== */

/* Hero Offer Card - Glass effect container */
.hero-offer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.25rem 2rem;
    margin: 1.5rem auto 2rem;
    max-width: 480px;
}

.hero-offer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-offer-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.hero-offer-divider {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.hero-offer-delivery {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-offer-trust {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
}

.hero-trust-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Hero CTA Row */
.hero-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* Green solid button for phone CTA */
.btn-green-solid {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-green-solid:hover {
    background: var(--primary-dark, #3a9e7a);
    border-color: var(--primary-dark, #3a9e7a);
}

.btn-green-solid:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

/* Sticky CTA Bar (Mobile) */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(34, 28, 88, 0.1);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-book {
    flex: 1;
    max-width: 160px;
    padding: 0.75rem 1.25rem;
    background: var(--secondary);
    color: var(--white);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
}

.sticky-cta-book:hover {
    background: var(--primary);
}

.sticky-cta-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sticky-cta-phone:hover {
    background: var(--primary-dark, #3a9e7a);
}

.sticky-cta-phone svg {
    flex-shrink: 0;
}

.sticky-cta-price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.875rem;
}

/* Hide sticky bar on larger screens - use regular CTAs */
@media (min-width: 64rem) {
    .sticky-cta-bar {
        display: none;
    }
}

/* Responsive adjustments for hero offer card */
@media (max-width: 48rem) {
    .hero-offer-card {
        padding: 1rem 1.25rem;
        margin: 1.25rem auto 1.5rem;
    }

    .hero-offer-main {
        gap: 0.75rem;
    }

    .hero-offer-price {
        font-size: 1.25rem;
    }

    .hero-offer-delivery {
        font-size: 0.9rem;
    }

    .hero-offer-trust {
        gap: 0.5rem;
    }

    .hero-trust-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-row .btn,
    .hero-cta-row .btn-green-solid {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 30rem) {
    .hero-offer-card {
        padding: 0.875rem 1rem;
        border-radius: 0.75rem;
    }

    .hero-offer-main {
        flex-direction: column;
        gap: 0.25rem;
    }

    .hero-offer-divider {
        display: none;
    }

    .hero-offer-price {
        font-size: 1.375rem;
    }

    .hero-offer-delivery {
        font-size: 0.85rem;
    }

    .hero-offer-trust {
        gap: 0.375rem;
    }

    .hero-trust-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .sticky-cta-bar {
        padding: 0.625rem 0.75rem;
        gap: 0.5rem;
    }

    .sticky-cta-phone {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .sticky-cta-book {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .sticky-cta-price {
        display: none;
    }
}
