/* CSS Variables and High-Contrast Dual-Tone Baseline */
:root {
    --bg-dark: #0a0c10;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-light: #e0e6ed;
    --text-muted: #475569;
    --accent-gold: #d4af37;
    --accent-bronze: #b08d28;
    --accent-gold-glow: rgba(212, 175, 55, 0.4);
    --accent-silver: #a0aab2;
    --card-dark: rgba(20, 25, 33, 0.7);
    --card-light: #ffffff;
    --wa-green: #25D366;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Selection */
::selection {
    background: rgba(212, 175, 55, 0.3);
    /* Gold with opacity */
    color: #fff;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.6);
}

/* =========================================
   HERO SECTION (The Dark Matter Void)
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    /* Replaced fixed height to allow expansion */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Clean fallback background */
    background: radial-gradient(circle at center, rgba(30, 35, 45, 1) 0%, rgba(10, 12, 16, 1) 100%);
}

#hero-nebula-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Optional: Slight opacity to blend with fallback if needed, or 1.0 for full effect */
    opacity: 0.85;
}

/* Ambient lighting effect */
.void-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(160, 170, 178, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 5rem;
    /* Reduced to stop pushing buttons off-screen */
}

/* 3D Logo Container & Volumetric Glow */
.logo-container {
    width: 100%;
    max-width: 700px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Entrance animation so it appears from the nebula */
    animation: nebula-emerge 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    /* Starts hidden until animation kicks in */
}

@keyframes nebula-emerge {
    0% {
        opacity: 0;
        transform: scale(0.15) translateZ(-200px);
        /* 
           The Illusion: Make the 2D logo look exactly like the glowing gold WebGL satellite 
           that we mathematically forced to the center of the screen at T=0.
        */
        filter: blur(8px) brightness(300%) sepia(1) hue-rotate(5deg) saturate(300%);
    }

    15% {
        opacity: 1;
        transform: scale(0.15) translateZ(-200px);
        filter: blur(8px) brightness(300%) sepia(1) hue-rotate(5deg) saturate(300%);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateZ(0);
        /* Return to natural crisp metallic colors */
        filter: blur(0px) brightness(100%) sepia(0) hue-rotate(0deg) saturate(100%);
    }
}

/* Volumetric Golden Aura */
.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.1) 40%, transparent 70%);
    filter: blur(25px);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    animation: energy-pulse 4s ease-in-out infinite alternate;
}

@keyframes energy-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
        filter: blur(20px);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
        filter: blur(30px);
    }
}

/* Ensure logo responds correctly to small screen sizes */
@media (max-width: 768px) {
    .logo-container {
        max-width: 100%;
    }

    .logo-container::before {
        width: 250px;
        height: 250px;
    }
}

.hero-video,
.hero-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;

    /* 3D 4K Enhancement Filters - Removed drop-shadow to stop JPG bounding box from being visible */
    filter: saturate(130%);
    transform: scale(1.05);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.logo-container:hover .hero-image {
    transform: scale(1.08);
    /* slight zoom to pop out */
    filter: saturate(140%) contrast(1.1);
}

/* Make halo glow intensely on hover */
.logo-container:hover::before {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.15) 50%, transparent 70%);
    animation: energy-pulse-fast 1s ease-in-out infinite alternate;
}

@keyframes energy-pulse-fast {
    0% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
        filter: blur(25px);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
        filter: blur(35px);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.main-headline {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0c675 40%, #d4af37 60%, #b08d28 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: text-shimmer 6s linear infinite;
}

@keyframes text-shimmer {
    to {
        background-position: 200% center;
    }
}

.gold-text {
    background: linear-gradient(to right, #fcebb6, #d4af37, #8a7322, #d4af37, #fcebb6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    animation: gold-breathe 8s ease infinite;
}

@keyframes gold-breathe {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.sub-headline {
    font-size: 1.25rem;
    color: var(--accent-silver);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Call to Action Button - Base Styles */
.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    /* Removed backdrop-filter to prevent conflict with mix-blend-mode inside */
}

/* Call to Action Button - Animated Shimmer Variant */
:root {
    --glow-hue: 45deg;
    /* Gold hue */
    --shadow-hue: 45deg;
    --spring-easing: linear(0, 0.002, 0.01 0.9%, 0.038 1.8%, 0.156, 0.312 5.8%, 0.789 11.1%, 1.015 14.2%,
            1.096, 1.157, 1.199, 1.224 20.3%, 1.231, 1.231, 1.226, 1.214 24.6%,
            1.176 26.9%, 1.057 32.6%, 1.007 35.5%, 0.984, 0.968, 0.956, 0.949 42%,
            0.946 44.1%, 0.95 46.5%, 0.998 57.2%, 1.007, 1.011 63.3%, 1.012 68.3%,
            0.998 84%, 1);
    --spring-duration: 1.33s;
}

@property --shimmer {
    syntax: "<angle>";
    inherits: false;
    initial-value: 33deg;
}

@keyframes shimmer {
    0% {
        --shimmer: 0deg;
    }

    100% {
        --shimmer: 360deg;
    }
}

@keyframes shine {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    55% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes text {
    0% {
        background-position: 100% center;
    }

    100% {
        background-position: -100% center;
    }
}

.shimmer-btn {
    --inset: 40px;
    color: var(--bg-dark);
    /* Gold to dark gradient base */
    background-image: linear-gradient(315deg, #fcebb6 -10%, #d4af37 50%, #8a7322 110%);
    isolation: isolate;
    box-shadow: 0 2px 3px 1px hsl(var(--glow-hue) 50% 20% / 50%), inset 0 -10px 20px -10px hsla(var(--shadow-hue), 10%, 90%, 95%);
    border: none;
    transition: all var(--spring-duration) var(--spring-easing);
}

.shimmer-btn:hover:not(:active),
.shimmer-btn.active {
    transition-duration: calc(var(--spring-duration)*0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 15px -2px hsl(var(--glow-hue) 50% 20% / 50%), inset 0 0 0 transparent;
}

.shimmer-btn:active {
    transform: scale(1.05);
    transition-duration: calc(var(--spring-duration)*0.5);
}

.shimmer-btn .shimmer {
    position: absolute;
    inset: calc(var(--inset) * -1);
    border-radius: inherit;
    pointer-events: none;
    mask-image: conic-gradient(from var(--shimmer, 0deg),
            transparent 0%,
            transparent 20%,
            black 36%,
            black 45%,
            transparent 50%,
            transparent 70%,
            black 85%,
            black 95%,
            transparent 100%);
    mask-size: cover;
    mix-blend-mode: plus-lighter;
    animation: shimmer 1s linear infinite both;
}

.shimmer-btn:hover .shimmer::before,
.shimmer-btn:hover .shimmer::after,
.shimmer-btn.active .shimmer::before,
.shimmer-btn.active .shimmer::after {
    opacity: 1;
    animation: shine 1.2s ease-in 1 forwards;
}

.shimmer-btn .shimmer::before,
.shimmer-btn .shimmer::after {
    transition: all 0.5s ease;
    opacity: 0;
    content: "";
    border-radius: inherit;
    position: absolute;
    mix-blend-mode: color;
    inset: var(--inset);
    pointer-events: none;
}

.shimmer-btn .shimmer::before {
    box-shadow: 0 0 calc(var(--inset) * 0.1) 2px hsl(var(--glow-hue) 20% 95%),
        0 0 calc(var(--inset) * 0.18) 4px hsl(var(--glow-hue) 20% 80%),
        0 0 calc(var(--inset) * 0.33) 4px hsl(var(--glow-hue) 50% 70%),
        0 0 calc(var(--inset) * 0.66) 5px hsl(var(--glow-hue) 100% 70%);
    z-index: -1;
}

.shimmer-btn .shimmer::after {
    box-shadow: inset 0 0 0 1px hsl(var(--glow-hue) 70% 95%),
        inset 0 0 2px 1px hsl(var(--glow-hue) 100% 80%),
        inset 0 0 5px 2px hsl(var(--glow-hue) 100% 70%);
    z-index: 2;
}

.shimmer-btn .text {
    color: transparent;
    background-image: linear-gradient(120deg, transparent, hsla(var(--glow-hue), 100%, 80%, 0.66) 40%, hsla(var(--glow-hue), 100%, 90%, .9) 50%, transparent 52%);
    -webkit-background-clip: text;
    background-clip: text;
    background-color: var(--bg-dark);
    background-repeat: no-repeat;
    background-size: 300% 300%;
    background-position: center 200%;
}

.shimmer-btn:hover .text,
.shimmer-btn.active .text {
    animation: text .66s ease-in 1 both;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* =========================================
   PREMIUM GLASS BUTTON (.glass-btn)
   ========================================= */
.glass-btn {
    position: relative;
    font-family: inherit;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1.5px solid transparent;
    border-radius: 50px;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.glass-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1.5px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(212, 175, 55, 0.6) 25%,
            rgba(252, 235, 182, 0.6) 50%,
            rgba(138, 115, 34, 0.6) 75%,
            rgba(255, 255, 255, 0.4) 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderFlow 3s linear infinite;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.glass-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(212, 175, 55, 0.4) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glass-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow:
        0 12px 48px rgba(212, 175, 55, 0.3),
        0 0 80px rgba(252, 235, 182, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.02);
}

.glass-btn:hover::before {
    opacity: 1;
    animation-duration: 2s;
}

.glass-btn:hover::after {
    opacity: 1;
}

.glass-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow:
        0 6px 24px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.glass-btn .shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 45%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.1) 55%,
            transparent 100%);
    transform: rotate(30deg);
    animation: glass-shimmer 3s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes glass-shimmer {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.glass-btn:hover .shimmer {
    animation-duration: 1.5s;
}

.glass-btn span.text {
    position: relative;
    z-index: 2;
}

/* Specific overrides for Navbar vs Hero locations */
#nav-btn-glass {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

/* =========================================
   STICKY NAVIGATION
   ========================================= */
.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Glassmorphism background */
    background: rgba(18, 22, 30, 0.75);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Increased gap slightly for the bigger logo */
}

.nav-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    /* Increased slightly to match bigger logo */
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* =========================================
   TRUSTED BRANDS MARQUEE
   ========================================= */
.brands-marquee-section {
    background: var(--bg-dark);
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.marquee-label {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-silver);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    /* Edge fades */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: inline-block;
    animation: marquee-scroll 25s linear infinite;
    padding-left: 2rem;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

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

    /* Translate exactly half to seamless loop the duplicate */
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: -0.5px;
    margin: 0 1.5rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    cursor: default;
}

.brand-item:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.brand-dot {
    color: var(--accent-gold);
    opacity: 0.5;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* =========================================
   TRUST BANNER (Why Choose Us) - PREMIUM DARK
   ========================================= */
.trust-banner {
    background: rgba(18, 22, 30, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 3rem 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    z-index: 0;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.trust-item {
    padding: 1rem;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.trust-item h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.trust-item p {
    font-size: 0.95rem;
    color: var(--accent-silver);
}

/* =========================================
   SERVICES SECTION - PREMIUM REDESIGN
   ========================================= */
.services {
    padding: 8rem 2rem;
    background-color: var(--bg-dark);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: orb-breathe 8s ease-in-out infinite alternate;
}

@keyframes orb-breathe {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0c675 40%, #d4af37 60%, #b08d28 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -1px;
    animation: text-shimmer 6s linear infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.svg-hidden-defs {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* =========================================
   ANIMATED SVG BORDER CARDS (.animated-card)
   ========================================= */
.animated-card {
    position: relative;
    border-radius: 20px;
    padding: 2px;
    /* Space for the inner card to reveal the border */
    text-align: center;
    overflow: visible;
    /* Allow glow to bleed */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.animated-card:hover {
    transform: translateY(-12px);
    z-index: 10;
}

/* Background glow that bleeds outwards */
.card-glow-bg {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at 50% 50%,
            rgba(212, 175, 55, 0.15) 0%,
            transparent 70%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(20px);
}

.animated-card:hover .card-glow-bg {
    opacity: 1;
}

.card-inner-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: var(--bg-dark);
    /* Fallback */
}

/* The frame that holds the animated SVG edge */
.card-border-frame {
    position: absolute;
    inset: -4px;
    /* Pull it slightly outside the content bounds */
    border-radius: 20px;
    z-index: 0;
}

/* The element that actually receives the SVG filter */
.card-turbulent-border {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border: 3px solid var(--accent-gold);
    box-sizing: border-box;
    filter: url(#svg-turbulence-border);
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.animated-card:hover .card-turbulent-border {
    opacity: 1;
    border-width: 4px;
    border-color: #ffe699;
    /* Brighten gold on hover */
}

/* The solid content layer that sits on top of the turbulent border */
.card-content {
    position: relative;
    z-index: 10;
    background: rgba(18, 22, 30, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 3rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.01));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    transition: all 0.5s ease;
}

.premium-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.service-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-content p {
    color: var(--accent-silver);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* =========================================
   TRANSPARENT PRICING & PROCESS
   ========================================= */
.pricing-process {
    padding: 8rem 2rem;
    background-color: var(--bg-dark);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        /* Center horizontally out highlighted card */
    }
}

.pricing-card {
    background: rgba(18, 22, 30, 0.7);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.highlighted-card {
    background: rgba(26, 30, 40, 0.8);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
    /* Make the middle one stand out more */
}

.highlighted-card:hover {
    transform: scale(1.05) translateY(-10px);
}

.highlight-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 0;
    pointer-events: none;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 1;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.pricing-desc {
    font-size: 1rem;
    color: var(--accent-silver);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    /* Pushes content down so cards equal height */
}

.pricing-cost {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.quote-btn {
    width: 100%;
    margin-top: auto;
    position: relative;
    z-index: 1;
}


/* =========================================
   CUSTOMER REVIEWS SECTION - PREMIUM REDESIGN
   ========================================= */
.reviews {
    padding: 8rem 2rem;
    /* Increased padding */
    background-color: var(--bg-dark);
    /* Changed from light to dark */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Subtle background glow for reviews section */
.reviews::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: orb-breathe 10s ease-in-out infinite alternate-reverse;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.review-card {
    background: rgba(18, 22, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(22, 26, 35, 0.8);
}

.stars {
    /* Premium metallic gradient for stars */
    background: linear-gradient(to right, #fcebb6, #d4af37, #8a7322, #d4af37, #fcebb6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    animation: gold-breathe 8s ease infinite reverse;
}

.review-text {
    font-size: 1.05rem;
    color: var(--accent-silver);
    /* Adjusted for dark mode */
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.avatar-ring {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #8a7322);
    padding: 2px;
    position: relative;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 50%;
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.verified-badge {
    font-size: 0.75rem;
    color: var(--wa-green);
    font-weight: 600;
    letter-spacing: 0.5px;
}



.reviews-cta {
    text-align: center;
}

.google-review-btn {
    display: inline-flex;
    background: rgba(18, 22, 30, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.google-review-btn:hover {
    background: rgba(22, 26, 35, 0.8);
    color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.3);
}

.google-icon {
    font-weight: 800;
    color: var(--text-light);
    /* Changed google 'G' color to match dark aesthetic / silver */
    font-size: 1.2rem;
}

/* =========================================
   MODAL STYLES
   ========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    align-items: flex-start;
    /* So tall forms don't get clipped at the top */
    justify-content: center;
    overflow-y: auto;
    padding: 4rem 0;
    /* Breathing room top and bottom */
}

/* Background Color Blobs to make the glass look premium */
.modal-bg-blobs {
    position: fixed;
    inset: -50%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.35), transparent 35%),
        radial-gradient(circle at 75% 65%, rgba(138, 115, 34, 0.35), transparent 40%);
    filter: blur(140px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.modal-content {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    width: 90%;
    max-width: 550px;
    position: relative;
    margin: auto;
    /* auto centers it vertically inside the flex container when possible */
    z-index: 1;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transform-style: preserve-3d;
    animation: fadeInScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* NOISE OVERLAY */
.modal-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

/* DECORATIVE ELEMENTS (Form elements sit above these) */
.modal-content>* {
    position: relative;
    z-index: 2;
}

.color-splash {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 1), rgba(138, 115, 34, 1) 60%, transparent 70%);
    opacity: 0.25;
    filter: blur(60px);
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 1;
    animation: colorSplashFloat 12s sine-in-out infinite alternate;
}

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

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

.divider {
    margin: 20px 0 15px;
    height: 1px;
    background: linear-gradient(to right, transparent, #fff, transparent);
    opacity: 0.2;
}

.accent-dot {
    width: 6px;
    height: 6px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fcebb6, #d4af37);
    opacity: 0.7;
}

.modal-title {
    margin-bottom: 0.5rem;
    color: transparent;
    font-size: 2rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -1px;
}

.modal-title span {
    display: inline-block;
    background: linear-gradient(120deg, #fff2cc, #ffd699, #fff2cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 230, 210, 0.7);
    margin-bottom: 1rem;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--accent-silver);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #fff;
}

/* Cleaned up old title selectors to use the new classes above */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--accent-silver);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.checkbox-group-container {
    margin-bottom: 2rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 0.8rem;
}

#wa-submit-btn {
    width: 100%;
    border-radius: 50px;
    margin-top: 1rem;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #fff;
    -webkit-user-select: none;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.custom-checkbox:hover input~.checkmark {
    border-color: var(--accent-gold);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* =========================================
   CONTACT MODAL STYLES
   ========================================= */
.contact-modal-content {
    max-width: 500px;
}

.contact-options-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #fcebb6, var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.contact-icon {
    font-size: 2.2rem;
    margin-right: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.contact-details {
    flex-grow: 1;
}

.contact-details h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: -0.5px;
}

.contact-details p {
    color: var(--accent-silver);
    font-size: 0.9rem;
    margin: 0;
}

/* QR Code Section Styling */
.qr-code-section {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-divider {
    width: 60%;
    margin: 0 auto 1.5rem;
}

.qr-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.qr-subtitle {
    font-size: 0.85rem;
    color: var(--accent-silver);
    margin-bottom: 1.5rem;
    max-width: 80%;
}

.qr-card {
    position: relative;
    padding: 15px;
    background: rgba(18, 22, 30, 0.8);
    border-radius: 20px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.qr-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.qr-glow {
    border-radius: 25px;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
}

.qr-frame {
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: inherit;
    transition: all 0.3s ease;
}

.qr-card:hover .qr-frame {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), inset 0 0 10px rgba(212, 175, 55, 0.1);
}

.qr-container {
    background: #fff;
    /* Ensure high contrast for scanning */
    padding: 10px;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.qr-image {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
}

@media (max-width: 600px) {

    /* Slightly smaller QR code on mobile devices */
    .qr-image {
        width: 120px;
        height: 120px;
    }
}

/* =========================================
   PREMIUM FOOTER
   ========================================= */
.site-footer {
    background: rgba(10, 12, 16, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.footer-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-column a,
.footer-text-muted {
    color: var(--accent-silver);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    position: relative;
    z-index: 10;
}

/* =========================================
   RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2.2rem;
    }

    .sub-headline {
        font-size: 1.1rem;
    }

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

    .hero {
        padding-top: 2rem;
    }

    .logo-container {
        height: auto;
        /* Remove fixed height so it relies on natural aspect ratio */
    }

    .hero-image {
        transform: scale(1.1);
        /* Increase crispness/focal weight on mobile */
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: stretch;
        padding: 0 1rem;
        /* Added padding so buttons aren't flush to screen edge */
    }

    .glass-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Sticky Nav Mobile */
    .nav-content {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        /* Hide links on very small screens to save space */
    }

    /* Trust Banner Mobile */
    .trust-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-item {
        padding: 0.5rem;
    }

    /* Reviews Mobile */
    .section-title {
        font-size: 2rem;
    }

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