/* ============================================================
   CNL Global — Scoped Premium Blue/Cyan Construction Theme
   ============================================================ */

:root {
    --bg-base: #030712;      /* Restored Deeper Midnight Navy */
    --bg-surface: #0f172a;   /* Slate/Navy surface */
    --bg-card: rgba(15, 23, 42, 0.8);
    --primary-cyan: #00e5ff; /* Original Neon Cyan Accent */
    --primary-blue: #003d82; /* Original Logo Navy */
    --primary-teal: #009ca6; /* Original Logo Teal */
    --border-light: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 229, 255, 0.3);
    --shadow-neon: 0 0 25px rgba(0, 229, 255, 0.15);
}

/* ────────────────────────────────────────────────────────────
   1. GLOBAL OVERRIDES FOR HOMEPAGE
   ──────────────────────────────────────────────────────────── */
body {
    background-color: var(--bg-base) !important;
}

/* ────────────────────────────────────────────────────────────
   2. NAVBAR GLASSMORPHISM & CYAN THEME
   ──────────────────────────────────────────────────────────── */
.navbar {
    background: rgba(2, 6, 23, 0.72) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(0, 229, 255, 0.06) !important;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.3) !important;
}

.navbar .nav-wrapper {
    max-width: 1600px !important; /* Upgraded to align navbar elements in ultra-wide cinematic layout! */
    width: 100%;
}

.navbar .logo {
    color: #fff !important;
}

.navbar .logo span {
    background: linear-gradient(135deg, #ffffff 40%, var(--primary-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-cyan) !important;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(0, 229, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.btn-outline:hover {
    border-color: var(--primary-cyan) !important;
    color: var(--primary-cyan) !important;
    box-shadow: var(--shadow-neon) !important;
}

/* ────────────────────────────────────────────────────────────
   3. CINEMATIC FULL-SCREEN HERO SECTION
   ──────────────────────────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column !important;
    justify-content: space-between !important; /* Spans main-row and stats-strip cleanly */
    position: relative;
    padding-top: 100px; /* Safe padding for navbar */
    overflow: hidden;
    background: transparent !important;
}

.hero-main-row {
    display: grid;
    grid-template-columns: 0.43fr 0.57fr; /* Left col 43% width, Right col 57% width */
    gap: 1.5%; /* Gap between columns */
    width: 97%; /* Edge-to-edge widescreen span matching the red boxes */
    max-width: 1750px; /* Safe upper bound for ultra-wide displays */
    margin: 0 auto !important; /* Positioned directly below the navbar, removing the empty vertical gap */
    position: relative;
    z-index: 10;
    align-items: center; /* Center items vertically */
}

/* Left side layout with ultra-premium glassmorphic HUD styling */
.hero-left-col {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: rgba(3, 7, 18, 0.28) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(0, 229, 255, 0.08) !important;
    padding: 3rem 4rem !important; /* Spacious padding inside the card */
    border-radius: 24px !important;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 229, 255, 0.03),
        inset 0 1px 1px rgba(255, 255, 255, 0.03) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 62vh; /* Perfectly matches the right column height! */
    width: 100%;
}

.hero-left-col:hover {
    border-color: rgba(0, 229, 255, 0.15) !important;
    box-shadow: 
        0 35px 60px -12px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(0, 229, 255, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.05) !important;
}

/* Glassmorphic Badge Tag with active pulsing status dot */
.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-cyan) !important;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1.8rem;
    background: rgba(0, 229, 255, 0.05);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.05), inset 0 1px 1px rgba(0, 229, 255, 0.1);
    position: relative;
}

.hero-badge-tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-cyan), 0 0 20px var(--primary-cyan);
    animation: status-pulse 1.5s infinite;
}

@keyframes status-pulse {
    0%, 100% {
        transform: scale(0.85);
        opacity: 0.6;
        box-shadow: 0 0 4px var(--primary-cyan);
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
        box-shadow: 0 0 12px var(--primary-cyan), 0 0 20px var(--primary-cyan);
    }
}

.hero-badge-tag i {
    color: var(--primary-cyan) !important;
}

/* Cinematic Glowing Heading Typography */
.hero-h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.8rem) !important;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2.5px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary-cyan) 70%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 40px rgba(0, 229, 255, 0.12));
}

/* Premium Blueprint-Silver Description Text */
.hero-desc-text {
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    margin-bottom: 1.8rem !important;
    max-width: 580px;
    font-weight: 400;
}

/* Custom Styled Cyber-Status Tag (Endless Service) */
.hero-subtext-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2.2rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.4rem 1.1rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    width: fit-content;
}

.hero-subtext-tag i {
    color: var(--primary-cyan) !important;
    animation: infinity-glow 2s infinite alternate;
}

@keyframes infinity-glow {
    0% {
        opacity: 0.6;
        text-shadow: 0 0 4px rgba(0, 229, 255, 0.2);
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 12px rgba(0, 229, 255, 0.8);
    }
}

.hero-cta-row {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Premium Futuristic Primary Button with Sheen Sweeping Effect */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-teal)) !important;
    color: #030712 !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2), 0 8px 30px rgba(0, 229, 255, 0.1);
    z-index: 2;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.6s;
    z-index: -1;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 35px rgba(0, 229, 255, 0.45), 0 15px 40px rgba(0, 229, 255, 0.2);
    color: #030712 !important;
}

/* Premium Futuristic Outline Button */
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1rem 2.2rem;
    background: rgba(255, 255, 255, 0.03) !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    border: 1px solid rgba(0, 229, 255, 0.3) !important;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2;
}

.btn-hero-outline:hover {
    border-color: var(--primary-cyan) !important;
    color: #030712 !important;
    background: var(--primary-cyan) !important;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.45);
    transform: translateY(-3px) scale(1.03);
}

.hero-right-col {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center; /* Center visual horizontally */
    height: 62vh; /* Perfectly matches the left column height! */
    width: 100%;
}

.hero-img-wrap {
    width: 100%; /* Full column width utilization */
    max-width: none; /* Let it expand completely to match the red box */
    height: 100%; /* Fill the red box height completely */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the red box dimensions completely with zero empty gaps! */
    opacity: 0.95;
    mix-blend-mode: screen; /* 100% PERFECT SEAMLESS BACKGROUND TRANSPARENCY (Fades pure black completely!) */
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 35px rgba(0, 229, 255, 0.4)); /* Holographic cybernetic glow! */
    animation: hero-float 6s ease-in-out infinite; /* Dynamic vertical bobbing float animation! */
}

/* Smooth Floating Micro-animation */
@keyframes hero-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-16px) scale(1.015); /* Gentle floating motion */
    }
}

/* ────────────────────────────────────────────────────────────
   4. STATS SECTION (GLASS LUXURY CYAN BAR)
   ──────────────────────────────────────────────────────────── */
.hero-stats-strip {
    width: 100%;
    max-width: 1600px; /* Upgraded to align with the cinematic widescreen layout! */
    margin: 0 auto !important;
    padding: 0 4rem 1rem; /* Shifted down by reducing bottom padding */
    position: relative;
    top: 20px; /* Displaced downwards by 20px for perfect spacing */
    z-index: 20;
}

.stats-glass-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(10, 20, 40, 0.8) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(0, 229, 255, 0.08) !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.55) !important;
}

.stat-col {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 2.2rem 2.5rem;
    border-right: 1px solid rgba(0, 229, 255, 0.05) !important;
    transition: all 0.3s ease;
}

.stat-col:hover {
    background: rgba(0, 229, 255, 0.02);
}

.stat-col:last-child {
    border-right: none !important;
}

.stat-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(0, 229, 255, 0.05) !important;
    border: 1px solid rgba(0, 229, 255, 0.12) !important;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-cyan) !important;
    flex-shrink: 0;
}

.stat-big-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem !important;
    font-weight: 900;
    color: var(--primary-cyan) !important;
    line-height: 1;
    margin-bottom: 0.2rem;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.stat-name {
    font-size: 0.75rem !important;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.3rem;
}

.stat-desc {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
    line-height: 1.4;
}

/* ────────────────────────────────────────────────────────────
   5. RESPONSIVE DESIGN ENHANCEMENTS
   ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-main-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-right-col {
        position: relative;
        top: auto;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
        order: 2;
    }
    
    .hero-left-col {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        height: auto !important; /* Let it scale dynamically on mobile and tablet screens! */
        padding: 2.5rem 1.5rem !important; /* Clean padded block on mobile */
        background: rgba(3, 7, 18, 0.4) !important; /* Keep glass card on mobile for contrast */
        backdrop-filter: blur(12px) !important;
        border: 1px solid rgba(0, 229, 255, 0.06) !important;
        border-radius: 20px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
        order: 1;
        align-items: center;
        text-align: center;
    }
    
    .hero-desc-text {
        max-width: 100%;
    }
    
    .hero-img-wrap::before {
        background: 
            linear-gradient(to top, #030712 10%, transparent 60%),
            linear-gradient(to bottom, #030712 5%, transparent 20%),
            radial-gradient(circle at 50% 50%, transparent 20%, #030712 95%);
    }
    
    .stats-glass-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-col {
        border-bottom: 1px solid rgba(0, 229, 255, 0.05) !important;
    }
    
    .stat-col:nth-child(even) {
        border-right: none !important;
    }
    
    .hero-stats-strip {
        margin: 0 auto 3rem !important;
        padding: 0 2rem;
        top: 0; /* Reset desktop vertical displacement */
    }
}

@media (max-width: 640px) {
    .stats-glass-bar {
        grid-template-columns: 1fr;
    }
    
    .stat-col {
        border-right: none !important;
        padding: 1.5rem 1.8rem;
    }
    
    .hero-stats-strip {
        margin: 0 auto 2rem !important;
        padding: 0 1rem;
        top: 0; /* Reset desktop vertical displacement */
    }
}

/* Custom fully rounded capsule shape for buttons */
.btn-capsule {
    border-radius: 50px !important;
}

/* Custom fully rounded language selection dropdown select box style to match reference image */
.lang-dropdown {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.45rem 1rem !important;
    border-radius: 50px !important; /* Elegant pill capsule shape for dropdown box */
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 28px !important;
}

.lang-dropdown:hover {
    border-color: var(--primary-cyan) !important;
    background: rgba(0, 229, 255, 0.06) !important;
    color: #fff !important;
}

/* Soft transition active link tag */
.nav-links a {
    position: relative;
}

/* ════════════════════════════════════════════════════════════
   6. PREMIUM GOOGLE REVIEWS SECTION
   ════════════════════════════════════════════════════════════ */
.review-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.22) !important;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5), 
        0 0 35px rgba(0, 229, 255, 0.08) !important;
}

.reviewer-avatar {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card-premium:hover .reviewer-avatar {
    transform: scale(1.05);
    border-color: var(--primary-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3) !important;
}

