/* ============================================================
   style.css — Full Styles with Animations & Contrast Fixes
   ============================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #BE9F65;
    --gold-dark: #A8894F;
    --gold-light: #D4BA87;
    --gold-glow: rgba(190, 159, 101, 0.20);
    --gold-subtle: rgba(190, 159, 101, 0.08);
    --dark: #1A1A1A;
    --dark-card: #242424;
    --dark-soft: #2C2C2C;
    --gray-700: #4A4A4A;
    --gray-500: #7A7A7A;
    --gray-400: #A8A8A8;
    --gray-300: #C4C4C4;
    --gray-200: #E0E0E0;
    --gray-100: #F0EDE8;
    --white: #FFFFFF;
    --light-bg: #F8F6F3;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.08);
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 72px;
}

::selection {
    background: var(--gold);
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.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; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity var(--transition);
}
.btn:hover::after {
    opacity: 1;
}
.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px var(--gold-glow);
}
.btn-secondary {
    background: var(--gray-100);
    color: var(--dark);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.btn-secondary:hover {
    background: var(--gold);
    transform: translateY(-3px) scale(1.02);
}
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
    background: #20b95a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.30);
}
.btn-whatsapp svg {
    flex-shrink: 0;
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-dark:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px) scale(1.02);
}
.btn-cta-secondary {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
}
.btn-cta-secondary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
}
.btn-final-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-final-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px var(--gold-glow);
}
.btn-final-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-final-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px) scale(1.02);
}
.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}
.btn-sm {
    padding: 8px 18px;
    font-size: 12px;
}
.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
}
.btn-white-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-white-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px) scale(1.02);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 2;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-subtle);
    padding: 6px 18px;
    border-radius: 60px;
    border: 1px solid rgba(190, 159, 101, 0.12);
    margin-bottom: 12px;
    animation: pulse-label 3s ease-in-out infinite;
}
@keyframes pulse-label {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}
.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}
.section-title {
    font-size: clamp(30px, 3.8vw, 44px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 0;
}
.section-title .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}
.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold);
    opacity: 0.2;
    border-radius: 4px;
}
.section-sub {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.8;
    max-width: 640px;
    margin: 12px auto 0;
}
.section-padding {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.section-padding-sm {
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--gold);
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    text-align: center;
}
.top-bar .offer-text {
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.3px;
    animation: pulse-offer 3s ease-in-out infinite;
}
@keyframes pulse-offer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all var(--transition-slow);
    background: var(--white);
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 8px 0;
    top: 40PX;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.header .logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    flex-shrink: 0;
    width: 150px;
}
.header .logo .brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}
.header .logo .brand span {
    color: var(--gold);
}
.header .logo .tagline {
    font-size: 9px;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.header-nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    transition: all var(--transition);
    position: relative;
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.header-nav a:hover {
    color: var(--dark);
}
.header-nav a:hover::after {
    width: 100%;
}
.header-nav a.active {
    color: var(--gold);
}
.header-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.header-actions .btn {
    padding: 8px 18px;
    font-size: 12px;
}
.header-actions .btn-primary {
    background: var(--gold);
    color: var(--white);
}
.header-actions .btn-primary svg {
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--light-bg);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('images/kitchen-cabinets-hero.webp') center center / cover no-repeat;
    transform: scale(1.02);
    transition: transform 8s ease;
}
.hero:hover .hero-bg {
    transform: scale(1.05);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(11, 10, 10, 0.20) 0%, rgba(11, 10, 10, 0.65) 55%, rgba(11, 10, 10, 0.92) 100%),
        radial-gradient(ellipse at 20% 90%, rgba(190, 159, 101, 0.10) 0%, transparent 50%);
    pointer-events: none;
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 880px;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(190, 159, 101, 0.12);
    border: 1px solid rgba(190, 159, 101, 0.18);
    padding: 6px 20px 6px 16px;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}
.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(0.6); }
}
.hero h1 {
    font-size: clamp(38px, 5.2vw, 64px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 16px;
}
.hero h1 .highlight {
    color: var(--gold);
    display: inline-block;
    animation: glow-text 3s ease-in-out infinite;
}
@keyframes glow-text {
    0%, 100% { text-shadow: 0 0 0 rgba(190, 159, 101, 0); }
    50% { text-shadow: 0 0 30px rgba(190, 159, 101, 0.15); }
}
.hero-sub {
    font-size: 17px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 32px;
}
.hero-sub strong {
    color: var(--gray-200);
    font-weight: 600;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}


/* ============================================================
   FLOATING BUTTONS — Sticky within Hero (Desktop) / Fixed (Mobile)
   ============================================================ */
.hero {
    position: relative; /* Required for absolute positioning of floating buttons */
}


.floating-buttons {
        position: fixed; /* Stays fixed on scroll on mobile */
        bottom: 50px;
        right: 30px;
        z-index: 999;
        gap: 12px;
        display: flex;
        flex-direction: column;
    }

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.12);
}

.floating-btn-call {
    background: var(--gold);
}
.floating-btn-call:hover {
    background: var(--gold-dark);
    box-shadow: 0 8px 32px rgba(190, 159, 101, 0.30);
}

.floating-btn-whatsapp {
    background: #25D366;
}
.floating-btn-whatsapp:hover {
    background: #20b95a;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.30);
}

.floating-btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.floating-btn:hover svg {
    transform: scale(1.1);
}

/* Tooltip on hover */
.floating-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--dark);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    right: 72px;
}

/* ============================================================
   FLOATING BUTTONS — Mobile (Fixed position)
   ============================================================ */
@media (max-width: 768px) {
    .floating-buttons {
        position: fixed; /* Stays fixed on scroll on mobile */
        bottom: 100px;
        right: 16px;
        z-index: 999;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.20);
    }

    .floating-btn svg {
        width: 20px;
        height: 20px;
    }

    .floating-tooltip {
        display: none; /* Hide tooltips on mobile */
    }

    /* Subtle bounce animation for attention */
    .floating-btn {
        animation: float-bounce 3s ease-in-out infinite;
    }

    .floating-btn-whatsapp {
        animation-delay: 0.3s;
    }

    @keyframes float-bounce {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-6px);
        }
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 85px;
        right: 14px;
        gap: 10px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
    }

    .floating-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================================
   STATS STRAP
   ============================================================ */
.stats-strap {
    background: var(--gold);
    padding: 20px 0;
    position: relative;
}
.stats-strap-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
}
.stat-item {
    flex: 1;
    text-align: center;
    padding: 4px 12px;
    transition: transform 0.3s ease;
}
.stat-item:hover {
    transform: scale(1.05);
}
.stat-item .stat-number {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.stat-item .stat-number .currency {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.6;
}
.stat-item .stat-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.4;
}
.stat-item .stat-label .stat-sub {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}
.stat-divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}
.stat-item.animated .stat-number {
    animation: count-up 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes count-up {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* ============================================================
   PROBLEM + SOLUTION
   ============================================================ */
.ps-section-white {
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}
.ps-grid-white {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.ps-card-white {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition-slow);
    position: relative;
    box-shadow: var(--shadow-sm);
}
.ps-card-white:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}
.ps-card-white.problem {
    border-top: 4px solid #D9534F;
}
.ps-card-white.solution {
    border-top: 4px solid var(--gold);
}
.ps-card-header .ps-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 60px;
    margin-bottom: 12px;
}
.ps-badge.problem-badge {
    background: rgba(217, 83, 79, 0.06);
    color: #D9534F;
}
.ps-badge.solution-badge {
    background: rgba(190, 159, 101, 0.08);
    color: var(--gold);
}
.ps-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.ps-card-body p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}
.problem-list-white {
    list-style: none;
    padding: 0;
    margin: 0;
}
.problem-list-white li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
}
.problem-list-white li:hover {
    transform: translateX(4px);
    color: var(--dark);
}
.problem-list-white li:last-child {
    border-bottom: none;
}
.problem-list-white li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 6px;
    color: #D9534F;
    font-weight: 700;
}
.solution-highlight-white {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(190, 159, 101, 0.06);
    border: 1px solid rgba(190, 159, 101, 0.10);
    border-radius: 60px;
    padding: 10px 24px;
    margin-top: 6px;
    transition: all var(--transition);
}
.solution-highlight-white:hover {
    background: rgba(190, 159, 101, 0.10);
    border-color: rgba(190, 159, 101, 0.18);
    transform: scale(1.02);
}
.solution-highlight-white .highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.solution-highlight-white span {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

/* ============================================================
   WHY RAM
   ============================================================ */
.why-ram-section {
    padding: 80px 0 72px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.why-ram-section .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}
.why-ram-section .section-label {
    color: var(--gold);
    background: rgba(190, 159, 101, 0.10);
    border: 1px solid rgba(190, 159, 101, 0.15);
}
.why-ram-section .section-title {
    color: var(--white);
}
.why-ram-section .section-sub {
    color: var(--gray-300);
}

.bg-design-objects {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(190, 159, 101, 0.06);
    pointer-events: none;
}
.bg-circle-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    right: -100px;
    border-width: 2px;
    border-style: dashed;
    animation: rotate-slow 60s linear infinite;
}
.bg-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -50px;
    left: -100px;
    border-width: 1px;
    animation: rotate-slow 40s linear infinite reverse;
}
.bg-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 1px;
    border-style: dotted;
    opacity: 0.4;
    animation: rotate-slow 30s linear infinite;
}
@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.bg-measurement {
    position: absolute;
    height: 2px;
    background: rgba(190, 159, 101, 0.06);
    pointer-events: none;
}
.bg-measurement-1 {
    width: 300px;
    top: 20%;
    right: 5%;
    transform: rotate(15deg);
}
.bg-measurement-2 {
    width: 200px;
    bottom: 25%;
    left: 8%;
    transform: rotate(-10deg);
}
.bg-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(190, 159, 101, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 159, 101, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.bg-cube {
    position: absolute;
    border: 1px solid rgba(190, 159, 101, 0.06);
    border-radius: 4px;
    pointer-events: none;
}
.bg-cube-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 8%;
    transform: rotate(12deg);
    border-width: 2px;
    animation: float-cube 8s ease-in-out infinite;
}
.bg-cube-2 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    right: 12%;
    transform: rotate(-8deg);
    border-width: 1px;
    animation: float-cube 6s ease-in-out infinite reverse;
}
.bg-cube-3 {
    width: 80px;
    height: 80px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-width: 1px;
    border-style: dashed;
    opacity: 0.3;
    animation: rotate-slow 30s linear infinite;
}
@keyframes float-cube {
    0%, 100% { transform: rotate(12deg) translateY(0px); }
    50% { transform: rotate(12deg) translateY(-15px); }
}
.bg-compass-ring {
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 20%;
    border: 1px solid rgba(190, 159, 101, 0.05);
    border-radius: 50%;
    pointer-events: none;
}
.bg-compass-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1px solid rgba(190, 159, 101, 0.04);
    border-radius: 50%;
}
.bg-compass-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(190, 159, 101, 0.08);
    border-radius: 50%;
    bottom: calc(10% + 71px);
    right: calc(20% + 71px);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.feature-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(190, 159, 101, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
.feature-card .card-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
    transition: all var(--transition);
}
.feature-card:hover .card-icon {
    transform: scale(1.15) rotate(-5deg);
}
.feature-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.feature-card p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   WHY RAM — Card Icons
   ============================================================ */
.feature-card .card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--gold);
    margin: 0 auto 14px;
    transition: all var(--transition-slow);
}

.feature-card .card-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.8;
}

.feature-card:hover .card-icon {
    transform: scale(1.12) rotate(-4deg);
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(190, 159, 101, 0.20);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card .card-icon {
        width: 52px;
        height: 52px;
    }

    .feature-card .card-icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .feature-card .card-icon {
        width: 48px;
        height: 48px;
    }

    .feature-card .card-icon svg {
        width: 22px;
        height: 22px;
    }
}


   /* ============================================================
   ICON STYLES — Kitchen Cabinets Landing Page
   ============================================================ */

/* ============================================================
   WHY RAM — Feature Card Icons
   ============================================================ */
.feature-card .card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--gold);
    margin: 0 auto 14px;
    transition: all var(--transition-slow);
    flex-shrink: 0;
}

.feature-card .card-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.8;
}

.feature-card:hover .card-icon {
    transform: scale(1.12) rotate(-4deg);
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(190, 159, 101, 0.20);
}

/* ============================================================
   FINISHES — Finish Card Icons
   ============================================================ */
.finish-card-white .card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(190, 159, 101, 0.06);
    border: 1px solid rgba(190, 159, 101, 0.08);
    color: var(--gold);
    margin: 0 auto 14px;
    transition: all var(--transition-slow);
    flex-shrink: 0;
}

.finish-card-white .card-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.8;
}

.finish-card-white:hover .card-icon {
    transform: scale(1.12) rotate(5deg);
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(190, 159, 101, 0.15);
}

/* ============================================================
   HOW IT WORKS — Step Icons
   ============================================================ */
.step-item .step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(190, 159, 101, 0.08);
    border: 1.5px solid rgba(190, 159, 101, 0.12);
    color: var(--gold);
    margin-bottom: 16px;
    transition: all var(--transition-slow);
    flex-shrink: 0;
}

.step-item .step-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.8;
}

.step-item:hover .step-icon {
    transform: scale(1.12) rotate(-5deg);
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 8px 32px var(--gold-glow);
}

/* ============================================================
   RESPONSIVE — All Icons
   ============================================================ */
@media (max-width: 768px) {
    .feature-card .card-icon,
    .finish-card-white .card-icon,
    .step-item .step-icon {
        width: 56px;
        height: 56px;
    }

    .feature-card .card-icon svg,
    .finish-card-white .card-icon svg,
    .step-item .step-icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .feature-card .card-icon,
    .finish-card-white .card-icon,
    .step-item .step-icon {
        width: 50px;
        height: 50px;
    }

    .feature-card .card-icon svg,
    .finish-card-white .card-icon svg,
    .step-item .step-icon svg {
        width: 22px;
        height: 22px;
    }
}
.finishes-white {
    padding: 80px 0 72px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}
.finishes-bg-objects {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.bg-swatch {
    position: absolute;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0.04;
}
.bg-swatch-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 5%;
    background: var(--gold);
    transform: rotate(15deg);
    border-radius: 8px;
}
.bg-swatch-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 8%;
    background: #D4BA87;
    transform: rotate(-8deg);
    border-radius: 8px;
}
.bg-swatch-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    background: var(--gold-dark);
    transform: rotate(30deg);
    border-radius: 8px;
    opacity: 0.03;
}
.finishes-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(190, 159, 101, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 159, 101, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}
.bg-diamond {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(190, 159, 101, 0.06);
    transform: rotate(45deg);
    pointer-events: none;
}
.bg-diamond-1 {
    top: 20%;
    left: 3%;
    animation: float-diamond 8s ease-in-out infinite;
}
.bg-diamond-2 {
    bottom: 30%;
    right: 3%;
    width: 60px;
    height: 60px;
    animation: float-diamond 6s ease-in-out infinite reverse;
}
.bg-diamond-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 80px;
    height: 80px;
    border-color: rgba(190, 159, 101, 0.04);
    animation: rotate-slow 30s linear infinite;
}
@keyframes float-diamond {
    0%, 100% { transform: rotate(45deg) translateY(0px); }
    50% { transform: rotate(45deg) translateY(-12px); }
}
.bg-dots-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(190, 159, 101, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.finishes-white .section-header {
    position: relative;
    z-index: 1;
}
.finishes-white .section-title {
    color: var(--dark);
}
.finishes-grid-white {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.finish-card-white {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}
.finish-card-white:hover {
    transform: translateY(-8px);
    border-color: rgba(190, 159, 101, 0.15);
    box-shadow: var(--shadow-premium);
}
.finish-card-white .card-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
    transition: all var(--transition);
}
.finish-card-white:hover .card-icon {
    transform: scale(1.15) rotate(8deg);
}
.finish-card-white h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.finish-card-white p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   BEFORE / AFTER COMPARISON SECTION — Dark Version
   ============================================================ */
.comparison-section-dark {
    background: var(--dark);
    position: relative;
}

.comparison-section-dark .section-header .section-label {
    color: var(--gold);
    background: rgba(190, 159, 101, 0.10);
    border: 1px solid rgba(190, 159, 101, 0.15);
}

.comparison-section-dark .section-header .section-title {
    color: var(--white);
}

.comparison-section-dark .section-header .section-sub {
    color: var(--gray-400);
}

/* ── Card ── */
.comparison-card-dark {
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    padding: 2rem 2rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: var(--transition-slow);
}

.comparison-card-dark:hover {
    border-color: rgba(190, 159, 101, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ── Header ── */
.comparison-header-dark {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.comparison-header-dark h3 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.comparison-header-dark .gold-icon {
    color: var(--gold);
}

.comparison-header-dark .gold-slash {
    color: var(--gold);
    font-weight: 300;
    margin: 0 0.2rem;
}

.comparison-header-dark .badge-dark {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 1.2rem;
    border-radius: 100px;
    background: rgba(190, 159, 101, 0.10);
    color: var(--gold-light);
    border: 1px solid rgba(190, 159, 101, 0.12);
    user-select: none;
}

/* ── Wrapper ── */
.comparison-wrapper-dark {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark-soft);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    user-select: none;
    touch-action: none;
    cursor: ew-resize;
}

.comparison-wrapper-dark img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.comparison-after {
    clip-path: inset(0 50% 0 0);
}

/* ── Handle ── */
.comparison-handle-dark {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: background 0.2s;
}

.comparison-handle-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 2px rgba(190, 159, 101, 0.3), 0 8px 32px rgba(190, 159, 101, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
}

.comparison-handle-dark::after {
    content: '⇔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    z-index: 2;
    line-height: 1;
    pointer-events: none;
    text-shadow: none;
}

.comparison-wrapper-dark:hover .comparison-handle-dark::before {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 0 4px rgba(190, 159, 101, 0.2), 0 12px 40px rgba(190, 159, 101, 0.3);
}

/* ── Labels ── */
.comparison-labels-dark {
    position: absolute;
    top: 1.25rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 5;
    pointer-events: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.comparison-labels-dark span {
    padding: 0.35rem 1.2rem;
    border-radius: 100px;
    background: rgba(11, 10, 10, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-labels-dark .label-before {
    color: var(--gray-200);
}
.comparison-labels-dark .label-after {
    color: var(--gold-light);
}

/* ── Footer ── */
.comparison-footer-dark {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    color: var(--gray-400);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comparison-footer-dark .hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-footer-dark .hint svg {
    opacity: 0.5;
    flex-shrink: 0;
}

.comparison-footer-dark .reset-btn-dark {
    background: transparent;
    border: 1px solid rgba(190, 159, 101, 0.15);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.3rem 1.2rem;
    border-radius: 100px;
    transition: var(--transition);
    font-family: inherit;
}

.comparison-footer-dark .reset-btn-dark:hover {
    background: rgba(190, 159, 101, 0.10);
    border-color: rgba(190, 159, 101, 0.3);
    transform: scale(1.02);
}

/* ============================================================
   RESPONSIVE — Dark Version
   ============================================================ */
@media (max-width: 768px) {
    .comparison-card-dark {
        padding: 1.25rem 1.25rem 1.5rem;
        border-radius: var(--radius);
    }

    .comparison-header-dark h3 {
        font-size: 1.1rem;
    }
    .comparison-header-dark .badge-dark {
        font-size: 0.6rem;
        padding: 0.2rem 0.75rem;
    }

    .comparison-wrapper-dark {
        aspect-ratio: 4 / 3;
        border-radius: calc(var(--radius) - 4px);
    }

    .comparison-labels-dark {
        top: 0.85rem;
        padding: 0 1rem;
        font-size: 0.7rem;
    }
    .comparison-labels-dark span {
        padding: 0.2rem 0.75rem;
    }

    .comparison-handle-dark::before {
        width: 38px;
        height: 38px;
    }
    .comparison-handle-dark::after {
        font-size: 0.9rem;
    }

    .comparison-footer-dark {
        font-size: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
}

@media (max-width: 480px) {
    .comparison-wrapper-dark {
        aspect-ratio: 1 / 1;
    }
    .comparison-handle-dark::before {
        width: 32px;
        height: 32px;
    }
    .comparison-handle-dark::after {
        font-size: 0.75rem;
    }
    .comparison-card-dark {
        padding: 1rem 1rem 1.25rem;
    }
}

/* ============================================================
   GALLERY SECTION — Kitchen Cabinets (Dark Version)
   ============================================================ */
.gallery-section-dark {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.gallery-section-dark .section-header .section-label {
    color: var(--gold);
    background: rgba(190, 159, 101, 0.10);
    border: 1px solid rgba(190, 159, 101, 0.15);
}

.gallery-section-dark .section-header .section-title {
    color: var(--white);
}

.gallery-section-dark .section-header .section-sub {
    color: var(--gray-400);
}

/* ── Gallery Grid ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

/* ── Gallery Item ── */
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-slow);
    aspect-ratio: 4 / 3;
}

.gallery-item:nth-child(2) {
    aspect-ratio: 4 / 5;
}

.gallery-item:nth-child(5) {
    aspect-ratio: 5 / 4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover {
    border-color: rgba(190, 159, 101, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* ── Overlay ── */
.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 10, 10, 0.85) 0%,
            rgba(11, 10, 10, 0.40) 50%,
            rgba(11, 10, 10, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    border-color: rgba(190, 159, 101, 0.3);
}

.gallery-item .gallery-overlay .overlay-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
}

.gallery-item .gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.15s;
}

.gallery-item .gallery-overlay p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.gallery-item:hover .gallery-overlay .overlay-icon,
.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ── CTA Button ── */
.gallery-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.gallery-cta .btn-primary {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 4px 24px rgba(190, 159, 101, 0.15);
}

.gallery-cta .btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 32px rgba(190, 159, 101, 0.25);
}

/* ── Animation for images loading ── */
.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    animation: galleryFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.10s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.20s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.30s; }

@keyframes galleryFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE — Gallery Section
   ============================================================ */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(5) {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .gallery-item .gallery-overlay h4 {
        font-size: 0.95rem;
    }

    .gallery-item .gallery-overlay p {
        font-size: 0.75rem;
    }

    .gallery-item .gallery-overlay .overlay-icon {
        font-size: 1.5rem;
    }

    .gallery-cta {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .gallery-item .gallery-overlay h4 {
        font-size: 0.8rem;
    }

    .gallery-item .gallery-overlay p {
        display: none;
    }

    .gallery-item .gallery-overlay .overlay-icon {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }

    .gallery-item .gallery-overlay {
        padding: 0.75rem;
    }
}

/* ============================================================
   CTA IMMERSIVE
   ============================================================ */
.cta-immersive {
    position: relative;
    padding: 100px 0;
    background: var(--gold);
    overflow: hidden;
}
.cta-bg-objects {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.cta-clock-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    animation: rotate-slow 40s linear infinite;
}
.cta-clock-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    animation: rotate-slow 30s linear infinite reverse;
}
.cta-clock-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--dark);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(45deg) translateX(190px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    animation: pulse-dot-cta 2s ease-in-out infinite;
}
.cta-clock-dot-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-30deg) translateX(250px);
    opacity: 0.4;
    animation: pulse-dot-cta 2.4s ease-in-out infinite 0.6s;
}
@keyframes pulse-dot-cta {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(45deg) translateX(190px) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) rotate(45deg) translateX(190px) scale(0.6);
    }
}
.cta-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
    pointer-events: none;
}
.cta-line-1 {
    width: 70%;
    top: 15%;
    left: 15%;
    transform: rotate(5deg);
}
.cta-line-2 {
    width: 50%;
    bottom: 20%;
    right: 10%;
    transform: rotate(-8deg);
}
.cta-line-3 {
    width: 40%;
    top: 40%;
    left: 5%;
    transform: rotate(85deg);
}
.cta-line-4 {
    width: 30%;
    bottom: 30%;
    right: 5%;
    transform: rotate(-80deg);
}
.cta-cube {
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    pointer-events: none;
}
.cta-cube-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 8%;
    transform: rotate(12deg);
    animation: float-cube-cta 8s ease-in-out infinite;
}
.cta-cube-2 {
    width: 50px;
    height: 50px;
    bottom: 15%;
    left: 8%;
    transform: rotate(-8deg);
    animation: float-cube-cta 6s ease-in-out infinite reverse;
}
.cta-cube-3 {
    width: 120px;
    height: 120px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-color: rgba(0, 0, 0, 0.04);
    animation: rotate-slow 60s linear infinite;
}
@keyframes float-cube-cta {
    0%, 100% { transform: rotate(12deg) translateY(0px); }
    50% { transform: rotate(12deg) translateY(-15px); }
}
.cta-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.cta-glow-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: pulse-glow-cta 6s ease-in-out infinite;
}
.cta-glow-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    animation: pulse-glow-cta 8s ease-in-out infinite reverse;
}
@keyframes pulse-glow-cta {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}
.cta-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--dark);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    animation: sparkle-cta 3s ease-in-out infinite;
}
.cta-sparkle-1 { top: 20%; right: 20%; animation-delay: 0.2s; }
.cta-sparkle-2 { bottom: 25%; left: 15%; animation-delay: 1s; width: 3px; height: 3px; }
.cta-sparkle-3 { top: 35%; left: 25%; animation-delay: 1.8s; width: 5px; height: 5px; }
.cta-sparkle-4 { bottom: 35%; right: 25%; animation-delay: 2.4s; width: 3px; height: 3px; }
@keyframes sparkle-cta {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.5); }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.cta-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 60px;
    margin-bottom: 20px;
}
.cta-offer-block {
    margin-bottom: 24px;
}
.cta-discount {
    display: block;
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1.05;
    animation: pulse-discount 3s ease-in-out infinite;
}
@keyframes pulse-discount {
    0%, 100% { transform: scale(1); text-shadow: 0 0 0 rgba(0,0,0,0); }
    50% { transform: scale(1.02); text-shadow: 0 0 40px rgba(0,0,0,0.05); }
}
.cta-offer-text {
    display: block;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-top: 4px;
    opacity: 0.85;
}
.cta-features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-bottom: 32px;
}
.cta-features-list span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.65);
}
.cta-features-list span::before {
    content: '◆';
    color: var(--dark);
    font-size: 8px;
    opacity: 0.5;
}
.cta-button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}
.cta-button-group .btn {
    min-width: 200px;
}
.cta-fine-print {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 8px;
    letter-spacing: 0.3px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works-white {
    padding: 80px 0 72px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.hiw-bg-objects {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hiw-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(190, 159, 101, 0.06), transparent);
    pointer-events: none;
}
.hiw-line-1 { width: 60%; top: 12%; left: 20%; transform: rotate(2deg); }
.hiw-line-2 { width: 45%; bottom: 18%; right: 10%; transform: rotate(-3deg); }
.hiw-line-3 { width: 30%; top: 30%; left: 5%; transform: rotate(88deg); }
.hiw-line-4 { width: 20%; bottom: 40%; right: 5%; transform: rotate(-85deg); }
.hiw-diamond {
    position: absolute;
    border: 1px solid rgba(190, 159, 101, 0.06);
    transform: rotate(45deg);
    pointer-events: none;
}
.hiw-diamond-1 { width: 50px; height: 50px; top: 15%; right: 8%; animation: float-diamond-hiw 8s ease-in-out infinite; }
.hiw-diamond-2 { width: 70px; height: 70px; bottom: 20%; left: 5%; animation: float-diamond-hiw 6s ease-in-out infinite reverse; }
.hiw-diamond-3 { width: 100px; height: 100px; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(45deg); border-color: rgba(190, 159, 101, 0.04); animation: rotate-slow 40s linear infinite; }
@keyframes float-diamond-hiw {
    0%, 100% { transform: rotate(45deg) translateY(0px); }
    50% { transform: rotate(45deg) translateY(-12px); }
}
.hiw-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(190, 159, 101, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 159, 101, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.hiw-compass-ring {
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 15%;
    border: 1px solid rgba(190, 159, 101, 0.04);
    border-radius: 50%;
    pointer-events: none;
}
.hiw-compass-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 1px solid rgba(190, 159, 101, 0.04);
    border-radius: 50%;
}
.hiw-compass-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(190, 159, 101, 0.06);
    border-radius: 50%;
    bottom: calc(10% + 86px);
    right: calc(15% + 86px);
    pointer-events: none;
}
.hiw-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(190, 159, 101, 0.04);
    pointer-events: none;
}
.hiw-circle-1 { width: 300px; height: 300px; top: -50px; right: -50px; }
.hiw-circle-2 { width: 200px; height: 200px; bottom: -30px; left: -30px; }

.how-it-works-white .section-header {
    position: relative;
    z-index: 1;
}
.how-it-works-white .section-title {
    color: var(--dark);
}
.steps-grid-white {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.step-item {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 36px 24px 32px;
    text-align: center;
    transition: all var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: var(--shadow-sm);
}
.step-item:hover {
    transform: translateY(-8px);
    border-color: rgba(190, 159, 101, 0.12);
    box-shadow: var(--shadow-premium);
}
.step-item .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    transition: all var(--transition);
}
.step-item:hover .step-number {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 32px var(--gold-glow);
}
.step-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.step-item p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   TRUSTED DUBAI
   ============================================================ */
.trusted-dubai {
    padding: 80px 0 72px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.trusted-dubai .section-header {
    position: relative;
    z-index: 1;
}
.trusted-dubai .section-title {
    color: var(--white);
}
.trusted-dubai .section-sub {
    color: var(--gray-300);
}

.trusted-bg-objects {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.trusted-map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(190, 159, 101, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 159, 101, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.trusted-compass-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(190, 159, 101, 0.04);
    border-radius: 50%;
    pointer-events: none;
}
.trusted-compass-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 1px solid rgba(190, 159, 101, 0.03);
    border-radius: 50%;
}
.trusted-compass-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 1px solid rgba(190, 159, 101, 0.02);
    border-radius: 50%;
}
.trusted-compass-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 150px;
    background: linear-gradient(transparent, rgba(190, 159, 101, 0.03), transparent);
    transform-origin: center center;
    pointer-events: none;
}
.trusted-compass-line-1 { transform: translate(-50%, -50%) rotate(0deg); }
.trusted-compass-line-2 { transform: translate(-50%, -50%) rotate(90deg); }
.trusted-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 0 20px rgba(190, 159, 101, 0.10);
    pointer-events: none;
    opacity: 0.3;
    animation: pulse-pin 3s ease-in-out infinite;
}
.trusted-pin::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: var(--dark);
    border-radius: 50%;
}
.trusted-pin-1 { top: 15%; right: 10%; animation-delay: 0.2s; }
.trusted-pin-2 { bottom: 20%; left: 8%; animation-delay: 1s; opacity: 0.2; transform: rotate(-45deg) scale(0.8); }
.trusted-pin-3 { top: 45%; right: 5%; animation-delay: 1.8s; opacity: 0.15; transform: rotate(-45deg) scale(0.6); }
@keyframes pulse-pin {
    0%, 100% { opacity: 0.3; transform: rotate(-45deg) scale(1); }
    50% { opacity: 0.6; transform: rotate(-45deg) scale(1.1); }
}
.trusted-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(190, 159, 101, 0.08);
    border-radius: 50%;
    pointer-events: none;
}
.trusted-dot-1 { top: 20%; left: 15%; }
.trusted-dot-2 { top: 35%; right: 20%; }
.trusted-dot-3 { bottom: 25%; left: 25%; }
.trusted-dot-4 { top: 50%; left: 8%; }
.trusted-dot-5 { bottom: 30%; right: 15%; }
.trusted-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(190, 159, 101, 0.04), transparent);
    pointer-events: none;
}
.trusted-connection-1 { width: 40%; top: 30%; left: 10%; transform: rotate(15deg); }
.trusted-connection-2 { width: 30%; bottom: 35%; right: 10%; transform: rotate(-10deg); }
.trusted-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.trusted-orb-1 { width: 400px; height: 400px; top: -100px; right: -100px; background: radial-gradient(circle, rgba(190, 159, 101, 0.05) 0%, transparent 70%); }
.trusted-orb-2 { width: 300px; height: 300px; bottom: -80px; left: -80px; background: radial-gradient(circle, rgba(190, 159, 101, 0.03) 0%, transparent 70%); }

.locations-grid-trusted {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
    margin-bottom: 36px;
}
.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 60px;
    padding: 12px 24px 12px 20px;
    transition: all var(--transition);
    cursor: default;
}
.location-item:hover {
    transform: translateY(-4px) scale(1.04);
    border-color: rgba(190, 159, 101, 0.15);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.location-item .location-icon {
    font-size: 18px;
    flex-shrink: 0;
    transition: all var(--transition);
}
.location-item:hover .location-icon {
    transform: scale(1.2) rotate(-10deg);
}
.location-item .location-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-200);
    white-space: nowrap;
}
.trusted-badge {
    align-items: center;
    gap: 12px;
    background: rgba(190, 159, 101, 0.04);
    border: 1px solid rgba(190, 159, 101, 0.06);
    border-radius: 60px;
    padding: 10px 28px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: fit-content;
    transition: all var(--transition);
}
.trusted-badge:hover {
    border-color: rgba(190, 159, 101, 0.12);
    background: rgba(190, 159, 101, 0.06);
    transform: scale(1.02);
}
.trusted-badge .badge-icon {
    color: var(--gold);
    font-size: 16px;
}
.trusted-badge .badge-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-300);
    letter-spacing: 0.3px;
}

/* ============================================================
   TEAM SECTION — Dark Version
   ============================================================ */
.team-section-dark {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.team-section-dark .section-header .section-label {
    color: var(--gold);
    background: rgba(190, 159, 101, 0.10);
    border: 1px solid rgba(190, 159, 101, 0.15);
}

.team-section-dark .section-header .section-title {
    color: var(--white);
}

.team-section-dark .section-header .section-sub {
    color: var(--gray-400);
}

/* ── Team Grid ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

/* ── Team Card ── */
.team-card {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-slow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(190, 159, 101, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* ── Team Image ── */
.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--dark-soft);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover .team-image img {
    transform: scale(1.04);
}

/* ── Team Image Overlay ── */
.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 10, 10, 0.80) 0%,
            rgba(11, 10, 10, 0.40) 50%,
            rgba(11, 10, 10, 0.80) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
}

.team-card:hover .team-overlay {
    opacity: 1;
    border-color: rgba(190, 159, 101, 0.3);
}

.team-overlay .team-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
}

.team-overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.15s;
}

.team-overlay p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.team-card:hover .team-overlay .team-icon,
.team-card:hover .team-overlay h4,
.team-card:hover .team-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ── Team Info ── */
.team-info {
    padding: 1.25rem 1.5rem 1.5rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.team-info p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.5;
}

/* ── Team Badge ── */
.team-badge {
    align-items: center;
    gap: 12px;
    background: rgba(190, 159, 101, 0.04);
    border: 1px solid rgba(190, 159, 101, 0.06);
    border-radius: 60px;
    padding: 10px 28px;
    margin: 2.5rem auto 0;
    position: relative;
    z-index: 1;
    width: fit-content;
    transition: all var(--transition);
}

.team-badge:hover {
    border-color: rgba(190, 159, 101, 0.12);
    background: rgba(190, 159, 101, 0.06);
    transform: scale(1.02);
}

.team-badge .badge-icon {
    font-size: 1.2rem;
}

.team-badge .badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.3px;
}

/* ============================================================
   RESPONSIVE — Team Section
   ============================================================ */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .team-image {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .team-image {
        aspect-ratio: 16 / 10;
    }

    .team-info {
        padding: 1rem 1.25rem 1.25rem;
    }

    .team-info h4 {
        font-size: 1rem;
    }

    .team-info p {
        font-size: 0.8rem;
    }

    .team-overlay h4 {
        font-size: 1rem;
    }

    .team-overlay p {
        font-size: 0.75rem;
    }

    .team-badge {
        padding: 8px 20px;
        margin-top: 2rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .team-badge .badge-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .team-card {
        border-radius: var(--radius);
    }

    .team-image {
        aspect-ratio: 4 / 3;
    }

    .team-overlay .team-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .team-overlay h4 {
        font-size: 0.9rem;
    }

    .team-overlay p {
        font-size: 0.7rem;
    }

    .team-info h4 {
        font-size: 0.95rem;
    }

    .team-badge {
        padding: 6px 14px;
        gap: 8px;
    }

    .team-badge .badge-text {
        font-size: 0.7rem;
    }
}
/* ============================================================
   FAQ
   ============================================================ */
.faq-white {
    padding: 80px 0 72px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}
.faq-bg-white {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.faq-circle-white {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(190, 159, 101, 0.06);
    pointer-events: none;
}
.faq-circle-1 { width: 500px; height: 500px; top: -100px; right: -150px; border-width: 2px; border-style: dashed; animation: rotate-slow 50s linear infinite; }
.faq-circle-2 { width: 300px; height: 300px; bottom: -50px; left: -80px; border-width: 1px; animation: rotate-slow 35s linear infinite reverse; }
.faq-circle-3 { width: 150px; height: 150px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-width: 1px; border-style: dotted; opacity: 0.3; animation: rotate-slow 25s linear infinite; }
.faq-grid-white {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(190, 159, 101, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 159, 101, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.faq-dots-white {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(190, 159, 101, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.section-header-white {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}
.section-label-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(190, 159, 101, 0.08);
    padding: 6px 18px;
    border-radius: 60px;
    border: 1px solid rgba(190, 159, 101, 0.10);
    margin-bottom: 12px;
    animation: pulse-label 3s ease-in-out infinite;
}
.section-label-white::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}
.section-title-white {
    font-size: clamp(30px, 3.8vw, 44px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 0;
}
.section-title-white .highlight-white {
    color: var(--gold);
    position: relative;
}
.section-title-white .highlight-white::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold);
    opacity: 0.2;
    border-radius: 4px;
}

.faq-accordion-white {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.faq-item-white {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-sm);
}
.faq-item-white:hover {
    border-color: rgba(190, 159, 101, 0.10);
    transform: translateY(-2px);
}
.faq-item-white.open {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(190, 159, 101, 0.06);
}
.faq-question-white {
    width: 100%;
    padding: 20px 28px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--dark);
    transition: all var(--transition);
    line-height: 1.5;
}
.faq-question-white:hover {
    color: var(--gold);
}
.faq-question-white .faq-q-text {
    flex: 1;
}
.faq-question-white .faq-arrow-white {
    font-size: 18px;
    transition: all var(--transition);
    flex-shrink: 0;
    color: var(--gray-400);
}
.faq-item-white.open .faq-question-white .faq-arrow-white {
    transform: rotate(180deg);
    color: var(--gold);
}
.faq-item-white.open .faq-question-white {
    color: var(--gold);
}
.faq-answer-white {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1), padding 0.4s ease;
    padding: 0 28px;
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.8;
}
.faq-answer-white p {
    margin: 0;
}
.faq-answer-white strong {
    color: var(--dark);
    font-weight: 600;
}
.faq-item-white.open .faq-answer-white {
    max-height: 300px;
    padding: 0 28px 24px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-enhanced {
    position: relative;
    padding: 100px 0 80px;
    background: var(--dark);
    overflow: hidden;
}
.final-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.final-cube {
    position: absolute;
    border: 1px solid rgba(190, 159, 101, 0.06);
    border-radius: 4px;
    pointer-events: none;
}
.final-cube-1 { width: 100px; height: 100px; top: 10%; right: 8%; transform: rotate(15deg); border-width: 2px; animation: float-cube-final 8s ease-in-out infinite; }
.final-cube-2 { width: 60px; height: 60px; bottom: 15%; left: 6%; transform: rotate(-10deg); animation: float-cube-final 6s ease-in-out infinite reverse; }
.final-cube-3 { width: 140px; height: 140px; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(45deg); border-color: rgba(190, 159, 101, 0.04); animation: rotate-slow 60s linear infinite; }
@keyframes float-cube-final {
    0%, 100% { transform: rotate(15deg) translateY(0px); }
    50% { transform: rotate(15deg) translateY(-18px); }
}
.final-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(190, 159, 101, 0.08), transparent);
    pointer-events: none;
}
.final-line-1 { width: 50%; top: 20%; left: 25%; transform: rotate(2deg); }
.final-line-2 { width: 40%; bottom: 25%; right: 10%; transform: rotate(-3deg); }
.final-line-3 { width: 30%; top: 45%; left: 5%; transform: rotate(88deg); }
.final-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.final-glow-1 { width: 500px; height: 500px; top: -150px; right: -100px; background: radial-gradient(circle, rgba(190, 159, 101, 0.08) 0%, transparent 70%); animation: pulse-glow-final 6s ease-in-out infinite; }
.final-glow-2 { width: 400px; height: 400px; bottom: -100px; left: -80px; background: radial-gradient(circle, rgba(190, 159, 101, 0.05) 0%, transparent 70%); animation: pulse-glow-final 8s ease-in-out infinite reverse; }
@keyframes pulse-glow-final {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}
.final-sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(190, 159, 101, 0.15);
    animation: sparkle-final 3s ease-in-out infinite;
}
.final-sparkle-1 { top: 15%; right: 18%; animation-delay: 0.2s; }
.final-sparkle-2 { bottom: 20%; left: 12%; animation-delay: 1s; width: 3px; height: 3px; }
.final-sparkle-3 { top: 30%; left: 20%; animation-delay: 1.8s; width: 6px; height: 6px; }
.final-sparkle-4 { bottom: 30%; right: 15%; animation-delay: 2.4s; width: 4px; height: 4px; }
@keyframes sparkle-final {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.8); }
}
.final-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(190, 159, 101, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 159, 101, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.final-badge {
    display: inline-block;
    background: rgba(190, 159, 101, 0.10);
    border: 1px solid rgba(190, 159, 101, 0.12);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 60px;
    margin-bottom: 20px;
}
.final-title {
    font-size: clamp(36px, 4.8vw, 56px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 16px;
}
.final-desc {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 32px;
}
.final-desc strong {
    color: var(--gold);
    font-weight: 700;
}
.final-button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}
.final-button-group .btn {
    min-width: 200px;
    padding: 18px 40px;
    font-size: 17px;
}
.final-location {
    font-size: 14px;
    color: var(--gray-400);
    letter-spacing: 0.5px;
}

/* ============================================================
   REVIEWS SECTION — White Version
   ============================================================ */
.reviews-white {
    background: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.reviews-white .section-header {
    margin-bottom: 48px;
}

.reviews-white .section-title {
    color: var(--dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(190, 159, 101, 0.12);
    box-shadow: var(--shadow-premium);
}

.review-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 20px;
    flex: 1;
}

.review-author {
    font-weight: 600;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 16px;
}

.review-location {
    font-weight: 400;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* ============================================================
   RESPONSIVE — Reviews Section
   ============================================================ */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-white {
        padding: 56px 0;
    }

    .reviews-white .section-header {
        margin-bottom: 32px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 24px 20px;
    }

    .review-stars {
        font-size: 16px;
    }

    .review-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .reviews-white {
        padding: 40px 0;
    }

    .review-card {
        padding: 20px 16px;
    }

    .review-text {
        font-size: 13px;
    }
}
/* ============================================================
   FOOTER
   ============================================================ */
.footer-enhanced {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 0 0;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 14px;
    width: 80%;
}
.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.footer-logo span {
    color: var(--gold);
}
.footer-logo .footer-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 2px;
}
.footer-brand-desc {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 280px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--gray-300);
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    text-transform: lowercase;
}
.social-link:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-4px) scale(1.1);
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}
.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--gray-300);
    transition: all var(--transition);
    padding: 4px 0;
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
    transform: translateX(4px);
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--gray-300);
}
.footer-contact-item .contact-icon {
    font-size: 16px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
.footer-contact-item a {
    color: var(--gray-300);
    transition: all var(--transition);
}
.footer-contact-item a:hover {
    color: var(--gold);
    transform: translateX(4px);
}
.footer-contact-item span {
    color: var(--gray-300);
}
.footer-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.btn-footer-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}
.btn-footer-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-footer-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.btn-footer-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: translateY(-3px) scale(1.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 24px;
    font-size: 13px;
    color: var(--gray-400);
}
.footer-bottom-left p {
    margin: 0;
}
.footer-bottom-right a {
    color: var(--gray-400);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-bottom-right a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .finishes-grid-white { grid-template-columns: repeat(2, 1fr); }
    .steps-grid-white { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand-desc { max-width: 100%; }
    .ps-grid-white { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; }
    .bg-circle-1, .bg-circle-2 { display: none; }
    .bg-cube-3 { display: none; }
    .bg-diamond-3 { display: none; }
    .cta-clock-ring, .cta-clock-ring-2, .cta-clock-dot, .cta-clock-dot-2 { display: none; }
    .hiw-diamond-1, .hiw-diamond-2 { display: none; }
    .hiw-compass-ring, .hiw-compass-dot { display: none; }
    .trusted-compass-ring, .trusted-compass-line, .trusted-pin, .trusted-dot, .trusted-connection { display: none; }
    .faq-circle-1, .faq-circle-2 { display: none; }
    .final-cube-1, .final-cube-2 { display: none; }
    .final-line-3 { display: none; }
}

@media (max-width: 768px) {
    .header { top: 44px; padding: 8px 0; }
    .header .logo .brand { font-size: 17px; }
    .header .logo .tagline { font-size: 8px; }
    .header-actions .btn-secondary { display: none; }

    .header-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 999;
        align-items: stretch;
        text-align: center;
        box-shadow: 0 4px 32px rgba(0, 0, 0, 0.04);
    }
    .header-nav.open {
        transform: translateY(0);
    }
    .header-nav a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        color: var(--dark);
    }
    .header-nav a::after {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }

    .hero { min-height: auto; padding: 80px 0 56px; }
    .hero h1 { font-size: 30px; }
    .hero-sub { font-size: 15px; }
    .hero-actions .btn { flex: 1 1 100%; justify-content: center; }

    .stats-strap-grid { flex-wrap: wrap; justify-content: center; }
    .stat-item { flex: 1 1 45%; padding: 6px 8px; }
    .stat-divider { display: none; }
    .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(0, 0, 0, 0.06); padding-bottom: 10px; }
    .stat-item .stat-number { font-size: 22px; }

    .ps-section-white { padding: 56px 0; }
    .ps-card-white { padding: 24px 20px; }
    .ps-card-header h3 { font-size: 19px; }

    .why-ram-section { padding: 56px 0 48px; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .feature-card { padding: 24px 16px; }
    .feature-card .card-icon { font-size: 28px; }
    .feature-card h4 { font-size: 15px; }
    .feature-card p { font-size: 13px; }

    .finishes-white { padding: 56px 0 48px; }
    .finishes-grid-white { grid-template-columns: 1fr 1fr; gap: 14px; }
    .finish-card-white { padding: 20px 16px; }
    .finish-card-white .card-icon { font-size: 30px; }
    .finish-card-white h4 { font-size: 15px; }
    .finish-card-white p { font-size: 13px; }

    .cta-immersive { padding: 56px 0 48px; }
    .cta-discount { font-size: 40px; }
    .cta-offer-text { font-size: 18px; }
    .cta-features-list { flex-direction: column; align-items: center; gap: 6px; }
    .cta-button-group .btn { flex: 1 1 100%; justify-content: center; }

    .how-it-works-white { padding: 56px 0 48px; }
    .steps-grid-white { grid-template-columns: 1fr 1fr; gap: 14px; }
    .step-item { padding: 24px 16px; }
    .step-item .step-number { width: 44px; height: 44px; font-size: 16px; }
    .step-item h4 { font-size: 15px; }
    .step-item p { font-size: 13px; }

    .trusted-dubai { padding: 48px 0 40px; }
    .locations-grid-trusted { gap: 10px; }
    .location-item { padding: 10px 18px 10px 16px; }
    .location-item .location-name { font-size: 14px; }
    .trusted-badge { padding: 8px 20px; }
    .trusted-badge .badge-text { font-size: 12px; }

    .faq-white { padding: 48px 0 40px; }
    .faq-question-white { padding: 16px 20px; font-size: 15px; }
    .faq-answer-white { padding: 0 20px; font-size: 14px; }
    .faq-item-white.open .faq-answer-white { padding: 0 20px 18px; }

    .final-cta-enhanced { padding: 56px 0 48px; }
    .final-title { font-size: 30px; }
    .final-desc { font-size: 16px; }
    .final-button-group .btn { flex: 1 1 100%; justify-content: center; padding: 16px 28px; font-size: 15px; }

    .footer-enhanced { padding: 40px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
    .footer-brand { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-brand-desc { max-width: 100%; text-align: center; }
    .footer-logo { align-items: center; }
    .footer-logo{ width: 100%; }
    .footer-nav { text-align: center; }
    .footer-links { align-items: center; grid-template-columns: 1fr; }
    .footer-contact { text-align: center; }
    .footer-contact-item { justify-content: center; }
    .footer-cta-buttons { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 0 20px; }

    .section-title { font-size: 26px; }
    .section-sub { font-size: 15px; }
    .section-padding { padding: 56px 0; }
    .section-padding-sm { padding: 40px 0; }
    .container { padding: 0 16px; }

    .bg-cube-1, .bg-cube-2 { display: none; }
    .bg-swatch-1, .bg-swatch-2, .bg-swatch-3 { display: none; }
    .bg-diamond-1, .bg-diamond-2 { display: none; }
    .cta-line-1, .cta-line-2, .cta-line-3, .cta-line-4 { display: none; }
    .cta-cube-1, .cta-cube-2 { display: none; }
    .cta-glow-1, .cta-glow-2 { display: none; }
    .cta-sparkle-1, .cta-sparkle-2, .cta-sparkle-3, .cta-sparkle-4 { display: none; }
    .hiw-line-1, .hiw-line-2, .hiw-line-3, .hiw-line-4 { display: none; }
    .hiw-circle-1, .hiw-circle-2 { display: none; }
    .faq-circle-3 { display: none; }
    .final-cube-3 { display: none; }
    .final-glow-1, .final-glow-2 { display: none; }
    .final-sparkle-1, .final-sparkle-2, .final-sparkle-3, .final-sparkle-4 { display: none; }
    .final-line-1, .final-line-2 { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .stat-item { flex: 1 1 100%; border-bottom: 1px solid rgba(0, 0, 0, 0.06); padding-bottom: 10px; }
    .stat-item:last-child { border-bottom: none; }
    .features-grid { grid-template-columns: 1fr; }
    .finishes-grid-white { grid-template-columns: 1fr; }
    .steps-grid-white { grid-template-columns: 1fr; }
    .locations-grid-trusted { flex-direction: column; align-items: center; }
    .location-item { width: 100%; max-width: 280px; justify-content: center; }
    .trusted-badge { padding: 6px 16px; }
    .trusted-badge .badge-text { font-size: 11px; }
    .faq-question-white { padding: 14px 16px; font-size: 14px; }
    .faq-answer-white { padding: 0 16px; font-size: 13px; }
    .faq-item-white.open .faq-answer-white { padding: 0 16px 16px; }
    .final-title { font-size: 26px; }
    .final-desc { font-size: 14px; }
    .final-button-group .btn { font-size: 14px; padding: 14px 20px; }
    .final-location { font-size: 12px; }
}