/* =========================================
   Shine Bright Exteriors - V2.1 Premium Fixes
   ========================================= */

:root {
    --bg-dark: #030712;
    --bg-surface: rgba(255, 255, 255, 0.03);
    --bg-surface-hover: rgba(255, 255, 255, 0.05);

    --color-text: #f8fafc;
    --color-text-muted: #cbd5e1;
    /* Lightened from 94a3b8 for better contrast */

    --color-gold: #f59e0b;
    --color-gold-glow: rgba(245, 158, 11, 0.3);

    --color-blue: #0ea5e9;
    --color-blue-glow: rgba(14, 165, 233, 0.3);

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

    --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, #38bdf8, #0284c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-heading {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* =========================================
   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;
}

/* Clean Logo Integration */
.logo-wrapper {
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
}

.logo-img {
    height: 120px;
    /* Scaled proportionally from 196px, increased */
    width: auto;
    display: block;
}

.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: flex-end;
    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-glow {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-glow:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.5);
}

.mobile-menu-btn .bar {
    position: relative;
    width: 28px;
    height: 2px;
    background: white;
    transition: all 0.4s var(--ease-out-expo);
    margin: 6px 0;
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Side Drawer Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 85vw;
    height: 100vh;
    background: rgba(9, 16, 34, 0.98);
    backdrop-filter: blur(25px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 120px 40px;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    visibility: hidden;
    will-change: transform;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    visibility: visible;
}

.menu-dimmer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

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

.mobile-nav-links {
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-link {
    display: block;
    width: 100%;
    padding: 20px 0;
    font-size: 1.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu-overlay.active .mobile-link {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Entry Animation */
.mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-link:nth-child(3) { transition-delay: 0.3s; }

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo);
    transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-actions {
    opacity: 1;
    transform: translateY(0);
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: var(--border-glass-bright);
}

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

.whatsapp-btn img {
    width: 24px;
    height: 24px;
}

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

.mobile-close-btn {
    display: none; /* Replaced by active hamburger */
}

/* 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%);
    }
}

/* =========================================
   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: space-between;
    /* Fix: Spaced elements instead of pushing to bottom */
}

.card-bg-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    z-index: 0;
    transition: opacity 0.5s ease;
}

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

.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;
    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;
    /* Increased size */
    margin-bottom: 16px;
}

.bento-card p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.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;
}

/* =========================================
   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);
}

.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: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

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

.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;
}

/* =========================================
   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: 5%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2100;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }

    .nav-content {
        justify-content: center;
        position: relative;
    }

    .nav-left {
        flex: none !important;
        width: auto;
        justify-content: center;
    }

    .logo-img {
        height: 120px; /* Centered and enlarged */
    }

    .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(2.5rem, 10vw, 4rem);
    }

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

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

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

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