/* ==========================================
   HostixOS Enterprise — Design Tokens
   ========================================== */

:root {
    /* ── Brand Colors ── */
    --hx-navy: #0B1F4B;
    --hx-navy-light: #132D6B;
    --hx-navy-dark: #071535;
    --hx-blue: #126BFF;
    --hx-blue-light: #4D8FFF;
    --hx-blue-dark: #0A4FCC;
    --hx-cyan: #19C7E8;
    --hx-cyan-light: #4DD8F0;
    --hx-cyan-dark: #0FA8C6;
    
    /* ── Neutral Colors ── */
    --hx-bg: #F7FAFF;
    --hx-bg-alt: #EEF3FB;
    --hx-white: #FFFFFF;
    --hx-gray-50: #F8FAFC;
    --hx-gray-100: #F1F5F9;
    --hx-gray-200: #E2E8F0;
    --hx-gray-300: #CBD5E1;
    --hx-gray-400: #94A3B8;
    --hx-gray-500: #64748B;
    --hx-gray-600: #475569;
    --hx-gray-700: #334155;
    --hx-gray-800: #1E293B;
    --hx-gray-900: #0F172A;
    
    /* ── Semantic Colors ── */
    --hx-success: #10B981;
    --hx-success-light: #D1FAE5;
    --hx-warning: #F59E0B;
    --hx-warning-light: #FEF3C7;
    --hx-danger: #EF4444;
    --hx-danger-light: #FEE2E2;
    --hx-info: #3B82F6;
    --hx-info-light: #DBEAFE;
    
    /* ── Typography ── */
    --hx-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --hx-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --hx-font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    
    --hx-text-xs: 0.75rem;
    --hx-text-sm: 0.875rem;
    --hx-text-base: 1rem;
    --hx-text-lg: 1.125rem;
    --hx-text-xl: 1.25rem;
    --hx-text-2xl: 1.5rem;
    --hx-text-3xl: 1.875rem;
    --hx-text-4xl: 2.25rem;
    --hx-text-5xl: 3rem;
    --hx-text-6xl: 3.75rem;
    
    --hx-leading-tight: 1.2;
    --hx-leading-normal: 1.5;
    --hx-leading-relaxed: 1.65;
    
    /* ── Spacing ── */
    --hx-space-1: 0.25rem;
    --hx-space-2: 0.5rem;
    --hx-space-3: 0.75rem;
    --hx-space-4: 1rem;
    --hx-space-5: 1.25rem;
    --hx-space-6: 1.5rem;
    --hx-space-8: 2rem;
    --hx-space-10: 2.5rem;
    --hx-space-12: 3rem;
    --hx-space-16: 4rem;
    --hx-space-20: 5rem;
    --hx-space-24: 6rem;
    
    /* ── Border Radius ── */
    --hx-radius-sm: 0.375rem;
    --hx-radius: 0.5rem;
    --hx-radius-md: 0.625rem;
    --hx-radius-lg: 0.75rem;
    --hx-radius-xl: 1rem;
    --hx-radius-2xl: 1.25rem;
    --hx-radius-full: 9999px;
    
    /* ── Shadows ── */
    --hx-shadow-sm: 0 1px 2px rgba(11, 31, 75, 0.05);
    --hx-shadow: 0 1px 3px rgba(11, 31, 75, 0.08), 0 1px 2px rgba(11, 31, 75, 0.04);
    --hx-shadow-md: 0 4px 6px -1px rgba(11, 31, 75, 0.08), 0 2px 4px -2px rgba(11, 31, 75, 0.04);
    --hx-shadow-lg: 0 10px 15px -3px rgba(11, 31, 75, 0.08), 0 4px 6px -4px rgba(11, 31, 75, 0.04);
    --hx-shadow-xl: 0 20px 25px -5px rgba(11, 31, 75, 0.08), 0 8px 10px -6px rgba(11, 31, 75, 0.04);
    --hx-shadow-card: 0 2px 8px rgba(11, 31, 75, 0.06), 0 0 1px rgba(11, 31, 75, 0.1);
    --hx-shadow-card-hover: 0 8px 24px rgba(11, 31, 75, 0.1), 0 0 1px rgba(11, 31, 75, 0.12);
    
    /* ── Transitions ── */
    --hx-transition: 0.2s ease;
    --hx-transition-slow: 0.35s ease;
    
    /* ── Z-Index ── */
    --hx-z-dropdown: 1000;
    --hx-z-sticky: 1020;
    --hx-z-fixed: 1030;
    --hx-z-modal-backdrop: 1040;
    --hx-z-modal: 1050;
    --hx-z-tooltip: 1070;
    
    /* ── Layout ── */
    --hx-max-width: 1280px;
    --hx-sidebar-width: 260px;
    --hx-header-height: 72px;
    --hx-admin-header-height: 60px;
}

/* ==========================================
   Global Styles
   ========================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--hx-font-primary);
    font-size: var(--hx-text-base);
    line-height: var(--hx-leading-relaxed);
    color: var(--hx-navy);
    background-color: var(--hx-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hx-font-heading);
    font-weight: 700;
    line-height: var(--hx-leading-tight);
    color: var(--hx-navy);
}

h1 { font-size: var(--hx-text-5xl); }
h2 { font-size: var(--hx-text-4xl); }
h3 { font-size: var(--hx-text-3xl); }
h4 { font-size: var(--hx-text-2xl); }
h5 { font-size: var(--hx-text-xl); }
h6 { font-size: var(--hx-text-lg); }

a {
    color: var(--hx-blue);
    text-decoration: none;
    transition: color var(--hx-transition);
}

a:hover {
    color: var(--hx-blue-dark);
}

/* ==========================================
   Section Styles
   ========================================== */

.hx-section {
    padding: var(--hx-space-20) 0;
}

.hx-section-sm {
    padding: var(--hx-space-12) 0;
}

.hx-section-lg {
    padding: var(--hx-space-24) 0;
}

.hx-section-alt {
    background-color: var(--hx-bg);
}

.hx-section-dark {
    background: linear-gradient(135deg, var(--hx-navy) 0%, var(--hx-navy-light) 100%);
    color: var(--hx-white);
}

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

.hx-section-title {
    font-size: var(--hx-text-4xl);
    font-weight: 800;
    margin-bottom: var(--hx-space-4);
    text-align: center;
}

.hx-section-subtitle {
    font-size: var(--hx-text-lg);
    color: var(--hx-gray-600);
    max-width: 700px;
    margin: 0 auto var(--hx-space-12);
    text-align: center;
    line-height: var(--hx-leading-relaxed);
}

/* ==========================================
   Buttons
   ========================================== */

.hx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--hx-space-2);
    padding: 0.75rem 1.75rem;
    font-size: var(--hx-text-base);
    font-weight: 600;
    border-radius: var(--hx-radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--hx-transition);
    text-decoration: none;
    line-height: 1.5;
    white-space: nowrap;
}

.hx-btn:focus-visible {
    outline: 3px solid var(--hx-blue-light);
    outline-offset: 2px;
}

.hx-btn-primary {
    background: linear-gradient(135deg, var(--hx-blue) 0%, var(--hx-blue-dark) 100%);
    color: var(--hx-white);
    border-color: var(--hx-blue);
}

.hx-btn-primary:hover {
    background: linear-gradient(135deg, var(--hx-blue-light) 0%, var(--hx-blue) 100%);
    color: var(--hx-white);
    transform: translateY(-1px);
    box-shadow: var(--hx-shadow-lg);
}

.hx-btn-secondary {
    background: var(--hx-white);
    color: var(--hx-navy);
    border-color: var(--hx-gray-300);
}

.hx-btn-secondary:hover {
    background: var(--hx-bg);
    border-color: var(--hx-blue);
    color: var(--hx-blue);
    transform: translateY(-1px);
}

.hx-btn-outline {
    background: transparent;
    color: var(--hx-blue);
    border-color: var(--hx-blue);
}

.hx-btn-outline:hover {
    background: var(--hx-blue);
    color: var(--hx-white);
    transform: translateY(-1px);
}

.hx-btn-white {
    background: var(--hx-white);
    color: var(--hx-navy);
    border-color: var(--hx-white);
}

.hx-btn-white:hover {
    background: var(--hx-bg);
    color: var(--hx-blue);
    transform: translateY(-1px);
    box-shadow: var(--hx-shadow-lg);
}

.hx-btn-cyan {
    background: linear-gradient(135deg, var(--hx-cyan) 0%, var(--hx-cyan-dark) 100%);
    color: var(--hx-white);
    border-color: var(--hx-cyan);
}

.hx-btn-cyan:hover {
    background: linear-gradient(135deg, var(--hx-cyan-light) 0%, var(--hx-cyan) 100%);
    color: var(--hx-white);
    transform: translateY(-1px);
}

.hx-btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: var(--hx-text-sm);
}

.hx-btn-lg {
    padding: 1rem 2.25rem;
    font-size: var(--hx-text-lg);
}

.hx-btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: var(--hx-radius);
}

/* ==========================================
   Cards
   ========================================== */

.hx-card {
    background: var(--hx-white);
    border-radius: var(--hx-radius-xl);
    border: 1px solid var(--hx-gray-200);
    box-shadow: var(--hx-shadow-card);
    transition: all var(--hx-transition-slow);
    overflow: hidden;
}

.hx-card:hover {
    box-shadow: var(--hx-shadow-card-hover);
    transform: translateY(-2px);
}

.hx-card-body {
    padding: var(--hx-space-6);
}

.hx-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--hx-radius-lg);
    background: linear-gradient(135deg, rgba(18, 107, 255, 0.08) 0%, rgba(25, 199, 232, 0.08) 100%);
    color: var(--hx-blue);
    font-size: 1.5rem;
    margin-bottom: var(--hx-space-4);
    transition: all var(--hx-transition);
}

.hx-card:hover .hx-card-icon {
    background: linear-gradient(135deg, var(--hx-blue) 0%, var(--hx-cyan) 100%);
    color: var(--hx-white);
}

.hx-card-title {
    font-size: var(--hx-text-xl);
    font-weight: 700;
    margin-bottom: var(--hx-space-2);
    color: var(--hx-navy);
}

.hx-card-text {
    font-size: var(--hx-text-sm);
    color: var(--hx-gray-600);
    line-height: var(--hx-leading-relaxed);
}

/* ==========================================
   Badges
   ========================================== */

.hx-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: var(--hx-text-xs);
    font-weight: 600;
    border-radius: var(--hx-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hx-badge-blue {
    background: rgba(18, 107, 255, 0.1);
    color: var(--hx-blue);
}

.hx-badge-cyan {
    background: rgba(25, 199, 232, 0.1);
    color: var(--hx-cyan-dark);
}

.hx-badge-success {
    background: var(--hx-success-light);
    color: var(--hx-success);
}

.hx-badge-warning {
    background: var(--hx-warning-light);
    color: var(--hx-warning);
}

.hx-badge-danger {
    background: var(--hx-danger-light);
    color: var(--hx-danger);
}

/* ==========================================
   Navigation & Top Bar
   ========================================== */

.hx-top-bar {
    background: #071535;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hx-top-bar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--hx-transition);
}

.hx-top-bar a:hover {
    color: var(--hx-cyan);
}

.hx-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(11, 31, 75, 0.08);
    position: sticky;
    top: 0;
    z-index: var(--hx-z-sticky);
    min-height: var(--hx-header-height);
    transition: all var(--hx-transition);
}

.hx-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(11, 31, 75, 0.08);
}

.hx-navbar .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.hx-navbar .navbar-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform var(--hx-transition);
}

.hx-navbar .navbar-brand:hover img {
    transform: scale(1.02);
}

.hx-navbar .nav-link {
    color: var(--hx-navy);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    padding: 0.55rem 0.85rem !important;
    transition: all var(--hx-transition);
    border-radius: var(--hx-radius);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.hx-navbar .nav-link:hover,
.hx-navbar .nav-link:focus {
    color: var(--hx-blue);
    background: rgba(18, 107, 255, 0.04);
}

.hx-navbar .btn {
    white-space: nowrap;
}

.hx-navbar .dropdown-menu {
    border: 1px solid rgba(11, 31, 75, 0.08);
    border-radius: 14px;
    box-shadow: 0 20px 40px -10px rgba(11, 31, 75, 0.15), 0 0 1px rgba(11, 31, 75, 0.2);
    padding: var(--hx-space-3);
    min-width: 250px;
    animation: hx-dropdown-fade 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.hx-navbar .dropdown-item {
    border-radius: var(--hx-radius);
    padding: 0.5rem 1rem;
    font-size: var(--hx-text-sm);
    color: var(--hx-gray-700);
    transition: all var(--hx-transition);
}

.hx-navbar .dropdown-item:hover {
    background: var(--hx-bg);
    color: var(--hx-blue);
}

@keyframes hx-dropdown-fade {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Horizontal Mega Menu Submenus ── */
@media (min-width: 992px) {
    .hx-navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }

    .hx-navbar .dropdown-menu.hx-submenu-horizontal-features {
        min-width: 820px !important;
        max-width: 860px !important;
        padding: 1.25rem !important;
        left: 0 !important;
        right: auto !important;
    }

    .hx-navbar .dropdown-menu.hx-submenu-horizontal-product {
        min-width: 760px !important;
        max-width: 800px !important;
        padding: 1.25rem !important;
        left: -60px !important;
        right: auto !important;
    }

    .hx-navbar .dropdown-menu.hx-submenu-horizontal-solutions {
        min-width: 640px !important;
        max-width: 680px !important;
        padding: 1.25rem !important;
        left: -120px !important;
        right: auto !important;
    }

    .hx-navbar .dropdown-menu.hx-submenu-horizontal-company {
        min-width: 520px !important;
        max-width: 560px !important;
        padding: 1.25rem !important;
        left: auto !important;
        right: 0 !important;
    }
}

/* ── Mobile Responsive Navbar & Submenus (< 992px) ── */
@media (max-width: 991.98px) {
    .hx-navbar .navbar-collapse {
        max-height: 82vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 0.75rem;
        padding-bottom: 1.5rem;
    }

    .hx-navbar .nav-item.dropdown {
        width: 100%;
    }

    .hx-navbar .dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem;
        font-weight: 700;
        border-radius: 8px;
    }

    .hx-navbar .dropdown-toggle::after {
        margin-left: auto;
        transition: transform 0.25s ease;
    }

    .hx-navbar .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }

    .hx-navbar .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        box-shadow: none !important;
        border: 1px solid #E2E8F0 !important;
        background-color: #F8FAFC !important;
        margin-top: 0.35rem !important;
        margin-bottom: 0.75rem !important;
        padding: 0.85rem !important;
        transform: none !important;
        border-radius: 12px !important;
    }

    .hx-navbar .dropdown-menu.show {
        display: block !important;
    }

    .hx-navbar .dropdown-item {
        white-space: normal !important;
        padding: 0.65rem 0.75rem !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
        background: transparent;
    }

    .hx-navbar .dropdown-item:active,
    .hx-navbar .dropdown-item:hover {
        background: rgba(18, 107, 255, 0.08) !important;
        color: #126BFF !important;
    }

    .hx-navbar .hx-submenu-col-box,
    .hx-navbar .hx-submenu-card {
        margin-bottom: 0.65rem;
        background: #FFFFFF !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .hx-navbar .nav-link:not(.dropdown-toggle) {
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem;
        font-weight: 700;
        width: 100%;
    }

    .hx-navbar .navbar-collapse .btn.hx-btn-primary {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}

.hx-submenu-col-box {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #EDF2F7;
    height: 100%;
    transition: all 0.2s ease;
}

.hx-submenu-col-box:hover {
    background: #FFFFFF;
    border-color: rgba(18, 107, 255, 0.25);
    box-shadow: 0 4px 12px rgba(18, 107, 255, 0.06);
}

.hx-submenu-card {
    transition: all 0.2s ease;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
}

.hx-submenu-card:hover {
    border-color: rgba(18, 107, 255, 0.35) !important;
    background: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(18, 107, 255, 0.08);
}

/* Highlighted Column & Category Headings in Submenus */
.hx-submenu-heading-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.hx-submenu-heading-hostels {
    background: linear-gradient(135deg, rgba(18, 107, 255, 0.12) 0%, rgba(18, 107, 255, 0.04) 100%);
    border: 1px solid rgba(18, 107, 255, 0.25);
    border-left: 4px solid #126BFF;
    color: #0c4ec5;
}

.hx-submenu-heading-pg {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-left: 4px solid #0891b2;
    color: #0369a1;
}

.hx-submenu-heading-hotels {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0.06) 100%);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-left: 4px solid #f59e0b;
    color: #b45309;
}

/* ==========================================
   Three Product Showcase Banners (Home Page)
   ========================================== */
.hx-product-banner-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.hx-product-banner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(18, 107, 255, 0.12) !important;
}

.hx-product-banner-card-hostels:hover {
    border-color: #126BFF !important;
}

.hx-product-banner-card-pg:hover {
    border-color: #0891b2 !important;
}

.hx-product-banner-card-hotels:hover {
    border-color: #f59e0b !important;
}

.hx-product-banner-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #0B1F4B;
}

.hx-product-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hx-product-banner-card:hover .hx-product-banner-img {
    transform: scale(1.08);
}

.hx-product-banner-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 75, 0.85) 0%, rgba(11, 31, 75, 0.2) 60%, transparent 100%);
    pointer-events: none;
}

.hx-product-banner-metric-box {
    background: #F8FAFC;
    border: 1px dashed #CBD5E1;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ==========================================
   Guaranteed Badge Contrast Overrides
   ========================================== */
.badge.bg-info.bg-opacity-20.text-info,
.badge.bg-info.text-info {
    background-color: rgba(6, 182, 212, 0.2) !important;
    color: #38bdf8 !important;
    border: 1px solid rgba(56, 189, 248, 0.45) !important;
}

.badge.bg-primary.bg-opacity-10.text-primary,
.badge.bg-primary.text-primary {
    background-color: rgba(18, 107, 255, 0.12) !important;
    color: #0c4ec5 !important;
    border: 1px solid rgba(18, 107, 255, 0.25) !important;
}

.badge.bg-danger.bg-opacity-10.text-danger,
.badge.bg-danger.text-danger {
    background-color: rgba(239, 68, 68, 0.12) !important;
    color: #b91c1c !important;
    border: 1px solid rgba(239, 68, 68, 0.25) !important;
}

.badge.bg-success.bg-opacity-10.text-success,
.badge.bg-success.text-success {
    background-color: rgba(16, 185, 129, 0.14) !important;
    color: #047857 !important;
    border: 1px solid rgba(16, 185, 129, 0.28) !important;
}

/* ==========================================
   Hero Section
   ========================================== */

.hx-hero {
    background: linear-gradient(135deg, var(--hx-navy) 0%, var(--hx-navy-light) 50%, #1A3A7A 100%);
    color: var(--hx-white);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hx-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(25, 199, 232, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(18, 107, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hx-hero h1 {
    font-size: clamp(2.25rem, 5vw, var(--hx-text-6xl));
    font-weight: 800;
    color: var(--hx-white);
    margin-bottom: var(--hx-space-6);
    line-height: 1.1;
}

.hx-hero .hx-hero-subtitle {
    font-size: var(--hx-text-xl);
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    line-height: var(--hx-leading-relaxed);
    margin-bottom: var(--hx-space-8);
}

.hx-hero-gradient-text {
    background: linear-gradient(90deg, var(--hx-cyan) 0%, var(--hx-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   Stats / Trust Metrics
   ========================================== */

.hx-stats-section {
    background: var(--hx-white);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.hx-stat-card {
    text-align: center;
    padding: var(--hx-space-8);
}

.hx-stat-value {
    font-size: var(--hx-text-5xl);
    font-weight: 800;
    color: var(--hx-blue);
    line-height: 1;
    margin-bottom: var(--hx-space-2);
}

.hx-stat-label {
    font-size: var(--hx-text-sm);
    color: var(--hx-gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   Forms
   ========================================== */

.hx-form-control {
    border: 1.5px solid var(--hx-gray-300);
    border-radius: var(--hx-radius-md);
    padding: 0.75rem 1rem;
    font-size: var(--hx-text-base);
    transition: all var(--hx-transition);
    color: var(--hx-navy);
    background: var(--hx-white);
}

.hx-form-control:focus {
    border-color: var(--hx-blue);
    box-shadow: 0 0 0 3px rgba(18, 107, 255, 0.12);
    outline: none;
}

.hx-form-control::placeholder {
    color: var(--hx-gray-400);
}

.hx-form-label {
    font-size: var(--hx-text-sm);
    font-weight: 600;
    color: var(--hx-navy);
    margin-bottom: var(--hx-space-2);
}

.hx-form-group {
    margin-bottom: var(--hx-space-5);
}

.hx-form-error {
    color: var(--hx-danger);
    font-size: var(--hx-text-sm);
    margin-top: var(--hx-space-1);
}

.hx-form-control.is-invalid {
    border-color: var(--hx-danger);
}

/* ==========================================
   Footer
   ========================================== */

.hx-footer {
    background: #071535;
    color: rgba(255, 255, 255, 0.75);
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.hx-footer-cta-strip {
    background: linear-gradient(135deg, rgba(18, 107, 255, 0.12) 0%, rgba(25, 199, 232, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 4rem;
}

.hx-footer h5 {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.25rem;
}

.hx-footer ul {
    margin: 0;
    padding: 0;
}

.hx-footer li {
    list-style: none;
    margin-bottom: 0.6rem;
}

.hx-footer a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.875rem;
    transition: all var(--hx-transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.hx-footer a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.hx-footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

.hx-footer-social-btn:hover {
    background: var(--hx-blue);
    border-color: var(--hx-blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 107, 255, 0.4);
}

.hx-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 0;
    margin-top: 4rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

.hx-footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8125rem;
    display: inline;
}

.hx-footer-bottom a:hover {
    color: #ffffff;
    transform: none;
}

/* ==========================================
   Animations (Subtle)
   ========================================== */

@media (prefers-reduced-motion: no-preference) {
    .hx-animate-fade-in {
        opacity: 0;
        animation: hx-fade-in 0.6s ease forwards;
    }

    .hx-animate-slide-up {
        opacity: 0;
        transform: translateY(20px);
        animation: hx-slide-up 0.6s ease forwards;
    }

    .hx-animate-delay-1 { animation-delay: 0.1s; }
    .hx-animate-delay-2 { animation-delay: 0.2s; }
    .hx-animate-delay-3 { animation-delay: 0.3s; }
    .hx-animate-delay-4 { animation-delay: 0.4s; }
    .hx-animate-delay-5 { animation-delay: 0.5s; }

    @keyframes hx-fade-in {
        to { opacity: 1; }
    }

    @keyframes hx-slide-up {
        to { opacity: 1; transform: translateY(0); }
    }
}

@media (prefers-reduced-motion: reduce) {
    .hx-animate-fade-in,
    .hx-animate-slide-up {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ==========================================
   Admin Sidebar
   ========================================== */

.hx-admin-sidebar {
    width: var(--hx-sidebar-width);
    background: var(--hx-navy);
    color: rgba(255, 255, 255, 0.7);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: var(--hx-z-fixed);
    transition: width var(--hx-transition);
}

.hx-admin-sidebar .sidebar-brand {
    padding: var(--hx-space-5) var(--hx-space-5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: var(--hx-space-3);
    height: var(--hx-admin-header-height);
}

.hx-admin-sidebar .sidebar-brand img {
    height: 30px;
}

.hx-admin-sidebar .sidebar-nav {
    padding: var(--hx-space-4) 0;
    list-style: none;
    margin: 0;
}

.hx-admin-sidebar .sidebar-nav .nav-item {
    margin: 0 var(--hx-space-3);
}

.hx-admin-sidebar .sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: var(--hx-space-3);
    padding: 0.6rem var(--hx-space-4);
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--hx-text-sm);
    font-weight: 500;
    border-radius: var(--hx-radius);
    transition: all var(--hx-transition);
}

.hx-admin-sidebar .sidebar-nav .nav-link:hover,
.hx-admin-sidebar .sidebar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--hx-white);
}

.hx-admin-sidebar .sidebar-nav .nav-link.active {
    background: rgba(18, 107, 255, 0.2);
    color: var(--hx-cyan);
}

.hx-admin-sidebar .sidebar-section-title {
    padding: var(--hx-space-4) var(--hx-space-5) var(--hx-space-2);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
}

/* Admin Main Content */
.hx-admin-main {
    margin-left: var(--hx-sidebar-width);
    min-height: 100vh;
    background: var(--hx-bg);
}

.hx-admin-topbar {
    background: var(--hx-white);
    height: var(--hx-admin-header-height);
    border-bottom: 1px solid var(--hx-gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--hx-space-6);
    position: sticky;
    top: 0;
    z-index: var(--hx-z-sticky);
}

.hx-admin-content {
    padding: var(--hx-space-6);
}

/* Admin Typography & Modern Header Overrides */
.text-navy {
    color: #071535 !important;
}

.hx-admin-main .hx-section-title,
.hx-admin-content .hx-section-title,
.hx-admin-main .hx-section-title h2,
.hx-admin-main .hx-section-title h1,
.hx-admin-main h1.hx-section-title,
.hx-admin-main h2.hx-section-title {
    text-align: left !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.25rem !important;
    color: #071535 !important;
    letter-spacing: -0.5px !important;
}

.hx-admin-main .hx-section-subtitle,
.hx-admin-main .hx-section-title p {
    text-align: left !important;
    font-size: 0.875rem !important;
    color: #64748b !important;
    margin-bottom: 0 !important;
    font-weight: 400 !important;
}

.hx-admin-main .hx-card {
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hx-admin-main .hx-card-body {
    padding: 1.5rem;
}

.hx-admin-main .table-hover tbody tr:hover {
    background-color: #f8fafc;
}

/* Admin KPI Cards */
.hx-kpi-card {
    background: var(--hx-white);
    border-radius: var(--hx-radius-lg);
    border: 1px solid var(--hx-gray-200);
    padding: var(--hx-space-5);
    display: flex;
    align-items: center;
    gap: var(--hx-space-4);
}

.hx-kpi-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--hx-radius-lg);
    font-size: 1.25rem;
}

.hx-kpi-icon.blue { background: rgba(18, 107, 255, 0.1); color: var(--hx-blue); }
.hx-kpi-icon.cyan { background: rgba(25, 199, 232, 0.1); color: var(--hx-cyan); }
.hx-kpi-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--hx-success); }
.hx-kpi-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--hx-warning); }
.hx-kpi-icon.red { background: rgba(239, 68, 68, 0.1); color: var(--hx-danger); }

.hx-kpi-value {
    font-size: var(--hx-text-2xl);
    font-weight: 800;
    color: var(--hx-navy);
    line-height: 1;
}

.hx-kpi-label {
    font-size: var(--hx-text-sm);
    color: var(--hx-gray-500);
    margin-top: 2px;
}

/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 1024px) {
    .hx-admin-sidebar {
        transform: translateX(-100%);
    }
    
    .hx-admin-sidebar.show {
        transform: translateX(0);
    }
    
    .hx-admin-main {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    h1 { font-size: var(--hx-text-3xl); }
    h2 { font-size: var(--hx-text-2xl); }
    h3 { font-size: var(--hx-text-xl); }
    
    .hx-section { padding: var(--hx-space-12) 0; }
    .hx-section-lg { padding: var(--hx-space-16) 0; }
    .hx-section-title { font-size: var(--hx-text-3xl); }
    
    .hx-hero {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
    
    .hx-hero h1 {
        font-size: var(--hx-text-3xl);
    }
    
    .hx-stat-value {
        font-size: var(--hx-text-3xl);
    }
    
    .hx-card-body {
        padding: var(--hx-space-4);
    }
}

@media (max-width: 375px) {
    .hx-btn {
        padding: 0.625rem 1.25rem;
        font-size: var(--hx-text-sm);
    }
    
    .hx-hero h1 {
        font-size: var(--hx-text-2xl);
    }
}

/* ==========================================
   Utilities
   ========================================== */

.text-gradient {
    background: linear-gradient(90deg, var(--hx-blue) 0%, var(--hx-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-brand {
    background: linear-gradient(135deg, var(--hx-navy) 0%, var(--hx-navy-light) 100%);
}

.hx-container {
    max-width: var(--hx-max-width);
    margin: 0 auto;
    padding: 0 var(--hx-space-5);
}

.hx-divider {
    border: none;
    border-top: 1px solid var(--hx-gray-200);
    margin: var(--hx-space-8) 0;
}

/* ==========================================
   Enterprise Hero Banner & Visual Assets
   ========================================== */

@keyframes hx-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

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

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

.hx-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10B981;
    display: inline-block;
    animation: hx-pulse 2s infinite ease-in-out;
}

.hx-hero-enterprise {
    position: relative;
    background: radial-gradient(ellipse at 15% 10%, rgba(18, 107, 255, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 85% 90%, rgba(25, 199, 232, 0.25) 0%, transparent 55%),
                linear-gradient(145deg, #071535 0%, #0B1F4B 50%, #092054 100%);
    color: #ffffff;
    overflow: hidden;
    padding: 110px 0 90px;
}

.hx-hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.25;
    pointer-events: none;
}

.hx-glow-orb {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    pointer-events: none;
}

.hx-glow-orb-1 {
    top: -100px;
    right: 5%;
    background: radial-gradient(circle, #126BFF 0%, transparent 70%);
}

.hx-glow-orb-2 {
    bottom: -150px;
    left: 10%;
    background: radial-gradient(circle, #19C7E8 0%, transparent 70%);
}

.hx-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.825rem;
    font-weight: 600;
    color: #19C7E8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hx-hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #ffffff;
}

@media (max-width: 991px) {
    .hx-hero-title {
        font-size: 2.5rem;
    }
}

.hx-hero-highlight {
    background: linear-gradient(90deg, #19C7E8 0%, #4D8FFF 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hx-avatar-stack {
    display: flex;
    align-items: center;
}

.hx-avatar-stack img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #0B1F4B;
    margin-left: -10px;
    object-fit: cover;
}

.hx-avatar-stack img:first-child {
    margin-left: 0;
}

/* ── Hero Mockup Window Frame ── */
.hx-mockup-wrapper {
    position: relative;
    z-index: 2;
}

.hx-mockup-window {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(24px);
    border-radius: 20px;
    box-shadow: 0 25px 65px -15px rgba(0, 0, 0, 0.6), 0 0 35px rgba(18, 107, 255, 0.25);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hx-mockup-window:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.7), 0 0 50px rgba(18, 107, 255, 0.35);
}

.hx-mockup-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hx-mockup-dots {
    display: flex;
    gap: 6px;
}

.hx-mockup-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.hx-mockup-urlbar {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 3px 14px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    flex-grow: 1;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── Floating Badges / Chips ── */
.hx-floating-chip {
    position: absolute;
    background: rgba(11, 31, 75, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(18, 107, 255, 0.2);
    z-index: 4;
}

.hx-floating-chip-1 {
    top: -24px;
    right: -20px;
    animation: hx-float-slow 6s ease-in-out infinite;
}

.hx-floating-chip-2 {
    bottom: -22px;
    left: -20px;
    animation: hx-float-reverse 5.5s ease-in-out infinite;
}

@media (max-width: 991px) {
    .hx-floating-chip-1, .hx-floating-chip-2 {
        position: static;
        margin-top: 15px;
        display: inline-block;
    }
}

/* ── Premium Colorful Metric Impact Cards ── */
.hx-stat-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 24px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 16px 36px -6px rgba(7, 21, 53, 0.08), 0 4px 14px rgba(7, 21, 53, 0.03);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
}

.hx-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 22px 22px 0 0;
    transition: height 0.3s ease;
}

.hx-stat-card-blue::before { background: linear-gradient(90deg, #126BFF, #38BDF8); }
.hx-stat-card-cyan::before { background: linear-gradient(90deg, #06B6D4, #3B82F6); }
.hx-stat-card-emerald::before { background: linear-gradient(90deg, #10B981, #34D399); }
.hx-stat-card-amber::before { background: linear-gradient(90deg, #F59E0B, #FBBF24); }

.hx-stat-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    filter: blur(45px);
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hx-stat-card-blue::after { background: #126BFF; }
.hx-stat-card-cyan::after { background: #06B6D4; }
.hx-stat-card-emerald::after { background: #10B981; }
.hx-stat-card-amber::after { background: #F59E0B; }

.hx-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(18, 107, 255, 0.3);
}

.hx-stat-card-blue:hover { box-shadow: 0 24px 48px -8px rgba(18, 107, 255, 0.22), 0 8px 20px rgba(7, 21, 53, 0.06); }
.hx-stat-card-cyan:hover { box-shadow: 0 24px 48px -8px rgba(6, 182, 212, 0.22), 0 8px 20px rgba(7, 21, 53, 0.06); }
.hx-stat-card-emerald:hover { box-shadow: 0 24px 48px -8px rgba(16, 185, 129, 0.22), 0 8px 20px rgba(7, 21, 53, 0.06); }
.hx-stat-card-amber:hover { box-shadow: 0 24px 48px -8px rgba(245, 158, 11, 0.22), 0 8px 20px rgba(7, 21, 53, 0.06); }

.hx-stat-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hx-stat-card:hover .hx-stat-icon-wrapper {
    transform: scale(1.1) rotate(-4deg);
}

.hx-stat-icon-blue {
    background: linear-gradient(135deg, #126BFF 0%, #0A4FCC 100%);
    box-shadow: 0 8px 20px rgba(18, 107, 255, 0.35);
}
.hx-stat-icon-cyan {
    background: linear-gradient(135deg, #06B6D4 0%, #0284C7 100%);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.35);
}
.hx-stat-icon-emerald {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}
.hx-stat-icon-amber {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.hx-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-family: var(--hx-font-heading);
    margin-bottom: 6px;
}

.hx-stat-num-blue {
    background: linear-gradient(135deg, #0A4FCC 0%, #126BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hx-stat-num-cyan {
    background: linear-gradient(135deg, #0284C7 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hx-stat-num-emerald {
    background: linear-gradient(135deg, #047857 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hx-stat-num-amber {
    background: linear-gradient(135deg, #B45309 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hx-stat-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.hx-stat-desc {
    color: #64748B;
    font-size: 0.86rem;
    line-height: 1.45;
    margin-bottom: 16px;
    flex-grow: 1;
}

.hx-stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: fit-content;
    margin: 0 auto;
}

.hx-stat-chip-blue {
    background: rgba(18, 107, 255, 0.08);
    color: #126BFF;
    border: 1px solid rgba(18, 107, 255, 0.22);
}
.hx-stat-chip-cyan {
    background: rgba(6, 182, 212, 0.08);
    color: #0891B2;
    border: 1px solid rgba(6, 182, 212, 0.22);
}
.hx-stat-chip-emerald {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.22);
}
.hx-stat-chip-amber {
    background: rgba(245, 158, 11, 0.08);
    color: #D97706;
    border: 1px solid rgba(245, 158, 11, 0.22);
}

/* ── Live Operational Activity Feed Ticker ── */
.hx-live-bar {
    background: #06132d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.hx-live-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 9999px;
    color: #10b981;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    user-select: none;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.hx-pulse-radar-dot {
    position: relative;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.hx-pulse-radar-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #10b981;
    animation: hx-radar-pulse 1.8s infinite ease-out;
}

@keyframes hx-radar-pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.hx-ticker-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.hx-ticker-track {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: max-content;
    animation: hx-ticker-scroll 38s linear infinite;
    will-change: transform;
}

.hx-ticker-wrapper:hover .hx-ticker-track {
    animation-play-state: paused;
}

@keyframes hx-ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hx-ticker-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    white-space: nowrap;
    transition: all 0.2s ease;
    cursor: default;
    user-select: none;
}

.hx-ticker-card:hover {
    background: rgba(18, 107, 255, 0.15);
    border-color: rgba(25, 199, 232, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ── Trust Logos Marquee Carousel ── */
.hx-trust-bar {
    background: rgba(7, 21, 53, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.hx-trust-badge {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.hx-trust-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hx-trust-marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: hx-trust-scroll 28s linear infinite;
    will-change: transform;
}

.hx-trust-marquee-wrapper:hover .hx-trust-marquee-track {
    animation-play-state: paused;
}

@keyframes hx-trust-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hx-trust-logo {
    font-family: var(--hx-font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.25s ease;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 18px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    user-select: none;
}

.hx-trust-logo:hover {
    color: #ffffff;
    background: rgba(18, 107, 255, 0.2);
    border-color: rgba(25, 199, 232, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 107, 255, 0.3);
}

.hx-trust-logo i {
    font-size: 1.2rem;
}

/* ── Stock Photo Cards ── */
.hx-photo-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 75, 0.08);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
    border: 1px solid rgba(11, 31, 75, 0.06);
}

.hx-photo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11, 31, 75, 0.14);
}

.hx-photo-card .hx-photo-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.hx-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hx-photo-card:hover img {
    transform: scale(1.08);
}

.hx-photo-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(11, 31, 75, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── Accommodation Type Photographic Cards ── */
.hx-accommodation-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 10px 30px rgba(11, 31, 75, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    text-decoration: none;
}

.hx-accommodation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(11, 31, 75, 0.2);
}

.hx-accommodation-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 1;
}

.hx-accommodation-card:hover img {
    transform: scale(1.1);
}

.hx-accommodation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 31, 75, 0.15) 0%, rgba(11, 31, 75, 0.85) 75%, #071535 100%);
    z-index: 2;
}

.hx-accommodation-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

/* ── Testimonial Executive Card ── */
.hx-testimonial-card-pro {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(11, 31, 75, 0.08);
    box-shadow: 0 10px 30px rgba(11, 31, 75, 0.05);
    padding: 32px;
    transition: all 0.3s ease;
}

.hx-testimonial-card-pro:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(11, 31, 75, 0.1);
    border-color: rgba(18, 107, 255, 0.2);
}

/* ── Single Page Product Sticky Subnav, Tabs & Jumper ── */
.hx-product-sticky-nav {
    position: sticky;
    top: 72px;
    z-index: 99;
    background: rgba(7, 21, 53, 0.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.hx-product-nav-pill {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.825rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
    cursor: pointer;
    background: transparent;
}

.hx-product-nav-pill:hover, .hx-product-nav-pill.active {
    color: #ffffff;
    background: rgba(18, 107, 255, 0.25);
    border-color: rgba(25, 199, 232, 0.45);
    box-shadow: 0 0 15px rgba(18, 107, 255, 0.3);
}

.hx-product-jumper-select {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 9999px;
    backdrop-filter: blur(12px);
    cursor: pointer;
    outline: none;
    transition: all 0.25s ease;
    max-width: 260px;
}

.hx-product-jumper-select:focus, .hx-product-jumper-select:hover {
    border-color: var(--hx-cyan);
    box-shadow: 0 0 15px rgba(25, 199, 232, 0.3);
}

.hx-product-jumper-select option {
    background: #0B1F4B;
    color: #ffffff;
    padding: 6px;
}

.hx-scrollbar-none::-webkit-scrollbar {
    display: none;
}

.hx-scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ==========================================
   Modern Sleek Scrollbars
   ========================================== */

/* Global Clean Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.45);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 116, 139, 0.75);
}

::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.45) transparent;
}

/* Dark Theme Admin Sidebar Custom Scrollbar */
.hx-admin-sidebar,
.hx-admin-nav-container {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.18) transparent !important;
}

.hx-admin-sidebar::-webkit-scrollbar,
.hx-admin-nav-container::-webkit-scrollbar {
    width: 5px !important;
    height: 5px !important;
}

.hx-admin-sidebar::-webkit-scrollbar-track,
.hx-admin-nav-container::-webkit-scrollbar-track {
    background: transparent !important;
}

.hx-admin-sidebar::-webkit-scrollbar-thumb,
.hx-admin-nav-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.16) !important;
    border-radius: 9999px !important;
}

.hx-admin-sidebar::-webkit-scrollbar-thumb:hover,
.hx-admin-nav-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.35) !important;
}

.hx-admin-sidebar::-webkit-scrollbar-button,
.hx-admin-nav-container::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}



.hx-phone-frame {
    width: 290px;
    height: 580px;
    background: #0F172A;
    border: 10px solid #1E293B;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(18, 107, 255, 0.2);
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.hx-phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: #1E293B;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

/* ==========================================
   Lead Capture & Verification Modal
   ========================================== */

.hx-floating-lead-trigger {
    position: fixed;
    bottom: 86px;
    right: 24px;
    z-index: 1040;
    background: linear-gradient(135deg, #071535 0%, #0B1F4B 50%, #126BFF 100%);
    border-radius: 9999px;
    padding: 9px 18px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(18, 107, 255, 0.4), 0 0 1px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.25s ease;
}

.hx-floating-lead-trigger:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(18, 107, 255, 0.55);
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: hx-pulse 1.8s infinite;
}

@keyframes hx-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ==========================================
   Nexi AI Copilot Chatbot Styles
   ========================================== */

.nexi-launcher-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    background: linear-gradient(135deg, #071535 0%, #0B1F4B 60%, #126BFF 100%);
    border-radius: 9999px;
    padding: 10px 18px;
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(18, 107, 255, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.nexi-launcher-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 45px rgba(18, 107, 255, 0.6);
}

.nexi-launcher-btn.active {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
}

.nexi-pulse-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background-color: #10B981;
    border-radius: 50%;
    border: 2px solid #0B1F4B;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8);
    animation: hx-pulse 1.8s infinite;
}

.nexi-pulse-dot-header {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 9px;
    height: 9px;
    background-color: #10B981;
    border-radius: 50%;
    border: 1.5px solid #071535;
    animation: hx-pulse 1.8s infinite;
}

.nexi-chat-window {
    position: fixed;
    bottom: 86px;
    right: 24px;
    width: 420px;
    max-width: calc(100vw - 32px);
    height: 620px;
    max-height: calc(100vh - 110px);
    background: #F8FAFC;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(7, 21, 53, 0.28), 0 0 0 1px rgba(18, 107, 255, 0.1);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.nexi-header {
    background: linear-gradient(135deg, #071535 0%, #0B1F4B 60%, #126BFF 100%);
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nexi-header-avatar {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nexi-quick-bar {
    white-space: nowrap;
    scrollbar-width: thin;
}

.nexi-quick-bar::-webkit-scrollbar {
    height: 3px;
}

.nexi-quick-bar::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 3px;
}

.nexi-messages-container {
    flex: 1 1 auto;
    overflow-y: auto;
    scrollbar-width: thin;
    display: flex;
    flex-direction: column;
}

.nexi-messages-container::-webkit-scrollbar {
    width: 6px;
}

.nexi-messages-container::-webkit-scrollbar-track {
    background: transparent;
}

.nexi-messages-container::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

.nexi-bubble-avatar {
    width: 32px;
    height: 32px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nexi-bubble-card {
    border-radius: 14px;
    background-color: #FFFFFF;
    line-height: 1.5;
    color: #1E293B;
}

.nexi-bubble-card-user {
    border-radius: 14px;
    line-height: 1.5;
}

.nexi-profile-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 14px rgba(18, 107, 255, 0.08);
    transition: all 0.2s ease;
}

.nexi-profile-card .form-control:focus,
.nexi-profile-card .form-select:focus {
    border-color: #126BFF;
    box-shadow: 0 0 0 3px rgba(18, 107, 255, 0.15);
}

.nexi-action-chip {
    background: #EFF6FF;
    color: #1E3A8A;
    border: 1px solid #BFDBFE;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    transition: all 0.2s ease;
}

.nexi-action-chip:hover {
    background: #126BFF;
    color: #ffffff !important;
    border-color: #126BFF;
    transform: translateY(-1px);
}

.nexi-action-chip:hover i {
    color: #ffffff !important;
}

.nexi-typing-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #126BFF;
    border-radius: 50%;
    margin-right: 2px;
    animation: nexi-bounce 1.4s infinite ease-in-out both;
}

.nexi-typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.nexi-typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes nexi-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

.nexi-input {
    border-radius: 12px 0 0 12px;
    border-color: #E2E8F0;
    font-size: 0.88rem;
}

.nexi-input:focus {
    border-color: #126BFF;
    box-shadow: 0 0 0 3px rgba(18, 107, 255, 0.15);
}

.hover-white:hover {
    color: #ffffff !important;
}

@media (max-width: 576px) {
    .nexi-chat-window {
        bottom: 0;
        right: 0;
        left: 0;
        top: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        border: none;
    }
    .hx-floating-lead-trigger {
        display: none !important;
    }
}

/* ── Compact Sleek Page Header ── */
.hx-compact-header {
    background: radial-gradient(ellipse at 15% 10%, rgba(18, 107, 255, 0.22) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 90%, rgba(25, 199, 232, 0.16) 0%, transparent 50%),
                linear-gradient(145deg, #071535 0%, #0B1F4B 60%, #081B42 100%);
    color: #ffffff;
    padding: 42px 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.hx-compact-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(18, 107, 255, 0.4) 30%, rgba(25, 199, 232, 0.6) 50%, rgba(18, 107, 255, 0.4) 70%, transparent 100%);
}

.hx-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
}

.hx-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.hx-breadcrumb a:hover {
    color: #38BDF8;
}

.hx-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(18, 107, 255, 0.15);
    border: 1px solid rgba(25, 199, 232, 0.3);
    border-radius: 9999px;
    color: #38BDF8;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hx-header-title {
    font-size: 2.15rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-family: var(--hx-font-heading);
    margin-bottom: 8px;
    line-height: 1.2;
}

.hx-header-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 760px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ── Feature Cards (Catalog & Grid) ── */
.hx-feature-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(7, 21, 53, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hx-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 38px -6px rgba(18, 107, 255, 0.16), 0 6px 16px rgba(7, 21, 53, 0.05);
    border-color: rgba(18, 107, 255, 0.35);
}

.hx-feature-thumb {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #0B1F4B;
}

.hx-feature-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hx-feature-card:hover .hx-feature-thumb img {
    transform: scale(1.06);
}

.hx-feature-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(7, 21, 53, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hx-feature-icon-float {
    position: absolute;
    bottom: 12px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #126BFF 0%, #0A4FCC 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.9);
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hx-feature-card:hover .hx-feature-icon-float {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 8px 20px rgba(18, 107, 255, 0.45);
}

/* ── Feature Detail Components ── */
.hx-challenge-card {
    background: #FFF5F5;
    border: 1px solid #FED7D7;
    border-radius: 18px;
    padding: 24px;
}

.hx-solution-card {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 18px;
    padding: 24px;
}

.hx-capability-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 22px 20px;
    transition: all 0.25s ease;
    height: 100%;
}

.hx-capability-card:hover {
    border-color: #126BFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(18, 107, 255, 0.08);
}

.hx-metric-box {
    background: linear-gradient(145deg, #F8FAFC 0%, #FFFFFF 100%);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
}




