/* ==========================================================================
   COG Enhanced Color & Premium Design Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@700;800&family=Poppins:wght@500;600&display=swap');

:root {
    /* Color Palette - Vibrant Corporate */
    --color-navy: #0F172A;
    --color-royal: #2563EB;
    --color-sky: #38BDF8;
    --color-orange: #F97316;
    --color-orange-light: #FFedd5;
    --color-green: #22C55E;
    
    /* Backgrounds - Tonal Gradients */
    --color-white: #FFFFFF;
    --color-light-gray: #F8FAFC;
    --color-section-gray: #EEF2F7;
    
    /* Text */
    --color-text: #1E293B;
    --color-text-secondary: #475569;
    
    /* Typography */
    --font-headings: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-buttons: 'Poppins', sans-serif;
    
    /* Structure & Spacing */
    --border-radius-premium: 18px;
    --border-radius-card: 12px;
    --border-radius-pill: 9999px;
    
    /* Shadows & Glows */
    --shadow-soft: 0 10px 25px -5px rgba(15, 23, 42, 0.04), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-premium: 0 25px 50px -12px rgba(37, 99, 235, 0.12), 0 0 25px rgba(37, 99, 235, 0.04);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
    --glow-royal: 0 8px 25px -5px rgba(37, 99, 235, 0.45);
    --glow-orange: 0 8px 25px -5px rgba(249, 115, 22, 0.45);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Header Heights */
    --header-height: 80px;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--color-navy);
    font-weight: 800;
    line-height: 1.25;
}

p {
    color: var(--color-text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-light-gray);
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: var(--border-radius-pill);
    border: 2px solid var(--color-light-gray);
}
::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* ==========================================================================
   Layout & Container Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 85% 15%, rgba(56, 189, 248, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 15% 85%, rgba(249, 115, 22, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.section-bg-light {
    background: linear-gradient(180deg, var(--color-white) 0%, #F1F5F9 100%);
}

.section-bg-gray {
    background: linear-gradient(180deg, #F8FAFC 0%, #E2E8F0 100%);
}

.section-bg-dark {
    background: radial-gradient(circle at 30% 30%, #1e293b 0%, #0F172A 100%);
    color: var(--color-white);
}

.section-bg-dark::before {
    background-image: 
        radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
}

.section-bg-dark h2, .section-bg-dark h3, .section-bg-dark h4 {
    color: var(--color-white);
}

.section > .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

/* Gradient Pill Tags */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(56, 189, 248, 0.08) 100%);
    color: var(--color-royal);
    border: 1px solid rgba(37, 99, 235, 0.15);
    font-family: var(--font-buttons);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius-pill);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-bg-dark .section-tag,
.pricing-section-dark .section-tag,
.bento-section-dark .section-tag,
.problem-section-dark .section-tag,
.journey-section-dark .section-tag,
.leader-section-dark .section-tag {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    color: var(--color-sky);
    border-color: rgba(56, 189, 248, 0.2);
}

/* Gradient Typography */
.section-title {
    font-size: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-royal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-bg-dark .section-title,
.pricing-section-dark .section-title,
.bento-section-dark .section-title,
.problem-section-dark .section-title,
.journey-section-dark .section-title,
.leader-section-dark .section-title {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-sky) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 32px;
    }
    .section-tag {
        font-size: 11px;
        padding: 4px 12px;
    }
    .inner-hero {
        padding: 100px 0 40px 0;
    }
    .inner-hero h1 {
        font-size: 26px !important;
        line-height: 1.25 !important;
        letter-spacing: -0.5px !important;
    }
}

/* ==========================================================================
   Background Decorative Blobs (Mesh effects)
   ========================================================================== */
.blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    animation: float-blob 16s infinite ease-in-out;
}

.blob-sky {
    width: 400px;
    height: 400px;
    background: var(--color-sky);
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.blob-orange {
    width: 350px;
    height: 350px;
    background: var(--color-orange);
    bottom: 10%;
    left: -10%;
    animation-delay: 4s;
}

.blob-royal {
    width: 450px;
    height: 450px;
    background: var(--color-royal);
    top: 40%;
    right: 30%;
    animation-delay: 8s;
}

@keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 20px) scale(0.9); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-buttons);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-royal) 0%, #1d4ed8 100%);
    color: var(--color-white);
    box-shadow: var(--glow-royal);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px -10px rgba(37, 99, 235, 0.5), 0 0 15px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-navy);
    border: 1px solid #CBD5E1;
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background-color: var(--color-light-gray);
    border-color: var(--color-royal);
    color: var(--color-royal);
    transform: translateY(-3px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-orange) 0%, #ea580c 100%);
    color: var(--color-white);
    box-shadow: var(--glow-orange);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px -10px rgba(249, 115, 22, 0.5), 0 0 15px rgba(249, 115, 22, 0.2);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
    transform: translateY(-3px);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: var(--color-white);
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.header-scrolled {
    background: var(--color-white);
    box-shadow: var(--shadow-glass);
    border-bottom: 1px solid rgba(37, 99, 235, 0.12);
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: -12px;
}

.logo img {
    height: 38px;
    transition: var(--transition-fast);
}

.header-scrolled .logo img {
    height: 32px;
}

.footer-col-desc .logo img {
    height: 36px !important;
}

@media (max-width: 768px) {
    .logo img {
        height: 34px;
    }
    .header-scrolled .logo img {
        height: 28px;
    }
    .footer-col-desc .logo img {
        height: 32px !important;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 22px;
}

.nav-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-royal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-royal);
    border-radius: var(--border-radius-pill);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-ctas .btn {
    padding: 10px 20px;
    font-size: 14px;
    background: linear-gradient(135deg, var(--color-orange) 0%, #ea580c 100%);
    color: var(--color-white);
    box-shadow: var(--glow-orange);
    border: none;
}

.header-ctas .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -8px rgba(249, 115, 22, 0.5), 0 0 10px rgba(249, 115, 22, 0.2);
    color: var(--color-white);
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-royal) 0%, var(--color-sky) 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    border: none;
    cursor: pointer;
    z-index: 1010;
    transition: var(--transition-smooth);
    padding: 0;
    gap: 4px;
}

.mobile-nav-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.mobile-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-pill);
    margin: 0 !important;
}

.mobile-nav-active .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.mobile-nav-active .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.mobile-nav-active .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: radial-gradient(circle at 100% 0%, #1A2E46 0%, #0B1F3A 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -15px 0 40px rgba(11, 31, 58, 0.5);
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 44px;
        gap: 28px;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: #E2E8F0 !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        letter-spacing: 1.5px !important;
        transition: color 0.3s ease, transform 0.3s ease !important;
    }
    
    .nav-menu .nav-link:hover, 
    .nav-menu .nav-link.active {
        color: var(--color-sky) !important;
        transform: translateX(6px);
    }
    
    .nav-menu .nav-link::after {
        background-color: var(--color-sky) !important;
    }
    
    /* Staggered slide-in entrance for menu list items */
    .nav-menu.open li {
        animation: slide-in-menu-item 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        opacity: 0;
        transform: translateX(30px);
    }
    
    .nav-menu.open li:nth-child(1) { animation-delay: 0.12s; }
    .nav-menu.open li:nth-child(2) { animation-delay: 0.18s; }
    .nav-menu.open li:nth-child(3) { animation-delay: 0.24s; }
    .nav-menu.open li:nth-child(4) { animation-delay: 0.30s; }
    .nav-menu.open li:nth-child(5) { animation-delay: 0.36s; }
    
    @keyframes slide-in-menu-item {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .mobile-nav-toggle {
        display: flex;
    }
    .header-ctas .btn-secondary {
        display: none;
    }
    
    .section-tag {
        font-size: 10px !important;
        padding: 4px 10px !important;
    }
    
    .inner-hero {
        padding: 110px 0 50px 0;
    }
    .inner-hero h1 {
        font-size: 32px !important;
        line-height: 1.25 !important;
    }
    .inner-hero p {
        font-size: 15px !important;
    }
}

/* ==========================================================================
   Page Loader Animation
   ========================================================================== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    animation: pulse-loader 2s infinite ease-in-out;
}

.loader-bar {
    width: 160px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-pill);
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--color-sky), var(--color-royal), transparent);
    animation: loading-bar 1.5s infinite;
}

@keyframes loading-bar {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse-loader {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(37,99,235,0)); }
    50% { transform: scale(1.03); filter: drop-shadow(0 0 20px rgba(56,189,248,0.3)); }
}

/* ==========================================================================
   Hero Section (Premium Carousel Slider)
   ========================================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 650px;
    overflow: hidden;
    background: radial-gradient(circle at 30% 30%, #1E3A5F 0%, #0B1F3A 100%);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-top: 80px;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 6s ease-in-out;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 31, 58, 0.85) 0%, rgba(11, 31, 58, 0.6) 45%, rgba(11, 31, 58, 0.2) 100%);
    z-index: 2;
}

.slide .container {
    position: relative;
    z-index: 5;
}

.slide-card {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
    box-shadow: none;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

.slide.active .slide-card {
    transform: translateY(0);
    opacity: 1;
}

.slide-subtitle {
    display: inline-block;
    color: var(--color-sky);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.slide-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 1.15;
    color: var(--color-white) !important;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    text-shadow: 0 4px 20px rgba(11, 31, 58, 0.6);
}

.slide-title span {
    background: linear-gradient(135deg, #00F2FE 0%, #FDE047 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 242, 254, 0.3));
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.slide-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #E5E7EB;
    max-width: 820px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    text-shadow: 0 2px 10px rgba(11, 31, 58, 0.5);
}

.slide.active .slide-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.slide-actions {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.0s;
}

.slide-actions .btn-outline-white {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 32px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.slider-dot.active {
    width: 52px;
    background: var(--color-orange);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.6);
}

/* Mouse Scroll Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 35px;
    right: 50px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-buttons);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce-scroll 2.5s infinite;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 11px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-white);
    border-radius: var(--border-radius-pill);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.6s infinite;
}

@keyframes scroll-wheel-anim {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 18px;
        opacity: 0;
    }
}

@keyframes bounce-scroll {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .slide-card {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    .slide-title {
        font-size: 36px;
    }
    .slide-desc {
        font-size: 16px;
    }
    .scroll-down-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 520px;
    }
    .slide-bg {
        background-position: 70% center; /* Ensure focal subjects stay in view on vertical viewports */
    }
    .slide-card {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    .slide-subtitle {
        font-size: 10px;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }
    .slide-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .slide-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .slide-actions {
        flex-direction: column;
        gap: 10px;
    }
    .slide-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 20px;
    }
    .slide-desc {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* ==========================================================================
   Trusted By (Logo Slider)
   ========================================================================== */
.trusted {
    padding: 50px 0;
    border-bottom: 1px solid #E2E8F0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light-gray) 100%);
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-royal);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.logo-slider {
    display: flex;
    width: max-content;
    animation: logo-slide 20s linear infinite;
    gap: 80px;
}

.logo-item {
    font-family: var(--font-headings);
    font-size: 20px;
    font-weight: 800;
    color: var(--color-navy);
    opacity: 0.8;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius-card);
}

.logo-icon {
    font-size: 22px;
}

@keyframes logo-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   What is COaaS Section & Cards
   ========================================================================== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.split-layout-map {
    grid-template-columns: 1.2fr 1fr;
}

.split-layout-faq {
    grid-template-columns: 1fr 1.2fr;
    align-items: flex-start;
    gap: 50px;
}

.split-left {
    position: relative;
}

.split-ill-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.split-ill {
    position: relative;
    z-index: 2;
    background: var(--color-white);
    border-radius: var(--border-radius-premium);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(37, 99, 235, 0.15);
    overflow: hidden;
    padding: 8px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 24px;
    border-radius: var(--border-radius-card);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: var(--color-royal);
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    background: var(--color-white);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(56, 189, 248, 0.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-royal);
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--color-royal) 0%, var(--color-sky) 100%);
    color: var(--color-white);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.benefit-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-navy);
}

.benefit-desc {
    font-size: 14px;
}

@media (max-width: 991px) {
    .split-layout,
    .split-layout-map,
    .split-layout-faq {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .split-left {
        order: 2;
    }
}

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

.problem-section-dark {
    background-image: linear-gradient(rgba(11, 31, 58, 0.9), rgba(11, 31, 58, 0.9)), url('../assets/global_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-royal) 0%, var(--color-sky) 50%, var(--color-orange) 100%);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 10px 40px;
    box-sizing: border-box;
}

.timeline-item:not(:first-of-type) {
    margin-top: -45px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: var(--color-navy);
    border: 4px solid var(--color-sky);
    border-radius: 50%;
    top: 22px;
    z-index: 5;
    box-shadow: 0 0 12px var(--color-sky);
}

.timeline-item-left {
    left: 0;
    text-align: right;
}

.timeline-item-left::after {
    right: -9px;
}

.timeline-item-right {
    left: 50%;
    text-align: left;
}

.timeline-item-right::after {
    left: -9px;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-card);
    padding: 24px;
    transition: var(--transition-smooth);
}

.timeline-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--color-sky);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.1);
}

.timeline-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
    color: var(--color-sky);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.timeline-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-orange);
}

.timeline-card-desc {
    font-size: 14px;
    color: var(--color-white);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }
    .timeline-item:not(:first-of-type) {
        margin-top: 16px;
    }
    .timeline-item::after {
        left: 11px !important;
        top: 22px !important;
    }
    .timeline-item-right {
        left: 0;
    }
}

/* ==========================================================================
   The Solution Section
   ========================================================================== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution-card {
    border-radius: var(--border-radius-premium);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.solution-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

/* Individual Pastel Card Backgrounds & Icon Wrap Tints */
.solution-card:nth-child(1) { background: #F0F7FF; border-color: rgba(59, 130, 246, 0.15); }
.solution-card:nth-child(1) .solution-icon-wrap { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
.solution-card:nth-child(1):hover { border-color: rgba(59, 130, 246, 0.4); }
.solution-card:nth-child(1):hover .solution-icon-wrap { background: #3b82f6; color: var(--color-white); box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2); }

.solution-card:nth-child(2) { background: #ECFDF5; border-color: rgba(16, 185, 129, 0.15); }
.solution-card:nth-child(2) .solution-icon-wrap { background: rgba(16, 185, 129, 0.08); color: #10b981; }
.solution-card:nth-child(2):hover { border-color: rgba(16, 185, 129, 0.4); }
.solution-card:nth-child(2):hover .solution-icon-wrap { background: #10b981; color: var(--color-white); box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2); }

.solution-card:nth-child(3) { background: #F5F3FF; border-color: rgba(139, 92, 246, 0.15); }
.solution-card:nth-child(3) .solution-icon-wrap { background: rgba(139, 92, 246, 0.08); color: #8b5cf6; }
.solution-card:nth-child(3):hover { border-color: rgba(139, 92, 246, 0.4); }
.solution-card:nth-child(3):hover .solution-icon-wrap { background: #8b5cf6; color: var(--color-white); box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2); }

.solution-card:nth-child(4) { background: #FFF1F2; border-color: rgba(244, 63, 94, 0.15); }
.solution-card:nth-child(4) .solution-icon-wrap { background: rgba(244, 63, 94, 0.08); color: #f43f5e; }
.solution-card:nth-child(4):hover { border-color: rgba(244, 63, 94, 0.4); }
.solution-card:nth-child(4):hover .solution-icon-wrap { background: #f43f5e; color: var(--color-white); box-shadow: 0 4px 12px rgba(244, 63, 94, 0.2); }

.solution-card:nth-child(5) { background: #F0FDF4; border-color: rgba(34, 197, 94, 0.15); }
.solution-card:nth-child(5) .solution-icon-wrap { background: rgba(34, 197, 94, 0.08); color: #22c55e; }
.solution-card:nth-child(5):hover { border-color: rgba(34, 197, 94, 0.4); }
.solution-card:nth-child(5):hover .solution-icon-wrap { background: #22c55e; color: var(--color-white); box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2); }

.solution-card:nth-child(6) { background: #FFFBEB; border-color: rgba(245, 158, 11, 0.15); }
.solution-card:nth-child(6) .solution-icon-wrap { background: rgba(245, 158, 11, 0.08); color: #f59e0b; }
.solution-card:nth-child(6):hover { border-color: rgba(245, 158, 11, 0.4); }
.solution-card:nth-child(6):hover .solution-icon-wrap { background: #f59e0b; color: var(--color-white); box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2); }

.solution-card:nth-child(7) { background: #FAF5FF; border-color: rgba(168, 85, 247, 0.15); }
.solution-card:nth-child(7) .solution-icon-wrap { background: rgba(168, 85, 247, 0.08); color: #a855f7; }
.solution-card:nth-child(7):hover { border-color: rgba(168, 85, 247, 0.4); }
.solution-card:nth-child(7):hover .solution-icon-wrap { background: #a855f7; color: var(--color-white); box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2); }

.solution-card:nth-child(8) { background: #ECFEFF; border-color: rgba(6, 182, 212, 0.15); }
.solution-card:nth-child(8) .solution-icon-wrap { background: rgba(6, 182, 212, 0.08); color: #06b6d4; }
.solution-card:nth-child(8):hover { border-color: rgba(6, 182, 212, 0.4); }
.solution-card:nth-child(8):hover .solution-icon-wrap { background: #06b6d4; color: var(--color-white); box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2); }

.solution-card-title {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--color-navy);
}

.solution-card-desc {
    font-size: 15px;
}

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

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

/* ==========================================================================
   Alternative to Hiring (Comparison Grid)
   ========================================================================== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.comparison-card {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius-premium);
    padding: 40px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.traditional-card {
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.traditional-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
}

.coaas-card {
    border: 1px solid rgba(56, 189, 248, 0.25);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.05);
}

.coaas-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-sky);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.18);
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.comp-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid;
}

.comp-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comp-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.comp-bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.bullet-traditional {
    background: rgba(239, 68, 68, 0.12);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.bullet-coaas {
    background: rgba(56, 189, 248, 0.12);
    color: var(--color-sky);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.comp-list li h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.comp-list li p {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Bento Section Background styling (now container for comparison) */
.bento-section-dark {
    background-image: linear-gradient(rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.85)), url('../assets/operations_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.bento-section-dark .section-title {
    color: var(--color-white) !important;
}

.bento-section-dark .section-header p {
    color: #94A3B8;
}

/* ==========================================================================
   Three Pillars Section
   ========================================================================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background: var(--color-white);
    border-radius: var(--border-radius-premium);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: transparent;
    border-radius: 0 0 var(--border-radius-premium) var(--border-radius-premium);
    transition: var(--transition-fast);
}

.pillar-card-1::after { background: linear-gradient(90deg, var(--color-royal), var(--color-sky)); }
.pillar-card-2::after { background: linear-gradient(90deg, var(--color-orange), #ea580c); }
.pillar-card-3::after { background: linear-gradient(90deg, var(--color-green), #16a34a); }

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.pillar-emoji {
    font-size: 44px;
    margin-bottom: 24px;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.pillar-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--color-navy);
}

.pillar-desc {
    font-size: 15px;
}

@media (max-width: 991px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================================================
   Industries We Serve
   ========================================================================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    background: var(--color-white);
    border-radius: var(--border-radius-premium);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(37, 99, 235, 0.15);
}

.industry-card-img-wrap {
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
    background: #E2E8F0;
}

.industry-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.industry-card:hover .industry-card-img-wrap img {
    transform: scale(1.08);
}

.industry-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    background: var(--color-white);
}

.btn-industry {
    padding: 12px 16px;
    font-size: 14px;
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
    border-radius: var(--border-radius-pill);
    background: linear-gradient(135deg, var(--color-orange) 0%, #ea580c 100%);
    color: var(--color-white);
    border: none;
    box-shadow: var(--glow-orange);
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-industry:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
    color: var(--color-white);
}

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

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

/* ==========================================================================
   Pricing Section
   ========================================================================== */
/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}

.toggle-label {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.toggle-label-active {
    color: var(--color-royal);
}

.discount-badge {
    display: inline-block;
    margin-left: 6px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--color-green);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--border-radius-pill);
    vertical-align: middle;
}

.pricing-switch {
    width: 60px;
    height: 32px;
    background: var(--color-section-gray);
    border-radius: var(--border-radius-pill);
    position: relative;
    cursor: pointer;
    border: 1.5px solid #CBD5E1;
    box-shadow: inset 0 2px 4px rgba(15,23,42,0.05);
    transition: var(--transition-fast);
}

.pricing-switch-handle {
    width: 24px;
    height: 24px;
    background: var(--color-royal);
    border-radius: 50%;
    position: absolute;
    top: 2.5px;
    left: 3px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 6px rgba(37,99,235,0.3);
}

.pricing-switch-active {
    background: #EFF6FF;
    border-color: rgba(37, 99, 235, 0.3);
}

.pricing-switch-active .pricing-switch-handle {
    left: 30px;
    background: var(--color-orange);
    box-shadow: 0 2px 6px rgba(249,115,22,0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--border-radius-premium);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 48px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.12);
    border-color: var(--color-royal);
}

.pricing-card-highlighted {
    border: 2px solid var(--color-orange);
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.15);
    background: var(--color-white);
}

.pricing-card-highlighted:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(249, 115, 22, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 36px;
    background: linear-gradient(135deg, var(--color-orange) 0%, #ea580c 100%);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    z-index: 5;
}

.pricing-tier {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-navy);
    letter-spacing: -0.5px;
}

.pricing-price {
    font-size: 48px;
    font-family: var(--font-headings);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.1;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-card-highlighted .pricing-price {
    color: var(--color-royal);
}

.pricing-price span {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.pricing-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding-top: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.pricing-feature svg {
    flex-shrink: 0;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

.pricing-card .btn {
    width: 100%;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pricing-card-highlighted {
        transform: scale(1);
    }
}

/* Dark Pricing Section Overrides */
.pricing-section-dark {
    background: radial-gradient(circle at 50% 50%, #17253D 0%, #0B1F3A 100%);
    color: var(--color-white);
    position: relative;
}

.pricing-section-dark .section-title {
    color: var(--color-white) !important;
}

.pricing-section-dark .section-header p {
    color: #E2E8F0;
}

.pricing-section-dark .toggle-label {
    color: #94A3B8;
}

.pricing-section-dark .toggle-label-active {
    color: var(--color-white);
}

.pricing-section-dark .pricing-card {
    background: #112240;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.pricing-section-dark .pricing-card:hover {
    border-color: var(--color-sky);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.pricing-section-dark .pricing-card-highlighted {
    background: #1E293B;
    border: 2px solid var(--color-orange);
    box-shadow: 0 20px 50px -10px rgba(249, 115, 22, 0.25);
}

.pricing-section-dark .pricing-card-highlighted:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 30px 60px rgba(249, 115, 22, 0.4);
}

.pricing-section-dark .pricing-tier {
    color: var(--color-white);
}

.pricing-section-dark .pricing-price {
    color: var(--color-white) !important;
}

.pricing-section-dark .pricing-card-highlighted .pricing-price {
    color: var(--color-sky) !important;
}

.pricing-section-dark .pricing-price span {
    color: #CBD5E1;
}

.pricing-section-dark .pricing-desc {
    color: #E2E8F0;
}

.pricing-section-dark .pricing-features {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-section-dark .pricing-feature {
    color: #F1F5F9;
}

.pricing-section-dark .pricing-feature svg {
    background: rgba(16, 185, 129, 0.25);
    color: #10B981;
}

.pricing-section-dark .pricing-card .btn-secondary {
    background: var(--color-white);
    color: var(--color-navy);
    border: none;
    font-weight: 700;
}

.pricing-section-dark .pricing-card .btn-secondary:hover {
    background: #E2E8F0;
    color: var(--color-navy);
    transform: translateY(-2px);
}

/* ==========================================================================
   Testimonial & Statistics Counters
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: var(--border-radius-premium);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-num {
    font-family: var(--font-headings);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-sky);
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.stat-lbl {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius-premium);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(37, 99, 235, 0.2);
    background: var(--color-white);
}

.stars {
    color: #F59E0B;
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--color-section-gray);
    box-shadow: 0 4px 10px rgba(15,23,42,0.08);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
}

.user-company {
    font-size: 12px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

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

/* ==========================================================================
   Final CTA Banner
   ========================================================================== */
.final-cta {
    background: linear-gradient(135deg, var(--color-navy) 0%, #1e293b 50%, var(--color-royal) 100%);
    border-radius: var(--border-radius-premium);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    box-shadow: var(--shadow-premium);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    z-index: 1;
}

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

.cta-title {
    color: var(--color-white) !important;
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-sky) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 576px) {
    .final-cta {
        padding: 50px 20px;
    }
    .cta-title {
        font-size: 32px;
    }
    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   Inner Pages Specific Styles (About, Services, FAQ, Contact)
   ========================================================================== */

/* Hero Banner (Inner Pages) */
.inner-hero {
    background-image: linear-gradient(135deg, rgba(11, 31, 58, 0.94) 0%, rgba(11, 31, 58, 0.8) 100%), url('../assets/operations_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, transparent 60%);
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.inner-hero h1 {
    color: var(--color-white);
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-sky) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inner-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

/* Core Values / About Page */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--color-white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius-premium);
    padding: 36px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: var(--color-royal);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%);
    color: var(--color-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.value-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-navy);
}

/* Timeline (Company Journey) */
.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
    padding-left: 30px;
    border-left: 3px solid rgba(37,99,235,0.2);
}

.journey-step {
    position: relative;
    margin-bottom: 48px;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.journey-marker {
    position: absolute;
    left: -41.5px;
    top: 4px;
    width: 20px;
    height: 20px;
    background: var(--color-royal);
    border: 4px solid var(--color-white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--color-royal), 0 0 10px rgba(37,99,235,0.5);
}

.journey-year {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-royal);
    margin-bottom: 8px;
}

.journey-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

/* Dark Journey Section Overrides */
.journey-section-dark {
    background: radial-gradient(circle at 50% 50%, #1A2E46 0%, #0B1F3A 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.journey-section-dark .section-header p {
    color: #94A3B8;
}

.journey-section-dark .journey-timeline {
    border-left-color: rgba(255, 255, 255, 0.12);
}

.journey-section-dark .journey-marker {
    background: var(--color-sky);
    border-color: #0B1F3A;
    box-shadow: 0 0 0 2px var(--color-sky), 0 0 10px rgba(56, 189, 248, 0.5);
}

.journey-section-dark .journey-year {
    color: var(--color-sky);
}

.journey-section-dark .journey-title {
    color: var(--color-white);
}

.journey-section-dark .journey-step p {
    color: #CBD5E1;
}

/* Services Cards & Popup Trigger */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-premium-card {
    background: linear-gradient(135deg, var(--color-white) 0%, #F0F7FF 100%);
    border-radius: var(--border-radius-premium);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(37, 99, 235, 0.12);
    padding: 40px 30px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, #F0F7FF 0%, #E0F2FE 100%);
}

.service-card-top {
    margin-bottom: 30px;
}

.service-pill-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(56, 189, 248, 0.08) 100%);
    color: var(--color-royal);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 24px;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.05);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.service-premium-card:hover .service-pill-icon {
    background: linear-gradient(135deg, var(--color-royal) 0%, var(--color-sky) 100%);
    color: var(--color-white);
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.service-card-title {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--color-navy);
}

.service-features-list {
    list-style: none;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.service-feature-item svg {
    color: var(--color-royal);
    flex-shrink: 0;
}

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

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

/* Service Detail Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-white);
    border-radius: var(--border-radius-premium);
    width: 90%;
    max-width: 680px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-premium);
    transform: scale(0.9);
    transition: var(--transition-smooth);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.modal-overlay.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-light-gray);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: #CBD5E1;
    color: var(--color-navy);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid #EEF2F7;
    padding-bottom: 20px;
}

.modal-body h4 {
    font-size: 18px;
    margin: 24px 0 12px 0;
    color: var(--color-navy);
}

.modal-body ul {
    list-style: none;
}

.modal-body li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--color-text-secondary);
}

.modal-body li svg {
    color: var(--color-royal);
    margin-top: 4px;
}

/* Leadership Section */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.leader-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-premium);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    transition: var(--transition-smooth);
}

.leader-card:hover {
    box-shadow: var(--shadow-premium);
    border-color: rgba(37, 99, 235, 0.2);
    background: var(--color-white);
}

.leader-header {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
}

.leader-avatar {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-premium);
    object-fit: cover;
    background-color: var(--color-section-gray);
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--color-white);
}

.leader-info h3 {
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--color-navy);
}

.leader-role {
    font-size: 14px;
    color: var(--color-royal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.leader-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.leader-badge {
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(56, 189, 248, 0.06) 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
    color: var(--color-royal);
    padding: 4px 10px;
    border-radius: var(--border-radius-pill);
}

.skills-wrapper {
    margin-top: 24px;
}

.skill-bar-wrap {
    margin-bottom: 16px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-navy);
}

.skill-bar {
    height: 6px;
    background: #E2E8F0;
    border-radius: 3px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-royal), var(--color-sky));
    border-radius: 3px;
}

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    .leader-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Dark Leadership Section Overrides */
.leader-section-dark {
    background: radial-gradient(circle at 50% 50%, #1A2E46 0%, #0B1F3A 100%);
    color: var(--color-white);
    position: relative;
}

.leader-section-dark .section-header p {
    color: #94A3B8;
}

.leader-section-dark .leader-card {
    background: #112240;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.leader-section-dark .leader-card:hover {
    background: #1E293B;
    border-color: var(--color-sky);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.leader-section-dark .leader-avatar {
    border-color: rgba(255, 255, 255, 0.1);
}

.leader-section-dark .leader-info h3 {
    color: var(--color-white);
}

.leader-section-dark .leader-role {
    color: var(--color-sky);
}

.leader-section-dark .leader-badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.leader-section-dark .leader-card p {
    color: #CBD5E1;
}

.leader-section-dark .skill-info {
    color: var(--color-white);
}

.leader-section-dark .skill-bar {
    background: rgba(255, 255, 255, 0.1);
}

/* FAQ Accordion UI */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-card);
    margin-bottom: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.faq-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    color: var(--color-white);
}

.faq-icon-wrap {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item.active {
    border-color: var(--color-royal);
    background: linear-gradient(135deg, #1E293B 0%, #111E30 100%);
}

.faq-item.active .faq-icon-wrap {
    background: linear-gradient(135deg, var(--color-royal) 0%, var(--color-sky) 100%);
    color: var(--color-white);
    border-color: var(--color-royal);
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    color: #CBD5E1;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-body {
    max-height: 300px;
}

.faq-item.active .faq-content {
    border-color: rgba(255, 255, 255, 0.08);
}

/* Contact Page Layout & Forms */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius-premium);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(37, 99, 235, 0.12);
    padding: 40px;
}

.form-title {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--color-navy);
}

.form-desc {
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group-full {
    grid-column: span 2;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-navy);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius-card);
    border: 1px solid #CBD5E1;
    background: var(--color-light-gray);
    outline: none;
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-royal);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* Office Details & Map Mockup */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.info-small-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius-card);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-smooth);
}

.info-small-card:hover {
    border-color: var(--color-royal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    background: var(--color-white);
}

.info-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(56, 189, 248, 0.08) 100%);
    color: var(--color-royal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.info-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy);
}

.info-card-val {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.info-card-val a {
    color: var(--color-royal);
    font-weight: 600;
}

.info-card-val a:hover {
    text-decoration: underline;
}

.map-placeholder {
    height: 240px;
    background-color: var(--color-navy);
    background-image: radial-gradient(rgba(56, 189, 248, 0.3) 1px, transparent 0);
    background-size: 20px 20px;
    border-radius: var(--border-radius-premium);
    border: 1px solid rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.map-marker-pin {
    width: 48px;
    height: 48px;
    color: var(--color-orange);
    filter: drop-shadow(0 0 10px var(--color-orange));
    animation: float-map-pin 4s infinite ease-in-out;
}

@keyframes float-map-pin {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.map-card {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: var(--border-radius-card);
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-wrap {
    background-color: var(--color-navy);
    background-image: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
    color: var(--color-white);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-col-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--color-royal) 0%, var(--color-sky) 100%);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    border-color: transparent;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    color: var(--color-white);
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-sky);
    border-radius: var(--border-radius-pill);
}

.footer-links {
    list-style: none;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-sky);
    padding-left: 6px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-card);
    padding: 12px 16px;
    color: var(--color-white);
    outline: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    border-color: var(--color-sky);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.newsletter-btn {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-visitor-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.counter-dot {
    width: 8px;
    height: 8px;
    background-color: #22C55E;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #22C55E;
    animation: counter-pulse 2s infinite;
}

@keyframes counter-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-col-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-col-newsletter {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   Floating Widgets (WhatsApp, Sticky Call Bar, Scroll Reveal, Back To Top)
   ========================================================================== */

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    direction: rtl;
}

.whatsapp-bubble {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.whatsapp-bubble::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: ripple 1.6s infinite ease-out;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-bubble:hover {
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--border-radius-card);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
    direction: ltr;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.08);
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Sticky Call Bar */
.sticky-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.08);
    z-index: 998;
    padding: 12px 20px;
}

.scb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.scb-btn {
    padding: 12px;
    font-size: 13px;
    width: 100%;
}

.scb-btn-whatsapp {
    background: #25D366 !important;
    color: var(--color-white) !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25) !important;
    font-weight: 700;
}

.scb-btn-whatsapp:hover {
    background: #20ba5a !important;
    color: var(--color-white) !important;
}

@media (max-width: 768px) {
    .sticky-call-bar {
        display: block;
    }
    .whatsapp-widget {
        bottom: 80px;
        right: 20px;
    }
}

/* Scroll Animations CSS */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(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; }

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--color-white);
    color: var(--color-navy);
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: var(--color-navy);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        left: 20px;
    }
}

/* Premium Support Tags / Specialty Grid Cards */
.support-tag {
    background: linear-gradient(135deg, var(--color-royal) 0%, var(--color-sky) 100%);
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.support-tag:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--color-sky) 0%, var(--color-royal) 100%);
}
