/* =========================================
   Elite Resin West Midlands - Premium Design System
   ========================================= */

:root {
    --bg-dark: #020617;
    --bg-surface: rgba(255, 255, 255, 0.02);
    --bg-surface-hover: rgba(255, 255, 255, 0.04);

    --color-text: #f8fafc;
    --color-text-muted: #cbd5e1; /* Boosted for better contrast (was #94a3b8) */

    --color-gold: #fbbf24;
    --color-gold-glow: rgba(251, 191, 36, 0.2);

    --color-blue: #38bdf8;
    --color-blue-glow: rgba(56, 189, 248, 0.2);
    
    --color-stone: #e2e8f0;

    --border-glass: 1px solid rgba(255, 255, 255, 0.05);
    --border-glass-bright: 1px solid rgba(255, 255, 255, 0.1);

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-tap-highlight-color: transparent;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1.125rem;
    /* Increased base font size */
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   Ambient Background (Mesh Gradients)
   ========================================= */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-dark);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--color-blue-glow);
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--color-gold-glow);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 50%;
    width: 40vw;
    height: 40vw;
    background: rgba(139, 92, 246, 0.15);
    transform: translateX(-50%);
    animation-delay: -10s;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

/* =========================================
   Typography & Utilities
   ========================================= */
.text-gradient-gold {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #fbbf24, #f59e0b); /* Changed to Gold for consistency */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-block {
    display: inline;
}

@media (max-width: 768px) {
    .mobile-block {
        display: block;
    }
}

.sub-heading {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold); /* Increased prominence */
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* =========================================
   Navigation & Logo
   ========================================= */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #091022;
    /* Exact match for new logo background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all 0.4s var(--ease-out-expo);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 2%;
    max-width: 1800px;
    margin: 0 auto;
    gap: 30px;
}

/* Text-based Logo Branding */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: white;
}

.logo-sub {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--color-gold);
    margin-top: 2px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
    gap: 20px;
}

.nav-center {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.contact-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Tightly packed so the whole block centers perfectly */
}

.social-sublist {
    display: flex;
    gap: 20px;
    align-items: center;
    white-space: nowrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
}

.brand-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.hover-underline {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-text);
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s var(--ease-out-expo);
}

.hover-underline:hover::after {
    width: 100%;
}

.btn-testimonials {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-gold);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.btn-testimonials:hover {
    background: var(--color-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 2100;
}

.mobile-menu-btn svg {
    width: 32px;
    height: 32px;
    transition: transform 0.4s var(--ease-out-expo);
}

.mobile-menu-btn.active svg {
    transform: rotate(90deg);
}

.mobile-menu-btn.active .line-mid {
    opacity: 0;
}
/* Header Expansion Menu */
.nav-expansion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: #091022;
}

.nav-expansion.active {
    max-height: 600px;
}

.expansion-content {
    padding: 0 5% 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.expansion-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding-top: 30px;
}

.expansion-link {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.expansion-link:active {
    color: var(--color-gold);
}

.expansion-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.expansion-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 100px;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expansion-btn.call {
    background: rgba(14, 165, 233, 0.1);
    color: white;
    border-color: rgba(14, 165, 233, 0.3);
}

.expansion-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.mobile-close-btn, .menu-dimmer {
    display: none !important;
}

/* Service Card Visual Enhancements */
.spotlight-card {
    position: relative;
    overflow: hidden;
}

.card-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3; /* Increased for better clarity */
    z-index: 0;
    transition: transform 0.8s var(--ease-out-expo);
}

.spotlight-card:hover .card-bg-img {
    transform: scale(1.1);
    opacity: 0.2;
}

.driveway-card .card-bg-img { background-image: url('driveway_resin.png'); }
.patio-card .card-bg-img { background-image: url('patio_resin.png'); }
.decking-card .card-bg-img { background-image: url('path_resin.png'); }
.gutter-card .card-bg-img { background-image: url('commercial_resin.png'); }

.card-content {
    position: relative;
    z-index: 1;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    border: var(--border-glass-bright);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top-btn:hover {
    background: rgba(14, 165, 233, 0.3);
    transform: translateY(-5px);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

/* =========================================
   Hero Section Fix
   ========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 5% 80px;
    /* Increased top padding to account for full width header */
    position: relative;
}

/* Replaced absolute positioning with a robust Grid */
.hero-grid-container {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: var(--bg-surface);
    border: var(--border-glass);
    border-radius: 100px;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

.magnetic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: white;
    color: var(--bg-dark);
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-display);
    position: relative;
    overflow: hidden;
    will-change: transform;
    transition: transform 0.1s linear;
}

.magnetic-text {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.btn-flare {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.4) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s var(--ease-out-expo);
    pointer-events: none;
    z-index: 1;
}

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

.hero-visual {
    position: relative;
    z-index: 1;
}

.visual-glass-card {
    background: var(--bg-surface);
    border: var(--border-glass-bright);
    border-radius: var(--radius-xl);
    padding: 24px;
    backdrop-filter: blur(40px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: calc(var(--radius-xl) - 12px);
}

.visual-stats {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background: rgba(10, 15, 30, 0.9);
    backdrop-filter: blur(20px);
    border: var(--border-glass-bright);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   Infinite Marquee
   ========================================= */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: rgba(10, 15, 30, 0.5);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    padding: 24px 0;
    backdrop-filter: blur(10px);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0 40px;
    color: var(--color-text);
    white-space: nowrap;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* =========================================
   Trust Bar
   ========================================= */
.trust-bar {
    padding: 30px 5%;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon.gold { color: var(--color-gold); }
.trust-icon.facebook-gold { color: #1877F2; }

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

.trust-val {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.05em;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--color-stone);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .trust-bar-content {
        flex-direction: column;
        gap: 30px;
    }
    .trust-divider { display: none; }
}

/* =========================================
   Bento Grid (Services) Fix
   ========================================= */
.bento-section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 80px;
}

.section-heading h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(350px, auto);
    /* Increased minimum height */
    gap: 24px;
}

.bento-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0; /* Padding moved to content */
}

.card-bg-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    z-index: 1;
    transition: opacity 0.5s ease;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.4) 50%, transparent 100%);
}

.bento-card:hover .card-bg-gradient {
    opacity: 0.25;
}

.gradient-blue {
    background: radial-gradient(circle at top right, var(--color-blue), transparent 60%);
}

.gradient-gold {
    background: radial-gradient(circle at top right, var(--color-gold), transparent 60%);
}

.card-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: var(--border-glass);
    pointer-events: none;
    z-index: 1;
}

.card-content {
    padding: 40px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push text to bottom */
    height: 100%;
}

.card-icon {
    width: 80px;
    /* Fix: Increased icon size */
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    margin-bottom: auto;
    /* Pushes text down, icon stays top */
    transition: transform 0.4s var(--ease-out-expo);
}

.card-icon svg {
    width: 40px;
    height: 40px;
}

.bento-card:hover .card-icon {
    transform: scale(1.1) translateY(-5px);
    background: rgba(14, 165, 233, 0.15);
    color: white;
}

.card-text {
    margin-top: 40px;
}

.bento-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.bento-card p {
    color: white; /* Increased contrast on dark overlay */
    font-size: 1.1rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
    opacity: 0.9;
}

.tall-card {
    grid-row: span 2;
}

.wide-card {
    grid-column: span 2;
}

/* Spotlight Effect */
.spotlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0),
            rgba(255, 255, 255, 0.08),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.spotlight-card:hover::before {
    opacity: 1;
}

/* =========================================
   Testimonials Section (Reference-Inspired)
   ========================================= */
.testimonials-section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-masonry {
    column-count: 3;
    column-gap: 24px;
    width: 100%;
}

.testimonial-card {
    background: #1e293b; /* slate-800 */
    border: 1px solid #334155; /* slate-700 */
    border-radius: 20px;
    padding: 32px;
    display: inline-block;
    width: 100%;
    margin-bottom: 24px;
    break-inside: avoid;
    transition: transform 0.3s ease, border-color 0.3s ease;
    /* Reduced animation complexity to fix choppiness */
}

.testimonial-card:hover {
    background: #1e293b;
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.card-stars {
    color: #fbbf24; /* gold */
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f8fafc; /* slate-50 */
    margin-bottom: 24px;
    position: relative;
    font-weight: 400;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.client-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.service-tag {
    font-size: 0.85rem;
    color: #94a3b8; /* slate-400 */
    font-weight: 500;
}

.testimonial-hidden {
    display: none;
    opacity: 0;
}

.testimonial-hidden.visible {
    display: inline-block;
    animation: fadeIn 0.6s forwards;
}

.testimonials-footer {
    text-align: center;
    margin-top: 40px;
}

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

@media (max-width: 1024px) {
    .testimonials-masonry { column-count: 2; }
}

@media (max-width: 640px) {
    .testimonials-masonry { column-count: 1; }
}

.facebook-rating-scene {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.scene-stars {
    font-size: clamp(2rem, 5vw, 4rem) !important;
}

.scene-stars-container {
    font-size: 2rem;
    color: #fbbf24;
    letter-spacing: 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating-number {
    font-size: 1rem;
    color: white;
    font-weight: 700;
    letter-spacing: 0;
}

.scene-subtitle {
    font-size: 1.1rem;
    color: var(--color-stone);
    max-width: 600px;
}

.price-match-badge {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--bg-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 4px;
}

.badge-text p {
    font-size: 0.95rem;
    color: var(--color-stone);
    line-height: 1.5;
}

/* =========================================
   Results (Why Us) Section
   ========================================= */
.results-section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.results-text h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 24px;
}

.results-text p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.premium-list {
    list-style: none;
}

.premium-list li {
    font-size: 1.15rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.list-dot {
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-gold-glow);
}

.glass-frame {
    background: var(--bg-surface);
    border: var(--border-glass-bright);
    padding: 16px;
    border-radius: var(--radius-xl);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s var(--ease-out-expo);
}

.glass-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.transformation-img {
    width: 100%;
    border-radius: calc(var(--radius-xl) - 16px);
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(30, 40, 60, 0.9);
    backdrop-filter: blur(20px);
    border: var(--border-glass-bright);
    padding: 16px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* =========================================
   Gallery Section
   ========================================= */
.gallery-section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    column-count: 3;
    column-gap: 16px;
    width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    border: var(--border-glass-bright);
    break-inside: avoid;
    margin-bottom: 16px;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.overlay-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s var(--ease-out-expo);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-icon svg {
    width: 24px;
    height: 24px;
}

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

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

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

.item-large,
.item-wide {
    /* Removed Grid spans as we are using CSS columns for perfect masonry */
}

/* =========================================
   Contact Section Fix
   ========================================= */
.contact-section {
    padding: 120px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-box {
    background: var(--bg-surface);
    border: var(--border-glass-bright);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-details h2 {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.contact-details p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.method-link {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.method-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}

.icon-glass {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

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

.method-text .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.method-text .value {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
}

/* Completely Rewritten Form */
.solid-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
    background: var(--bg-dark);
    color: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.submit-btn-fixed {
    margin-top: 16px;
    padding: 20px;
    background: white;
    color: var(--bg-dark);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.submit-btn-fixed:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
}

.submit-btn-fixed svg {
    /* Critical Fix: Constrain SVG width */
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.submit-btn-fixed:hover svg {
    transform: translateX(6px);
}

/* =========================================
   Footer Premium Overhaul
   ========================================= */
.premium-footer {
    position: relative;
    background: #091022;
    /* Exact match for new logo background */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 5% 40px;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: radial-gradient(circle, var(--color-blue) 0%, transparent 100%);
    box-shadow: 0 0 40px 2px var(--color-blue);
    opacity: 0.5;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo-wrap {
    display: inline-flex;
    margin-bottom: 24px;
    box-shadow: none;
    /* Removed shadow since it's a blended background */
}

.footer-logo {
    height: 100px;
    width: auto;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.premium-footer h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

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

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.area-col strong {
    display: block;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.area-col span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    display: block;
}

.footer-contact p {
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.footer-phone {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 12px 0;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: var(--color-blue);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(14, 165, 233, 0.15);
    color: var(--color-blue);
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-2px);
}

.dot-pulse-small {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.availability {
    display: flex;
    align-items: center;
    font-size: 0.9rem !important;
    color: #10b981 !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: var(--border-glass);
    color: var(--color-text-muted); /* Boosted for accessibility */
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

.footer-watermark {
    position: absolute;
    bottom: -5vw;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

/* =========================================
   3D Reveal Animations
   ========================================= */
.reveal-3d {
    opacity: 0;
    transform: perspective(1000px) rotateX(10deg) translateY(40px);
    transition: opacity 1s, transform 1s var(--ease-out-expo);
    will-change: opacity, transform;
}

.reveal-3d.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* =========================================
   Before/After Slider Section
   ========================================= */
.slider-section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.slider-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.comparison-container {
    background: var(--bg-surface);
    border: var(--border-glass-bright);
    border-radius: var(--radius-xl);
    padding: 12px;
    backdrop-filter: blur(20px);
}

.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* Wider landscape ratio to prevent side-cropping */
    border-radius: calc(var(--radius-xl) - 12px);
    overflow: hidden;
    cursor: ew-resize;
}

.image-after,
.image-before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.image-after {
    z-index: 1;
}

.image-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.slider-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    z-index: 10;
    cursor: ew-resize;
    margin: 0;
    touch-action: none; 
    -webkit-tap-highlight-color: transparent;
}

/* Hardening hit area for mobile/iOS */
.slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 60px; /* Large invisible hit area for fingers */
    height: 1000px; /* Ensure it covers the height */
    background: transparent;
    cursor: ew-resize;
}

.slider-range::-moz-range-thumb {
    width: 60px;
    height: 1000px;
    background: transparent;
    border: none;
    cursor: ew-resize;
}

.slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    z-index: 3;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    z-index: 4;
    pointer-events: none;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: var(--bg-dark);
}

.slider-button svg {
    width: 14px;
    height: 14px;
}

.comparison-label {
    padding: 20px 8px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.label-tags {
    display: flex;
    gap: 12px;
}

.label-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #cccccc;
}

.label-tags span:first-child { color: var(--color-gold); }
.label-tags span:last-child { color: var(--color-blue); }

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

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

/* =========================================
   Lightbox
   ========================================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out-expo);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-out-expo);
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: var(--border-glass-bright);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: var(--border-glass-bright);
    z-index: 10000;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* =========================================
   Mobile Optimization (Media Queries)
   ========================================= */
@media (max-width: 1200px) {
    .hero-grid-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .visual-stats {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: 90%;
        justify-content: center;
    }
}

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

    .gallery-grid {
        column-count: 2;
    }

    .wide-card {
        grid-column: span 1;
    }

    .container-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2100;
        background: rgba(255, 255, 255, 0.1); /* Increased opacity */
        border: 1px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        padding: 12px;
        border-radius: 12px;
    }

    .nav-content {
        justify-content: flex-start;
        position: relative;
    }

    .nav-left {
        flex: 1;
        width: auto;
        justify-content: flex-start;
    }

    .logo-main {
        font-size: 1.6rem; /* Slightly smaller for the longer text */
    }

    .logo-sub {
        font-size: 0.75rem; /* Proportionally adjusted */
        letter-spacing: 0.2em; /* Tighter letter spacing for better fit */
    }

    .bento-section,
    .results-section,
    .gallery-section,
    .contact-section {
        padding: 60px 5%; /* Slashed padding for mobile */
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        column-count: 1;
    }

    .tall-card {
        grid-row: span 1;
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-box {
        padding: 32px;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
        line-height: 1.1;
    }

    .glass-nav {
        padding: 12px 5%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand, .footer-links, .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo-wrap {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    /* Trust Bar Mobile */
    .trust-bar {
        padding: 40px 5%;
    }

    .trust-bar-content {
        flex-direction: column;
        gap: 40px;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .trust-icon {
        margin-bottom: 10px;
    }

    /* Rating Scene Mobile */
    .scene-stars {
        font-size: 2.2rem !important;
    }

    .facebook-logo-large svg {
        width: 32px;
        height: 32px;
    }

    .scene-stars-container {
        font-size: 1.5rem;
    }

    .scene-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* Price Match Badge Mobile */
    .price-match-badge {
        flex-direction: column;
        text-align: center;
        padding: 24px 15px;
        gap: 15px;
    }

    .badge-icon {
        margin: 0 auto;
    }
}