:root {
    /* Premium Brand Colours */
    --primary-navy: #0a1f3d; /* Darker, richer navy */
    --primary-navy-light: #162e52;
    --accent-gold: #d4af37; /* Metallic gold */
    --accent-gold-light: #e5c158;
    --accent-gold-gradient: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
    
    /* Neutrals */
    --bg-body: #ffffff;
    --bg-secondary: #f8f9fa; /* Ultra light grey */
    --bg-tertiary: #e9ecef;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --text-light: #ffffff;
    
    /* Typography */
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing System (8px grid) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-6: 48px;
    --space-8: 64px;
    --space-12: 96px;
    
    /* Layout */
    --container-max: 1280px;
    --header-height: 90px;
    
    /* Elevation & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    --radius-sm: 2px; /* Sharper for professional look */
    --radius-md: 4px;
    --radius-lg: 8px;
    
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* CMS Image Loading - Hide hardcoded images until JS loads correct ones */
.product-image-showcase img,
.product-image-showcase video,
.product-hero > img,
.product-hero > video {
    opacity: 0 !important;
    transition: opacity 0.3s ease;
}

/* Loading placeholder for images */
.image-loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-6);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    min-height: 200px;
    grid-column: span 2;
}

.image-loading-placeholder i {
    width: 48px;
    height: 48px;
    opacity: 0.5;
    animation: pulse 1.5s ease-in-out infinite;
}

.image-loading-placeholder span {
    font-size: 0.9rem;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Hide placeholder when images loaded */
.product-image-showcase.images-loaded .image-loading-placeholder {
    display: none;
}

/* Only show images/videos after JS has loaded the correct sources */
.product-image-showcase.images-loaded img,
.product-image-showcase.images-loaded video,
.product-hero.images-loaded > img,
.product-hero.images-loaded > video {
    opacity: 1 !important;
}

.product-card img {
    transition: opacity 0.3s ease;
}

.product-card.images-loaded img {
    opacity: 1;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: var(--space-3); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--space-2); }
h3 { font-size: 1.5rem; margin-bottom: var(--space-2); }

p { margin-bottom: var(--space-3); max-width: 70ch; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease-out); }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; }

/* 2. Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-3);
    box-sizing: border-box;
    min-width: 0;
}

.section {
    padding: var(--space-12) 0;
    overflow: hidden;
}

.section-sm {
    padding: var(--space-8) 0;
}

.bg-light { background-color: var(--bg-secondary); }
.bg-navy { background-color: var(--primary-navy); color: var(--text-light); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); min-width: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); min-width: 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); min-width: 0; }

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

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }

/* 3. Component: Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-gold-gradient);
    color: var(--primary-navy);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    border: 1px solid currentColor;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.btn-text {
    padding: 0;
    background: none;
    color: var(--accent-gold);
    border-bottom: 1px solid transparent;
    border-radius: 0;
}

.btn-text:hover {
    border-bottom-color: var(--accent-gold);
}

/* 4. Component: Navbar */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s var(--ease-out), padding 0.3s var(--ease-out);
    padding: var(--space-3) 0;
    background: var(--primary-navy); /* Always visible */
}

.header.scrolled {
    background: rgba(10, 31, 61, 0.98);
    backdrop-filter: blur(10px);
    padding: var(--space-2) 0;
    box-shadow: var(--shadow-sm);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.logo span { color: var(--accent-gold); }

.nav-list {
    display: flex;
    gap: var(--space-4);
    align-items: center;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover { color: var(--text-light); }
.nav-link:hover::after { width: 100%; }

/* Mobile Menu Toggle */
.hamburger { 
    display: none; 
    color: white; 
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 8px;
}

/* 5. Section: Hero */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    background-image: linear-gradient(to right, rgba(10,31,61,0.9) 0%, rgba(10,31,61,0.6) 50%, rgba(10,31,61,0.2) 100%), url('../assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s var(--ease-out);
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-display);
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

/* 6. Section: Features (Icon Grid) */
.feature-card {
    background: var(--bg-body);
    padding: var(--space-4);
    border: 1px solid var(--bg-tertiary);
    transition: all 0.3s var(--ease-out);
    height: 100%;
}

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

.feature-icon {
    color: var(--accent-gold);
    margin-bottom: var(--space-3);
}

/* 7. Section: Products (Image Cards) */
.product-card {
    position: relative;
    group: isolate;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.product-img-wrapper {
    height: 350px; /* Taller, more dramatic images */
    overflow: hidden;
    position: relative;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-4);
    background: linear-gradient(to top, rgba(10,31,61,0.95), transparent);
    color: var(--text-light);
    transform: translateY(20px);
    transition: transform 0.3s var(--ease-out);
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-title {
    color: var(--text-light);
    margin-bottom: var(--space-1);
}

.product-desc {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: var(--space-2);
}

/* Product Info Panel (Products Page) */
.product-info {
    background: var(--bg-body);
    padding: var(--space-3);
    border: 1px solid var(--bg-tertiary);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.product-info .product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: var(--space-2);
    display: block;
    opacity: 1;
    line-height: 1.5;
}

.product-info .product-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    width: fit-content;
}

.product-info .product-time i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Product card with info has different layout */
.product-card:has(.product-info) {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:has(.product-info):hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-card:has(.product-info) .product-img-wrapper {
    height: 180px;
    border-radius: 0;
}

.product-card:has(.product-info) .product-img-wrapper .product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-3);
    background: linear-gradient(to top, rgba(10,31,61,0.95), rgba(10,31,61,0.7) 60%, transparent);
    transform: translateY(0);
}

.product-card:has(.product-info) .product-title {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.product-card:has(.product-info) .product-overlay p {
    font-size: 0.8rem;
    opacity: 0.85;
}

/* Call Now Banner */
.call-now-banner {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #162e52 100%);
    padding: var(--space-5) 0;
    position: relative;
    overflow: hidden;
}

.call-now-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10S0 14.5 0 20s4.5 10 10 10 10-4.5 10-10zm10 0c0 5.5 4.5 10 10 10s10-4.5 10-10-4.5-10-10-10-10 4.5-10 10z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.call-now-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.call-now-text {
    text-align: center;
}

.call-now-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--space-1);
}

.call-now-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.call-now-phone {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-now-phone:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.call-now-phone .phone-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c9a227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.call-now-phone .phone-icon i {
    color: white;
    width: 24px;
    height: 24px;
}

.call-now-phone .phone-details {
    display: flex;
    flex-direction: column;
}

.call-now-phone .phone-label {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.call-now-phone .phone-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.call-now-divider {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.call-now-divider::before,
.call-now-divider::after {
    content: '';
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.call-now-book {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c9a227 100%);
    color: var(--primary-navy);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.call-now-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.call-now-book i {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .call-now-banner {
        padding: var(--space-4) 0;
    }
    
    .call-now-content {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .call-now-text h3 {
        font-size: 1.25rem;
    }
    
    .call-now-phone {
        width: 100%;
        max-width: 320px;
        padding: var(--space-4);
        justify-content: center;
    }
    
    .call-now-phone .phone-number {
        font-size: 1.4rem;
    }
    
    .call-now-phone .phone-icon {
        width: 48px;
        height: 48px;
    }
    
    .call-now-phone .phone-icon i {
        width: 22px;
        height: 22px;
    }
    
    .call-now-book {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: var(--space-3) var(--space-4);
    }
    
    .call-now-divider {
        display: none;
    }
}

/* 8. Section: CTA/Banner */
.cta-section {
    background-color: var(--primary-navy);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+');
    opacity: 0.3;
}

/* 9. Footer */
.footer {
    background-color: #051124; /* Even darker navy */
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding-top: var(--space-8);
    padding-bottom: var(--space-4);
}

.footer h4 {
    color: var(--text-light);
    margin-bottom: var(--space-3);
    font-size: 1.1rem;
}

.footer a {
    display: block;
    margin-bottom: var(--space-2);
    transition: color 0.2s;
}

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

.footer-bottom {
    margin-top: var(--space-8);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
}

/* Internal Page Specifics */
.page-header {
    background-color: var(--bg-secondary);
    padding: var(--space-12) 0 var(--space-6);
    margin-top: var(--header-height);
}

.breadcrumb {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: var(--space-2);
}

/* Product Navigation - Full Width Seamless Bar */
.product-nav-wrapper {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0d2847 100%);
    border-bottom: 3px solid var(--accent-gold);
    position: sticky;
    top: var(--header-height);
    z-index: 50;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-nav {
    background: transparent;
    padding: var(--space-3) 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.product-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-2);
}

.product-nav-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-nav-title i {
    color: var(--accent-gold);
}

.product-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    text-decoration: none;
}

.product-nav-link:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.product-nav-link.active {
    background: var(--accent-gold);
    color: var(--navy-dark);
    font-weight: 600;
}

/* Legacy sidebar styles - hidden on desktop now */
.sidebar-menu {
    display: none;
}

.sidebar-link {
    display: block;
    padding: var(--space-3);
    border-bottom: 1px solid var(--bg-tertiary);
    font-weight: 500;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: var(--bg-secondary);
    color: var(--primary-navy);
    border-left: 3px solid var(--accent-gold);
}

/* Product Layout - Single Column (nav is above content now) */
.product-layout {
    display: block;
}

.product-layout aside {
    display: none;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Media Queries */

/* Large tablets and small desktops */
@media (max-width: 992px) {
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    
    .product-img-wrapper { height: 280px; }
    
    .section { padding: var(--space-8) 0; }
    .section-sm { padding: var(--space-6) 0; }
    
    /* Stack sidebar layout on product pages */
    .product-layout {
        grid-template-columns: 1fr !important;
        gap: var(--space-4);
    }
    
    .sidebar-menu {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-1);
    }
    
    .sidebar-link {
        padding: var(--space-2);
        border: 1px solid var(--bg-tertiary);
        border-radius: var(--radius-sm);
        font-size: 0.85rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .section { padding: var(--space-6) 0; }
    .section-sm { padding: var(--space-4) 0; }
    
    .container { padding: 0 var(--space-2); }
    
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: var(--space-3); }
    
    .header { 
        background: var(--primary-navy); 
        padding: var(--space-2) 0;
        top: 0;
    }
    
    .header .container {
        padding: 0 var(--space-3);
    }
    
    .hamburger { 
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        margin-left: 8px;
    }
    
    .hamburger i {
        width: 24px;
        height: 24px;
    }
    
    .logo { font-size: 1.25rem; }
    
    /* Group right-side header elements */
    .header .flex-between {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .header nav {
        display: contents;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--primary-navy);
        flex-direction: column;
        padding: calc(var(--header-height) + var(--space-4)) var(--space-4) var(--space-4);
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        -webkit-transition: -webkit-transform 0.3s ease-out;
        -ms-transition: -ms-transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        z-index: 999;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
        will-change: transform;
    }
    
    .nav-list.active { 
        -webkit-transform: translate3d(0, 0, 0); 
        -ms-transform: translate3d(0, 0, 0); 
        transform: translate3d(0, 0, 0); 
    }
    
    .nav-link {
        display: block;
        padding: var(--space-3) 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 1.1rem;
    }
    
    /* Hero mobile fixes */
    .hero { 
        height: auto; 
        min-height: auto;
        padding: calc(var(--header-height) + var(--space-6)) 0 var(--space-8);
        background-attachment: scroll; /* Fix for iOS */
    }
    
    /* Footer mobile improvements */
    .footer {
        padding-top: var(--space-6);
    }
    
    .footer .grid-4 {
        gap: var(--space-4);
    }
    
    .footer h4 {
        margin-bottom: var(--space-2);
        font-size: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2);
        margin-top: var(--space-4);
    }
    
    .footer-location {
        text-align: center;
        padding: var(--space-3);
        background: rgba(255,255,255,0.05);
        border-radius: var(--radius-md);
    }
    
    /* Product cards mobile - 2 columns on tablet */
    .product-card {
        margin-bottom: var(--space-2);
    }
    
    .product-img-wrapper {
        height: 220px;
    }
    
    /* Button improvements for touch */
    .btn {
        padding: 14px 24px;
        min-height: 48px;
        font-size: 0.85rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Feature cards stack nicely */
    .feature-card {
        padding: var(--space-3);
        text-align: center;
    }
    
    .feature-icon {
        margin-bottom: var(--space-2);
    }
    
    /* Page header mobile */
    .page-header {
        padding: calc(var(--header-height) + var(--space-4)) 0 var(--space-4);
    }
    
    /* Fitting times mobile */
    .fitting-times {
        padding: var(--space-3);
    }
    
    .fitting-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }
    
    .fitting-item {
        padding: var(--space-2);
    }
    
    .fitting-item h4 {
        font-size: 0.85rem;
    }
}

/* Small mobile - 2 columns for products */
@media (max-width: 576px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2);
    }
    
    .product-img-wrapper {
        height: 160px;
    }
    
    .product-title {
        font-size: 0.95rem;
    }
    
    .product-overlay {
        padding: var(--space-2);
    }
    
    .product-overlay p {
        font-size: 0.75rem;
        display: none;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .container {
        padding: 0 12px;
    }
    
    /* Area cards 2 columns */
    .area-card {
        padding: var(--space-3);
    }
    
    .area-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content { 
        max-width: 100%; 
        padding: 0 var(--space-2);
    }
    
    .hero-subtitle { font-size: 0.75rem; letter-spacing: 0.15em; }
    
    .hero p { font-size: 1rem; }
    
    .hero-actions { 
        flex-direction: column; 
        width: 100%;
        gap: var(--space-2);
    }
    
    .hero-actions .btn { 
        width: 100%; 
        text-align: center;
        padding: 14px 24px;
    }
    
    /* Fix header layout on mobile */
    .header .flex-between {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .flex-between { flex-direction: column; gap: var(--space-3); align-items: flex-start; }
    
    /* Product cards */
    .product-img-wrapper { height: 220px; }
    .product-overlay { padding: var(--space-3); }
    
    /* Feature cards */
    .feature-card { padding: var(--space-3); }
    
    /* Page header */
    .page-header { 
        padding: var(--space-6) 0 var(--space-4); 
        margin-top: var(--header-height);
    }
    
    /* Buttons */
    .btn { 
        padding: 14px 24px; 
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer { padding-top: var(--space-6); }
    .footer-bottom { 
        flex-direction: column; 
        text-align: center; 
        gap: var(--space-2);
        margin-top: var(--space-4);
    }
    
    /* Gallery grids */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--space-2) !important;
    }
    
    .gallery-grid img {
        height: 150px !important;
    }
}

/* Small phones */
@media (max-width: 480px) {
    :root {
        --header-height: 60px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .container { padding: 0 var(--space-2); }
    
    .section { padding: var(--space-4) 0; }
    
    .logo { font-size: 1.1rem; }
    
    .hamburger { width: 40px; height: 40px; }
    
    .hero { 
        padding: calc(var(--header-height) + var(--space-4)) 0 var(--space-6);
    }
    
    .hero-subtitle { font-size: 0.7rem; }
    
    .product-img-wrapper { height: 180px; }
    
    .btn { 
        padding: 12px 20px; 
        font-size: 0.8rem;
        letter-spacing: 0.05em;
    }
    
    /* Sidebar as horizontal scroll on very small screens */
    .sidebar-menu {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: var(--space-2);
        gap: var(--space-1);
    }
    
    .sidebar-link {
        flex-shrink: 0;
        white-space: nowrap;
        padding: var(--space-2);
        font-size: 0.8rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-grid img {
        height: 200px !important;
    }
    
    /* CTA section */
    .cta-section .container { padding: var(--space-3); }
    .cta-section h2 { font-size: 1.5rem; }
    
    /* Footer columns */
    .footer .grid-4 { gap: var(--space-4); }
}

/* Product Page Hero Image */
.product-hero {
    position: relative;
    height: 350px;
    margin-top: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.product-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    background: linear-gradient(to top, rgba(10, 31, 61, 0.95) 0%, rgba(10, 31, 61, 0.7) 50%, transparent 100%);
    color: white;
}

.product-hero-overlay h1 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-2);
}

.product-hero-overlay .breadcrumb {
    margin-bottom: var(--space-2);
}

.product-hero-overlay .breadcrumb a {
    color: var(--accent-gold);
}

.product-hero-overlay .breadcrumb a:hover {
    text-decoration: underline;
}

/* Product Content with Image Gallery */
.product-image-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin: var(--space-4) 0;
}

.product-image-showcase img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-image-showcase img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.product-image-showcase img:first-child {
    grid-column: span 2;
    height: 280px;
}

/* Feature list with icons */
.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin: var(--space-4) 0;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-3);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.feature-list-item i {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.feature-list-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-list-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .product-hero { height: 280px; }
    .product-hero-overlay { padding: var(--space-4); }
    .product-image-showcase { grid-template-columns: 1fr; }
    .product-image-showcase img:first-child { grid-column: span 1; height: 200px; }
    .feature-list { grid-template-columns: 1fr; }
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile menu overlay */
.nav-list::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: -1;
}

.nav-list.active::before {
    opacity: 1;
}

/* Local Expert Section */
.local-expert-section {
    padding: var(--space-8) 0;
    background: transparent;
}

.local-expert-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.local-expert-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10, 31, 61, 0.12);
}

.local-expert-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.local-expert-text h2 {
    margin-top: var(--space-2);
    margin-bottom: var(--space-3);
    color: var(--navy);
    font-size: 2rem;
}

.local-expert-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.expert-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-5) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.expert-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.expert-benefits li i {
    color: var(--gold);
    flex-shrink: 0;
}

.local-expert-text .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .local-expert-section {
        padding: var(--space-6) var(--space-4);
    }
    
    .local-expert-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-5);
    }
    
    .local-expert-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .expert-benefits {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto var(--space-4);
        text-align: left;
    }
    
    .local-expert-text h2 {
        font-size: 1.5rem;
    }
    
    .local-expert-text p {
        font-size: 0.95rem;
    }
}

/* Premium Promo Ribbon */
.promo-ribbon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(10, 31, 61, 0.95) 0%, rgba(22, 46, 82, 0.95) 100%);
    position: relative;
    overflow: hidden;
    animation: floatIn 0.6s var(--ease-out) 0.15s both;
}

.promo-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.08) 25%, 
        rgba(212, 175, 55, 0.15) 50%, 
        rgba(212, 175, 55, 0.08) 75%, 
        transparent 100%);
    animation: shimmer 4s ease-in-out infinite;
}

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

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(197, 160, 40, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    transition: all 0.3s var(--ease-out);
}

.promo-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
    border-color: rgba(212, 175, 55, 0.6);
}

.promo-badge .promo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c5a028 100%);
    border-radius: 10px;
    color: var(--primary-navy);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.promo-badge .promo-icon i {
    width: 22px;
    height: 22px;
}

.promo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.promo-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-family: var(--font-display);
}

.promo-headline {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-light);
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

.promo-headline .gold {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .promo-ribbon {
        padding: 20px 16px;
    }
    
    .promo-content {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .promo-badge {
        padding: 12px 20px;
        gap: 12px;
        border-radius: 50px;
        min-width: auto;
        max-width: none;
    }
    
    .promo-badge .promo-icon {
        width: 36px;
        height: 36px;
    }
    
    .promo-badge .promo-icon i {
        width: 16px;
        height: 16px;
    }
    
    .promo-eyebrow {
        font-size: 0.6rem;
    }
    
    .promo-headline {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .promo-ribbon {
        padding: 16px;
    }
    
    .promo-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .promo-badge {
        width: auto;
        padding: 10px 24px;
        justify-content: center;
    }
}

/* Nav Phone Link */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: var(--space-2);
}

.nav-phone i {
    animation: pulse 2s infinite;
}

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

/* Mobile Header Actions - Phone, Booking & Menu Icons */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.mobile-header-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c5a028 100%);
    color: var(--primary-navy);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s var(--ease-out);
}

.mobile-header-actions a:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.mobile-header-actions a i {
    width: 20px;
    height: 20px;
}

.mobile-header-actions .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c5a028 100%);
    color: var(--primary-navy);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s var(--ease-out);
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

.mobile-header-actions .hamburger:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.mobile-header-actions .hamburger i {
    width: 22px;
    height: 22px;
}

@media (max-width: 992px) {
    .nav-phone {
        display: none;
    }
    
    .mobile-header-actions {
        display: flex;
    }
    
    .nav-phone-mobile {
        display: flex !important;
        background: var(--accent-gold);
        color: var(--primary-navy);
        padding: 12px 20px;
        border-radius: var(--radius-sm);
        margin: var(--space-2) 0;
        font-weight: 700;
        justify-content: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 0 var(--space-2);
    }
    
    .mobile-header-actions {
        gap: 6px;
        margin-right: 4px;
    }
    
    .mobile-header-actions a,
    .mobile-header-actions .hamburger {
        width: 38px;
        height: 38px;
    }
    
    .mobile-header-actions a i,
    .mobile-header-actions .hamburger i {
        width: 18px;
        height: 18px;
    }
    
    .logo {
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

@media (max-width: 380px) {
    .logo {
        font-size: 0.75rem;
    }
    
    .mobile-header-actions a,
    .mobile-header-actions .hamburger {
        width: 36px;
        height: 36px;
    }
    
    .mobile-header-actions a i,
    .mobile-header-actions .hamburger i {
        width: 17px;
        height: 17px;
    }
}

/* Fitting Timeframes Section */
.fitting-times {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    margin: var(--space-4) 0;
}

.fitting-times h3 {
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.fitting-times h3 i {
    color: var(--accent-gold);
}

.fitting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-3);
}

.fitting-item {
    background: white;
    padding: var(--space-3);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-gold);
}

.fitting-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--primary-navy);
}

.fitting-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.fitting-item .time {
    font-weight: 700;
    color: var(--primary-navy);
}

/* Fitting Gallery Section */
/* Premium Fitting Gallery */
.fitting-gallery-section {
    background: linear-gradient(180deg, #f8f6f3 0%, #f0ebe4 100%);
    padding: var(--space-8) 0;
    position: relative;
    overflow: hidden;
}

.fitting-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.fitting-gallery-section .container {
    position: relative;
    z-index: 1;
}

.fitting-gallery-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.fitting-gallery-header .gallery-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c9a227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.fitting-gallery-header .gallery-icon i {
    color: white;
    width: 28px;
    height: 28px;
}

.fitting-gallery-header h2 {
    color: var(--primary-navy);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: var(--space-2);
    font-weight: 700;
}

.fitting-gallery-header p {
    color: var(--text-muted);
    max-width: 450px;
    margin: 0 auto;
    font-size: 1rem;
}

.fitting-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-4);
    min-width: 0;
}

.fitting-gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: 3px solid transparent;
}

.fitting-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.fitting-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.fitting-gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 31, 61, 0.9) 100%);
    z-index: 1;
    transition: opacity 0.3s;
}

.fitting-gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-4);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fitting-gallery-item .caption::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent-gold);
    flex-shrink: 0;
}

.fitting-gallery-item .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: transform 0.3s var(--ease-out);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.fitting-gallery-item .zoom-icon i {
    color: var(--primary-navy);
    width: 22px;
    height: 22px;
}

.fitting-gallery-item:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

.fitting-gallery-empty {
    text-align: center;
    padding: var(--space-6);
    background: white;
    border: 2px dashed rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-md);
    grid-column: 1 / -1;
}

.fitting-gallery-empty i {
    color: var(--accent-gold);
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-3);
    opacity: 0.6;
}

.fitting-gallery-empty p {
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 var(--space-1);
}

.fitting-gallery-empty span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Lightbox for gallery images */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: var(--space-2);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: var(--space-3);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .fitting-gallery-section {
        padding: var(--space-6) 0;
    }
    
    .fitting-gallery-header .gallery-icon {
        width: 50px;
        height: 50px;
    }
    
    .fitting-gallery-header .gallery-icon i {
        width: 24px;
        height: 24px;
    }
    
    .fitting-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
    
    .fitting-gallery-item {
        aspect-ratio: 1;
    }
    
    .fitting-gallery-item .caption {
        padding: var(--space-3);
        font-size: 0.9rem;
    }
    
    .fitting-gallery-item .zoom-icon {
        width: 40px;
        height: 40px;
    }
    
    .fitting-gallery-item .zoom-icon i {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .fitting-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .fitting-gallery-item {
        aspect-ratio: 4/3;
    }
}

/* ========================================
   CONTACT FORM SECTION (Area Pages)
   ======================================== */

.contact-form-section {
    position: relative;
    padding: var(--space-8) 0;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a5c 50%, var(--primary-navy-light) 100%);
    z-index: 0;
}

.contact-form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    z-index: 1;
}

.contact-form-section .container {
    position: relative;
    z-index: 2;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.contact-form-content {
    color: var(--text-light);
}

.contact-form-content h2 {
    color: var(--text-light);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-3);
}

.contact-form-content h2 .gold {
    color: var(--accent-gold);
}

.contact-form-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-4);
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.9);
}

.contact-feature i {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-1);
    color: var(--primary-navy);
}

.contact-form-wrapper .form-subtitle {
    color: var(--text-muted);
    margin-bottom: var(--space-4);
    font-size: 0.95rem;
}

.contact-form .form-group {
    margin-bottom: var(--space-3);
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary-navy);
    font-size: 0.9rem;
}

.contact-form input {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.contact-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.contact-form input::placeholder {
    color: #aaa;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.contact-form .btn-submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--accent-gold-gradient);
    color: var(--primary-navy);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.contact-form .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-form .form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: var(--space-3);
}

#form-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-3);
    font-weight: 500;
}

@media (max-width: 992px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .contact-form-content {
        text-align: center;
    }
    
    .contact-features {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: var(--space-6) 0;
    }
    
    .contact-form-wrapper {
        padding: var(--space-4);
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form .btn-submit {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* ========================================
   MULTI-IMAGE GRID (Admin Product Images)
   ======================================== */

.multi-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-3);
}

.multi-image-item {
    position: relative;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: grab;
}

.multi-image-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.multi-image-item.dragging {
    opacity: 0.5;
    cursor: grabbing;
}

.multi-image-item .image-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f0f0;
}

.multi-image-item .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.multi-image-item:hover .image-wrapper img {
    transform: scale(1.05);
}

.multi-image-item .image-actions {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 4px;
    opacity: 1;
    z-index: 10;
}

@media (hover: hover) {
    .multi-image-item .image-actions {
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .multi-image-item:hover .image-actions {
        opacity: 1;
    }
}

.multi-image-item .image-actions button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.multi-image-item .image-actions .btn-delete {
    background: #dc3545;
    color: white;
}

.multi-image-item .image-actions .btn-delete:hover {
    background: #c82333;
    transform: scale(1.1);
}

.multi-image-item .image-order {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.multi-image-item .image-info {
    padding: 12px;
}

.multi-image-item .image-info input {
    width: 100%;
    padding: 8px;
    font-size: 0.85rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
}

.multi-image-item .image-info select {
    width: 100%;
    padding: 6px;
    font-size: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
}

.multi-image-item .image-hero-badge {
    position: absolute;
    bottom: 60px;
    left: 8px;
    background: var(--primary-navy);
    color: var(--accent-gold);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .multi-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2);
    }
    
    .multi-image-item .image-actions {
        opacity: 1;
    }
    
    .multi-image-item .image-info {
        padding: 8px;
    }
}

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

/* Upload zone hover state */
#product-upload-zone:hover,
#product-upload-zone.drag-over {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
    transform: scale(1.01);
}

/* ============ LIGHTBOX ============ */
#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    margin-top: var(--space-3);
    font-size: 1rem;
    text-align: center;
    max-width: 600px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
    z-index: 10;
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: var(--accent-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .lightbox-container {
        padding: 50px 15px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* ============ ENHANCED PRODUCT IMAGE SHOWCASE ============ */
.product-image-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-3);
    margin: var(--space-4) 0;
}

.product-image-showcase img,
.product-image-showcase video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: var(--navy);
}

.product-image-showcase img:hover,
.product-image-showcase video:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-image-showcase img:first-child,
.product-image-showcase video:first-child {
    grid-column: span 2;
    height: 350px;
}

/* Video play indicator overlay */
.product-image-showcase video {
    position: relative;
}

@media (max-width: 768px) {
    .product-image-showcase {
        grid-template-columns: 1fr 1fr;
    }
    
    .product-image-showcase img,
    .product-image-showcase video {
        height: 180px;
    }
    
    .product-image-showcase img:first-child,
    .product-image-showcase video:first-child {
        grid-column: span 2;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .product-image-showcase {
        grid-template-columns: 1fr;
    }
    
    .product-image-showcase img:first-child,
    .product-image-showcase video:first-child {
        grid-column: span 1;
        height: 200px;
    }
}

/* ============ RICH SEO CONTENT SECTIONS ============ */
.seo-content-section {
    background: white;
    padding: var(--space-4);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-top: var(--space-4);
}

.seo-content-section h2 {
    color: var(--primary-navy);
    margin-bottom: var(--space-3);
    font-size: 1.5rem;
}

.seo-content-section h3 {
    color: var(--primary-navy);
    margin: var(--space-4) 0 var(--space-2);
    font-size: 1.25rem;
}

.seo-content-section p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-3);
    margin: var(--space-4) 0;
}

.benefit-card {
    background: var(--bg-secondary);
    padding: var(--space-3);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-gold);
}

.benefit-card h4 {
    color: var(--primary-navy);
    margin-bottom: var(--space-1);
}

.benefit-card p {
    margin: 0;
    font-size: 0.95rem;
}

.local-service-box {
    background: linear-gradient(135deg, var(--primary-navy), #1a3a5c);
    color: white;
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin: var(--space-4) 0;
}

.local-service-box h3 {
    color: var(--accent-gold);
    margin-bottom: var(--space-2);
}

.local-service-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-3) 0;
}

.specs-table th,
.specs-table td {
    padding: var(--space-2) var(--space-3);
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specs-table th {
    background: var(--bg-secondary);
    color: var(--primary-navy);
    font-weight: 600;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.care-tips-list {
    list-style: none;
    padding: 0;
}

.care-tips-list li {
    padding: var(--space-2) 0;
    padding-left: var(--space-4);
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.care-tips-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

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

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin: var(--space-4) 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--bg-secondary);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

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

/* Enhanced FAQ styling */
.faq-section {
    margin-top: var(--space-5);
}

.faq-section h3 {
    color: var(--primary-navy);
    margin-bottom: var(--space-4);
    font-size: 1.4rem;
}

.faq-item {
    background: var(--bg-secondary);
    padding: var(--space-3);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-3);
    border-left: 3px solid var(--accent-gold);
    transition: transform 0.2s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-item h4 {
    color: var(--primary-navy);
    margin-bottom: var(--space-2);
    font-size: 1.05rem;
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* ===== Lead Capture Lightbox ===== */
.lead-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 61, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3);
    overflow-y: auto;
}

.lead-lightbox-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.lead-lightbox-close {
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    background: var(--primary-navy);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.lead-lightbox-close:hover {
    transform: scale(1.1);
    background: var(--accent-gold);
}

.lead-lightbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.lead-lightbox-image {
    position: relative;
    background: var(--bg-secondary);
}

.lead-lightbox-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-savings {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
}

.savings-tag {
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-md);
}

.lead-lightbox-form {
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lead-lightbox-form h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: var(--space-2);
}

.materials-note {
    color: var(--text-muted);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.materials-note i {
    color: var(--accent-gold);
}

.lightbox-form .form-group {
    margin-bottom: var(--space-2);
}

.lightbox-form input {
    width: 100%;
    padding: var(--space-2);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.lightbox-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.btn-full {
    width: 100%;
    padding: var(--space-2) var(--space-3);
    font-size: 1.1rem;
}

.lightbox-call {
    margin-top: var(--space-3);
    text-align: center;
    padding-top: var(--space-3);
    border-top: 1px solid #eee;
}

.lightbox-call p {
    color: var(--text-muted);
    margin-bottom: var(--space-2);
    font-size: 0.9rem;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-navy);
    color: white;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn-call:hover {
    background: var(--primary-navy-light);
}

.lightbox-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-3);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Gallery Lightbox Styles */
.lead-lightbox-gallery {
    max-width: 1000px;
    padding: 0;
    overflow: hidden;
}

.lightbox-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 500px;
}

.lightbox-gallery-side {
    background: var(--primary-navy);
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
}

.lightbox-main-image {
    position: relative;
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 300px;
}

.lightbox-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-image-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-2);
    pointer-events: none;
}

.lightbox-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    pointer-events: auto;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
}

.lightbox-nav-btn:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.lightbox-promo-badge {
    position: absolute;
    top: var(--space-2);
    left: var(--space-2);
}

.lightbox-promo-badge .savings-tag {
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-md);
}

.lightbox-thumbnails {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-3);
    overflow-x: auto;
    padding-bottom: var(--space-1);
}

.lightbox-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 55px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.lightbox-thumb:hover {
    opacity: 1;
}

.lightbox-thumb.active {
    border-color: var(--accent-gold);
    opacity: 1;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-materials {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-top: var(--space-3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lightbox-materials i {
    color: var(--accent-gold);
}

.lightbox-form-side {
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    background: white;
}

.lightbox-booking-wrapper {
    flex: 1;
}

.lightbox-booking-wrapper h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: var(--space-1);
}

.lightbox-form-subtitle {
    color: var(--text-muted);
    margin-bottom: var(--space-3);
    font-size: 0.9rem;
}

.lightbox-booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.lightbox-booking-form .form-group {
    margin-bottom: 0;
}

.lightbox-booking-form input,
.lightbox-booking-form select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.lightbox-booking-form input:focus,
.lightbox-booking-form select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.lightbox-booking-form .form-group:not(.form-row .form-group) {
    margin-bottom: var(--space-2);
}

.lightbox-booking-form button[type="submit"] {
    margin-top: var(--space-2);
}

.lightbox-call-section {
    margin-top: var(--space-3);
    padding-top: var(--space-3);
    border-top: 1px solid #eee;
    text-align: center;
}

.lightbox-call-section p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: var(--space-2);
}

.lightbox-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
    padding-top: var(--space-2);
    border-top: 1px solid #eee;
}

.lightbox-trust-badges span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.lightbox-trust-badges i {
    width: 14px;
    height: 14px;
    color: var(--accent-gold);
}

.lightbox-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lightbox-trust i {
    color: var(--accent-gold);
    width: 16px;
    height: 16px;
}

.form-success {
    text-align: center;
    padding: var(--space-4);
}

.form-success h4 {
    color: var(--primary-navy);
    margin: var(--space-2) 0;
}

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

/* Product Gallery with CTA overlay */
.product-gallery {
    margin: var(--space-4) 0;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-main:hover img {
    transform: scale(1.02);
}

.gallery-cta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 31, 61, 0.8));
    padding: var(--space-4) var(--space-3) var(--space-2);
}

.materials-badge {
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.materials-badge i {
    width: 16px;
    height: 16px;
}

/* Product Article Styling */
.product-article {
    background: white;
    padding: var(--space-4);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.product-article h2 {
    margin-bottom: var(--space-3);
    color: var(--primary-navy);
}

/* Mobile Responsive - Lead Lightbox */
@media (max-width: 768px) {
    .lead-lightbox {
        padding: 0;
        align-items: flex-start;
    }
    
    .lead-lightbox-content {
        max-height: 100vh;
        border-radius: 0;
    }
    
    .lead-lightbox-gallery {
        max-width: 100%;
        height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    .lightbox-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        flex: 1;
        overflow-y: auto;
    }
    
    .lightbox-gallery-side {
        padding: var(--space-3);
        background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a5c 100%);
    }
    
    .lightbox-main-image {
        min-height: 180px;
        max-height: 220px;
        border-radius: var(--radius-lg);
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }
    
    .lightbox-nav-btn {
        width: 38px;
        height: 38px;
    }
    
    .lightbox-promo-badge .savings-tag {
        padding: 5px 10px;
        font-size: 0.9rem;
    }
    
    .lightbox-thumbnails {
        margin-top: var(--space-2);
        gap: var(--space-1);
        justify-content: center;
    }
    
    .lightbox-thumb {
        width: 50px;
        height: 40px;
        border-width: 2px;
    }
    
    .lightbox-materials {
        font-size: 0.8rem;
        margin-top: var(--space-2);
        justify-content: center;
        text-align: center;
        background: rgba(255,255,255,0.1);
        padding: var(--space-2);
        border-radius: var(--radius-sm);
    }
    
    .lightbox-form-side {
        padding: var(--space-3);
        background: white;
    }
    
    .lightbox-booking-wrapper h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .lightbox-form-subtitle {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .lightbox-booking-form .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .lightbox-booking-form input,
    .lightbox-booking-form select {
        padding: 12px;
        font-size: 16px;
        border-radius: var(--radius-md);
    }
    
    .lightbox-booking-form button[type="submit"] {
        padding: 14px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }
    
    .lightbox-call-section {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-2);
        padding: var(--space-2) 0;
        margin-top: var(--space-2);
    }
    
    .lightbox-call-section p {
        margin: 0;
        font-size: 0.85rem;
    }
    
    .lightbox-call-section .btn-call {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .lightbox-trust-badges {
        background: var(--bg-secondary);
        margin: var(--space-2) calc(-1 * var(--space-3));
        margin-bottom: calc(-1 * var(--space-3));
        padding: var(--space-2) var(--space-3);
        border-top: none;
        gap: var(--space-3);
    }
    
    .lightbox-trust-badges span {
        font-size: 0.75rem;
        font-weight: 500;
        color: var(--primary-navy);
    }
    
    .lightbox-trust-badges i {
        color: var(--accent-gold);
    }
    
    .lead-lightbox-close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        background: white;
        color: var(--primary-navy);
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        z-index: 100;
    }
}

/* Extra small mobile screens */
@media (max-width: 380px) {
    .lightbox-booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .lightbox-main-image {
        min-height: 150px;
        max-height: 180px;
    }
    
    .lightbox-trust-badges {
        flex-direction: column;
        gap: var(--space-1);
    }
}
