/* ═══════════════════════════════════════════════════════════
   Contridge Glass & Alum — Premium Design System v2
   Clean · Corporate · Immersive · Polished
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
    /* Brand Colors */
    --primary: #84CC16;
    --primary-dark: #65A30D;
    --primary-light: #D9F99D;
    --primary-glow: rgba(132, 204, 22, 0.15);

    /* Navy — for hero, footer, dark sections */
    --navy: #0A1628;
    --navy-light: #0F1E36;
    --navy-mid: #162A4A;
    --navy-dark: #07101C;

    /* Neutrals */
    --dark: #111827;
    --dark-secondary: #1F2937;
    --charcoal: #374151;
    --grey-900: #111827;
    --grey-800: #1F2937;
    --grey-700: #374151;
    --grey-600: #4B5563;
    --grey-500: #6B7280;
    --grey-400: #9CA3AF;
    --grey-300: #D1D5DB;
    --grey-200: #E5E7EB;
    --grey-100: #F3F4F6;
    --grey-50: #F9FAFB;
    --white: #FFFFFF;

    /* Semantic */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 0 0 1px rgba(0,0,0,0.03), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-card-hover: 0 0 0 1px rgba(0,0,0,0.03), 0 12px 24px rgba(0,0,0,0.08);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 150ms var(--ease-smooth);
    --transition-base: 250ms var(--ease-smooth);
    --transition-slow: 400ms var(--ease-smooth);

    /* Layout */
    --max-width: 1280px;
    --header-height: 142px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-700);
    background-color: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Container ── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.08; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--grey-500);
    max-width: 600px;
    line-height: 1.7;
    font-weight: 400;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: 1.5px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--grey-300);
}

.btn-outline:hover {
    border-color: var(--dark);
    background: var(--grey-50);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--dark-secondary);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-sm {
    padding: 7px 14px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 12px 28px;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════ */
/* ── HEADER ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    pointer-events: none; /* Let clicks pass through empty spaces of header */
    transition: transform var(--transition-slow);
}

.header.scrolled {
    transform: translateY(-38px); /* Shifts header up to hide the top-bar */
}

/* ── TOP BAR ── */
.top-bar {
    pointer-events: auto;
    background: #111827;
    color: var(--grey-400);
    font-size: 0.775rem;
    font-weight: 500;
    padding: 8px 0;
    height: 38px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    display: inline-block;
    box-shadow: 0 0 8px var(--primary);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.top-bar-email {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--grey-300);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.top-bar-email:hover {
    color: var(--primary);
}

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: var(--space-md);
}

.top-bar-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--grey-300);
    transition: all var(--transition-fast);
}

.top-bar-socials a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ── MAIN NAV BAR ── */
.main-nav-container {
    pointer-events: none;
    margin-top: 10px;
    transition: margin var(--transition-base);
}

.header.scrolled .main-nav-container {
    margin-top: 0;
}

.main-nav-wrapper {
    pointer-events: auto;
    background: var(--white);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 104px;
    padding: 0 var(--space-xl);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-top: none;
}

.header.scrolled .main-nav-wrapper {
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo-badge {
    background: var(--white);
    padding: 8px 28px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-base);
}

.logo-badge:hover {
    transform: translateY(-1px);
}

.logo-badge img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 0.825rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--charcoal);
    letter-spacing: 0.8px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary-dark);
    background: var(--grey-50);
}

.nav-link.active {
    color: var(--white);
    background: var(--primary);
}

.nav-cta-wrapper {
    margin-left: var(--space-md);
    padding-left: var(--space-md);
    border-left: 1px solid var(--grey-200);
}

.btn-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(17, 24, 39, 0.15);
}

.btn-phone-pill:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--primary-glow);
}

.btn-phone-pill svg {
    stroke: var(--primary);
    transition: stroke var(--transition-base);
}

.btn-phone-pill:hover svg {
    stroke: var(--dark);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION — Full-bleed immersive
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    overflow: hidden;
    text-align: center;
}

/* Slideshow layer */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroKenBurns 8s ease-in-out forwards;
}

@keyframes heroKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Reset animation on each new active slide */
.hero-slide.active img {
    animation: heroKenBurns 8s ease-in-out forwards;
}

/* Dark overlay — separate div for z-index control */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.65) 0%,
        rgba(10, 22, 40, 0.45) 40%,
        rgba(10, 22, 40, 0.7) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Remove the old ::before overlay */
.hero::before { display: none; }

/* Slide indicator dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background var(--transition-fast);
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255,255,255,0.4);
}

.hero-dot-progress {
    position: absolute;
    inset: 0;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
}

.hero-dot.active .hero-dot-progress {
    animation: dotProgress 6s linear forwards;
}

@keyframes dotProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Placeholder img inside hero */
.hero .placeholder-img {
    width: 100%;
    height: 100%;
    background: var(--navy-light);
    border: none;
    position: absolute;
    inset: 0;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) 0 var(--space-xl);
}

.hero-content {
    max-width: 800px;
    padding: var(--space-3xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s var(--ease-smooth) 0.2s both;
}

.hero-badge svg {
    color: var(--primary);
    width: 16px;
    height: 16px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s var(--ease-smooth) 0.4s both;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin: 0 auto var(--space-2xl);
    max-width: 560px;
    animation: fadeInUp 0.6s var(--ease-smooth) 0.6s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.6s var(--ease-smooth) 0.8s both;
}

/* Hero-specific button styling */
.hero .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.hero .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */
.section {
    padding: var(--space-3xl) 0;
}

.section-alt {
    background: var(--grey-50);
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }
.section-dark .section-label { color: var(--primary); }

.section-header { margin-bottom: var(--space-3xl); }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════════
   CARDS & GRIDS
   ═══════════════════════════════════════════════════════════ */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    overflow: hidden;
    border: 1px solid var(--grey-100);
}

.card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

/* Value Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
}

.value-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
    transition: all var(--transition-base);
    position: relative;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
}

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(17, 24, 39, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--dark);
}

.value-icon svg {
    width: 20px;
    height: 20px;
}

.value-card h4 {
    color: var(--dark);
    margin-bottom: 6px;
    font-size: 1.1rem;
    font-weight: 700;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--grey-500);
    line-height: 1.6;
}

/* Category Showcase */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--white);
    border: 1px solid var(--grey-100);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--grey-200);
}

.category-card img {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.placeholder-img {
    width: 100%;
    height: 70%;
    background: var(--grey-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-300);
}

.placeholder-img svg {
    width: 32px;
    height: 32px;
}

.category-content {
    padding: var(--space-md) var(--space-lg);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--grey-100);
}

.category-content h3 {
    font-size: 1rem;
    margin: 0;
}

.category-content span {
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-100);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--grey-50);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-image-overlay {
    opacity: 1;
}

.product-view-btn {
    padding: 10px 24px;
    background: var(--white);
    color: var(--dark);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 0.85rem;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.product-card:hover .product-view-btn {
    transform: translateY(0);
}

.product-body {
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.product-name {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.product-short-desc {
    color: var(--grey-500);
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
    line-height: 1.5;
    flex: 1;
}

.product-footer {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.product-footer .btn {
    width: 100%;
}

.product-footer .btn svg {
    width: 14px;
    height: 14px;
}

/* ═══════════════════════════════════════════════════════════
   FILTER TABS
   ═══════════════════════════════════════════════════════════ */
.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    justify-content: center;
}

.filter-tab {
    padding: 8px 18px;
    background: var(--white);
    color: var(--grey-600);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-tab:hover {
    background: var(--grey-50);
    color: var(--dark);
    border-color: var(--grey-300);
}

.filter-tab.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--primary-glow);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════ */
.marquee-section {
    max-width: var(--max-width);
    margin: var(--space-2xl) auto;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    box-shadow: 
        0 12px 30px -10px rgba(17, 24, 39, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 5;
}

.marquee-track {
    display: flex;
    align-items: center;
    animation: marquee 35s linear infinite; /* Slightly slower for premium readability */
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: 0 var(--space-xl);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--grey-600); /* Darker and cleaner contrast */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-glow);
}

@media (max-width: 1300px) {
    .marquee-section {
        margin-left: var(--space-md);
        margin-right: var(--space-md);
        border-radius: var(--radius-md);
    }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO — Inner pages
   ═══════════════════════════════════════════════════════════ */
.page-hero {
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(132, 204, 22, 0.08) 0%, rgba(7, 16, 28, 0.92) 80%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.775rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs svg {
    width: 10px;
    height: 10px;
    stroke: rgba(255, 255, 255, 0.4);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: var(--space-md);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    position: relative;
    transform: scale(0.96) translateY(16px);
    opacity: 0;
    transition: all var(--transition-base);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--grey-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    z-index: 10;
    transition: all var(--transition-fast);
}

.modal-close svg {
    width: 18px;
    height: 18px;
}

.modal-close:hover {
    background: var(--grey-200);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow-y: auto;
}

/* Gallery Container & Layout */
.modal-gallery-container {
    background: var(--grey-50);
    border-right: 1px solid var(--grey-100);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-gallery {
    position: relative;
    padding: var(--space-xl) var(--space-xl) var(--space-md) var(--space-xl);
}

.modal-main-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.modal-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Scrollable Thumbnails styling */
.modal-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 var(--space-xl) var(--space-xl) var(--space-xl);
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--grey-300) transparent;
}

/* Custom Scrollbar for thumbnails */
.modal-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.modal-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.modal-thumbnails::-webkit-scrollbar-thumb {
    background: var(--grey-200);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
}

.modal-thumbnails::-webkit-scrollbar-thumb:hover {
    background: var(--grey-400);
}

.modal-thumb {
    width: 72px;
    height: 54px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all var(--transition-base);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.modal-thumb:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.modal-thumb.active {
    border-color: var(--primary-dark);
    opacity: 1;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Navigation buttons (Premium Glassmorphism Overlay) */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
}

.modal-gallery:hover .gallery-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

.gallery-prev {
    left: calc(var(--space-xl) + 12px);
}

.gallery-next {
    right: calc(var(--space-xl) + 12px);
}

.gallery-nav:hover {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.08);
}

.gallery-nav svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
}

/* Gallery Dots overlay */
.gallery-dots {
    position: absolute;
    bottom: calc(var(--space-md) + 16px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
    background: rgba(10, 22, 40, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 6px 10px;
    border-radius: var(--radius-full);
}

.gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.gallery-dot.active {
    background: var(--white);
    width: 14px;
    border-radius: var(--radius-full);
}

/* Details and Info Column */
.modal-details {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.modal-details h3 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: var(--space-md);
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1.25;
}

.modal-desc {
    color: var(--grey-600);
    font-size: 0.925rem;
    line-height: 1.75;
    margin-bottom: var(--space-xl);
}

.modal-desc p {
    margin-bottom: var(--space-md);
}

.modal-desc ul {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.modal-desc li {
    margin-bottom: 6px;
}

/* Action button updates */
.modal-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

/* ═══════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════ */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-label .required { color: var(--danger); }

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    color: var(--dark);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.flash-message {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin-bottom: var(--space-xl);
}

.flash-message svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.flash-success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.flash-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT US SECTION
   ═══════════════════════════════════════════════════════════ */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.stat-card {
    padding: var(--space-xl) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--grey-100);
    border-bottom: 3px solid var(--primary);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-dark);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    color: var(--grey-500);
    font-size: 0.85rem;
    font-weight: 500;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.why-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--grey-100);
    transition: all var(--transition-base);
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(132, 204, 22, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
}

.why-icon svg {
    width: 22px;
    height: 22px;
}

.why-card h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.why-card p {
    color: var(--grey-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
    margin-bottom: var(--space-4xl);
}

.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: var(--space-xl);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(168, 214, 0, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 18px;
    height: 18px;
}

.contact-info-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.contact-info-text a {
    color: rgba(255,255,255,0.7);
}

.contact-info-text a:hover {
    color: var(--primary);
}

.contact-info-text strong {
    color: var(--white);
    display: block;
    margin-bottom: 4px;
    font-size: 0.85rem;
}

.hours-card {
    background: var(--grey-50);
    border: 1px solid var(--grey-100);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.hours-card h3 {
    margin-bottom: var(--space-lg);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--grey-100);
    font-size: 0.9rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    color: var(--dark);
    font-weight: 500;
}

.hours-time {
    color: var(--grey-500);
}

.hours-time.closed {
    color: var(--danger);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--grey-100);
    border: 1px solid var(--grey-100);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section {
    padding: var(--space-5xl) 0;
    background: var(--navy);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168,214,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .section-label {
    color: var(--primary);
}

.cta-section .section-label::before {
    background: var(--primary);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}

.cta-section .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-5xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-4xl);
}

.footer-brand .logo { margin-bottom: var(--space-md); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.5); }

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.footer-contact-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.5);
}

.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.footer-links a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--primary);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-links a:hover svg {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
}

.empty-state svg {
    width: 48px;
    height: 48px;
    color: var(--grey-300);
    margin-bottom: var(--space-md);
}

.empty-state h3 {
    color: var(--grey-600);
    margin-bottom: var(--space-sm);
}

.empty-state p {
    color: var(--grey-400);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s var(--ease-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-content { max-width: 100%; }
    .hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
    .about-intro-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
    .modal-body { grid-template-columns: 1fr; }
    .modal-gallery-container { border-right: none; border-bottom: 1px solid var(--grey-100); }
    .modal-gallery { padding: var(--space-lg) var(--space-lg) var(--space-sm) var(--space-lg); }
    .modal-thumbnails { padding: 0 var(--space-lg) var(--space-lg) var(--space-lg); }
    .gallery-prev { left: calc(var(--space-lg) + 12px); }
    .gallery-next { right: calc(var(--space-lg) + 12px); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --header-height: 72px;
    }
    .top-bar {
        display: none;
    }
    .header.scrolled {
        transform: none;
    }
    .main-nav-container {
        margin-top: 10px;
    }
    .main-nav-wrapper {
        border-radius: var(--radius-md);
        border: 1px solid rgba(0, 0, 0, 0.08);
        height: 72px;
        padding: 0 var(--space-md);
        box-shadow: var(--shadow-md);
    }
    .logo-badge {
        padding: 5px 18px !important;
    }
    .logo-badge img {
        height: 54px !important;
    }
    .menu-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px var(--space-2xl) var(--space-2xl);
        transition: transform var(--transition-base);
        z-index: 1000;
        box-shadow: var(--shadow-2xl);
    }
    .nav.open, .nav.active { transform: translateX(-300px); }
    .nav-link { font-size: 1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--grey-100); color: var(--grey-700) !important; }
    .nav-cta-wrapper { margin: var(--space-xl) 0 0 0; padding: 0; border: none; width: 100%; border-left: none !important; }
    .nav-cta-wrapper .btn-phone-pill { width: 100%; justify-content: center; }
    .nav-overlay {
        position: fixed; inset: 0; background: rgba(0,0,0,0.5);
        opacity: 0; visibility: hidden; transition: all var(--transition-base); z-index: 999;
    }
    .nav-overlay.active { opacity: 1; visibility: visible; }

    .hero { min-height: 85vh; }
    .categories-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
    .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* ════════════════ LAYOUT CARD & GALLERY STYLES ════════════════ */

/* Simple white service cards with 3D flip animation on hover */
.cg-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.cg-service-card-wrapper {
    perspective: 1000px;
    height: 240px;
}

.cg-service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    text-decoration: none;
    display: block;
}

.cg-service-card-wrapper:hover .cg-service-card-inner,
.cg-service-card-wrapper.flipped .cg-service-card-inner {
    transform: rotateY(180deg);
}

.cg-service-card-front,
.cg-service-card-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.cg-service-card-front {
    background: var(--white);
    border: 1px solid var(--grey-200);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition-base);
}

.cg-service-card-wrapper:hover .cg-service-card-front {
    border-color: var(--primary);
}

.cg-service-card-front h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
}

.cg-service-card-back {
    background: var(--navy); /* Sleek dark navy bg color */
    border: 1.5px solid var(--primary); /* Accent border on flip */
    color: var(--white);
    transform: rotateY(180deg);
    box-shadow: var(--shadow-lg);
}

.cg-service-card-back h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xs);
    line-height: 1.4;
}

.cg-service-card-back p {
    font-size: 0.825rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

/* Project gallery grid */
.cg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.cg-gallery-item {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    background: var(--grey-100);
}

.cg-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
}

.cg-gallery-item:hover img {
    transform: scale(1.08);
}

/* Responsive Overrides */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.products-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm) var(--space-md);
    color: var(--grey-700);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .cg-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cg-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cg-services-grid {
        grid-template-columns: 1fr;
    }
    .cg-gallery-grid {
        grid-template-columns: 1fr;
    }
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .products-spec-list {
        grid-template-columns: 1fr;
    }
}

/* Responsive Grid Split */
.responsive-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
}

/* About Commitment Tags */
.about-commitment-tags {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--space-xl);
    margin-top: var(--space-xl);
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: var(--primary);
}
.about-commitment-tags span:not(:last-child)::after {
    content: '|';
    margin-left: var(--space-xl);
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .responsive-grid-split {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    .about-commitment-tags {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
    }
    .about-commitment-tags span::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .modal-actions {
        flex-direction: column;
        gap: var(--space-sm);
        margin-top: var(--space-xl);
    }
    .modal-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Services Alternating Grid Layout */
.services-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-5xl);
    margin-top: var(--space-xl);
}
.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: stretch;
}
.service-detail-row.reverse {
    grid-template-columns: 1.2fr 1fr;
}
.service-detail-row.reverse .service-detail-image {
    order: 2;
}
.service-detail-row.reverse .service-detail-content {
    order: 1;
}
.service-detail-image {
    border-radius: var(--radius-xl) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-lg) !important;
    background: var(--grey-50) !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 350px !important;
}
.service-detail-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}
.service-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-glow);
    display: block;
    line-height: 1;
    margin-bottom: var(--space-xs);
}
.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
    color: var(--dark);
    line-height: 1.2;
}

@media (max-width: 992px) {
    .service-detail-row,
    .service-detail-row.reverse {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    .service-detail-row.reverse .service-detail-image {
        order: 1;
    }
    .service-detail-row.reverse .service-detail-content {
        order: 2;
    }
    .service-detail-image {
        aspect-ratio: 16/10 !important;
        height: auto !important;
        min-height: auto !important;
        position: static !important;
    }
}

/* ── Service Lists Grid & Columns ── */
.service-lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.service-list-col {
    background: var(--grey-50);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-100);
    transition: all var(--transition-base);
}

.service-list-col:hover {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

