/**
 * ShipmentAgency - Modern Premium Design System
 * A complete UI transformation with modern aesthetics
 */

/* ============================================
   CSS Variables (Modern Design System)
   ============================================ */
:root {
    /* Premium Header & Footer */
    --header-height: 80px;
    --top-bar-height: 45px;
    --footer-bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --footer-text: rgba(255, 255, 255, 0.8);
    --footer-muted: rgba(255, 255, 255, 0.6);
    --footer-accent: #667eea;
    --header-glass: rgba(255, 255, 255, 0.95);
    --header-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    /* Primary Gradient Palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-gradient-hover: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --warning-gradient: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%);
    --danger-gradient: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    --dark-gradient: linear-gradient(135deg, #232526 0%, #414345 100%);
    
    /* Modern Primary Colors */
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    --primary-200: #c7d2fe;
    --primary-300: #a5b4fc;
    --primary-400: #818cf8;
    --primary-500: #667eea;
    --primary-600: #5b5bd6;
    --primary-700: #4c4cb3;
    --primary-800: #3f3f91;
    --primary-900: #353574;
    
    /* Secondary Accent */
    --secondary-500: #764ba2;
    --secondary-600: #6b4192;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-bg-light: rgba(255, 255, 255, 0.25);
    --glass-bg-dark: rgba(0, 0, 0, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --glass-blur: blur(12px);
    
    /* Neon Glow Effects */
    --glow-primary: 0 0 20px rgba(102, 126, 234, 0.5);
    --glow-secondary: 0 0 20px rgba(118, 75, 162, 0.5);
    --glow-accent: 0 0 20px rgba(79, 172, 254, 0.5);
    --glow-success: 0 0 20px rgba(56, 239, 125, 0.5);
    
    /* Modern Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    
    /* Colored Shadows */
    --shadow-primary: 0 10px 40px -10px rgba(102, 126, 234, 0.5);
    --shadow-secondary: 0 10px 40px -10px rgba(118, 75, 162, 0.5);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', 'Poppins', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

/* ============================================
   MODERN BASE STYLES
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Selection Styling */
::selection {
    background: var(--primary-500);
    color: white;
}

::-moz-selection {
    background: var(--primary-500);
    color: white;
}

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

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gradient-hover);
}

/* ============================================
   MODERN PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.modern-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-400);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; transform: translateX(0); }
    50% { width: 70%; }
    100% { width: 100%; transform: translateX(0); }
}

/* ============================================
   GLASSMORPHISM COMPONENTS
   ============================================ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-light {
    background: var(--glass-bg-light);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--glow-primary);
    border-color: rgba(102, 126, 234, 0.3);
}

/* ============================================
   MODERN TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark-gradient);
    padding: 0.625rem 0;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar a:hover {
    color: white;
}

.top-bar i {
    font-size: 0.75rem;
    opacity: 0.8;
}

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.lang-switch-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* ============================================
   MODERN NAVIGATION
   ============================================ */
.navbar {
    padding: 1rem 0;
    transition: all var(--transition-slow);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gray-900) !important;
    transition: transform var(--transition-base);
}

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

.brand-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.625rem 1.125rem !important;
    color: var(--gray-700) !important;
    position: relative;
    transition: all var(--transition-base);
    border-radius: var(--radius-lg);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-500) !important;
    background: var(--primary-50);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: calc(100% - 2rem);
}

.nav-cta .btn {
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.navbar-toggler:focus {
    box-shadow: none;
    background: var(--gray-100);
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

.navbar-collapse {
    transition: all var(--transition-slow);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 1.5rem;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-xl);
        margin-top: 1rem;
        border: 1px solid var(--gray-100);
    }
    
    .navbar-nav .nav-link {
        padding: 0.875rem 1rem !important;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

/* ============================================
   MODERN HERO SECTION
   ============================================ */
.hero-section:not(.hero-section--v3) {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-gradient);
    overflow: hidden;
    padding: 0 0 3.5rem;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    animation: heroRotate 30s linear infinite;
}

@keyframes heroRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite;
}

.hero-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.hero-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; width: 15px; height: 15px; }
.hero-particle:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 16s; }
.hero-particle:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 13s; width: 20px; height: 20px; }
.hero-particle:nth-child(5) { left: 65%; animation-delay: 3s; animation-duration: 15s; }
.hero-particle:nth-child(6) { left: 80%; animation-delay: 5s; animation-duration: 11s; width: 12px; height: 12px; }
.hero-particle:nth-child(7) { left: 90%; animation-delay: 2.5s; animation-duration: 17s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-section:not(.hero-section--v3) .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 120px 0 80px;
    margin: 0 auto;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 430px);
    gap: 2.5rem;
    align-items: center;
}

.hero-copy-column {
    text-align: left;
    max-width: 760px;
}

.hero-visual-column {
    position: relative;
    min-height: 460px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-badge i {
    color: var(--primary-400);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    opacity: 0.5;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-route-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hero-route-pills span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.95rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-route-pills i {
    font-size: 0.45rem;
    color: #38bdf8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.hero-buttons .btn {
    min-height: 58px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-ops-card,
.hero-floating-note {
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 32px 72px -42px rgba(8, 15, 28, 0.95);
}

.hero-ops-card {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    border-radius: 1.75rem;
    background:
        linear-gradient(180deg, rgba(10, 16, 30, 0.86), rgba(15, 23, 42, 0.72)),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.22), transparent 30%);
}

.hero-ops-card-top,
.hero-ops-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hero-ops-card-top {
    margin-bottom: 1.2rem;
}

.hero-ops-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.78);
}

.hero-ops-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #38bdf8);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.hero-ops-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-ops-route i {
    color: #7dd3fc;
    font-size: 1.1rem;
}

.hero-ops-city,
.hero-ops-value {
    display: block;
    color: #fff;
    font-weight: 800;
}

.hero-ops-city {
    font-size: 1.1rem;
}

.hero-ops-meta,
.hero-ops-copy {
    display: block;
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.82rem;
    line-height: 1.55;
}

.hero-ops-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 1rem 0;
}

.hero-ops-grid article {
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-ops-value {
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.hero-ops-footer {
    flex-wrap: wrap;
    justify-content: flex-start;
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.84rem;
}

.hero-ops-footer span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-floating-note {
    position: absolute;
    max-width: 250px;
    padding: 0.95rem 1rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
}

.hero-floating-note i {
    font-size: 1rem;
    color: #7dd3fc;
    margin-bottom: 0.55rem;
}

.hero-floating-note strong,
.hero-floating-note span {
    display: block;
}

.hero-floating-note strong {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.hero-floating-note span {
    color: rgba(226, 232, 240, 0.74);
    font-size: 0.82rem;
    line-height: 1.5;
}

.hero-floating-note-primary {
    top: 1.25rem;
    right: -1rem;
}

.hero-floating-note-secondary {
    bottom: 1.2rem;
    left: -1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   MODERN BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 45px -10px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: white;
    box-shadow: var(--shadow-secondary);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px -10px rgba(118, 75, 162, 0.6);
}

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

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-500);
    color: var(--primary-500);
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success-gradient);
    color: white;
    border: none;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px -10px rgba(56, 239, 125, 0.5);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    border-radius: var(--radius-xl);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: var(--radius-md);
}

/* Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   MODERN CARDS
   ============================================ */
.card-modern {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    overflow: hidden;
    height: 100%;
}

.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.card-modern .card-header {
    background: transparent;
    border-bottom: 1px solid var(--gray-100);
    padding: 1.25rem 1.5rem;
}

.card-modern .card-body {
    padding: 1.5rem;
}

.card-modern .card-footer {
    background: transparent;
    border-top: 1px solid var(--gray-100);
    padding: 1rem 1.5rem;
}

/* Feature Cards */
.feature-card-modern {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-slow);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-slow);
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--transition-slow);
}

.feature-icon-modern::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--primary-gradient);
    border-radius: inherit;
    opacity: 0;
    filter: blur(12px);
    transition: opacity var(--transition-slow);
}

.feature-card-modern:hover .feature-icon-modern::before {
    opacity: 0.5;
}

.feature-icon-modern i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.feature-card-modern h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-card-modern p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Cards */
.service-card-modern {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--primary-gradient);
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    transition: all var(--transition-slow);
}

.service-card-modern:hover::after {
    width: 200px;
    height: 200px;
    opacity: 0.1;
}

.service-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-icon-modern i {
    font-size: 1.75rem;
    color: white;
}

.service-card-modern h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-card-modern p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card-modern .btn-link {
    color: var(--primary-500);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.service-card-modern .btn-link:hover {
    color: var(--primary-700);
    gap: 0.75rem;
}

/* ============================================
   MODERN FORMS
   ============================================ */
.form-modern .form-control,
.form-modern .form-select {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    background: white;
}

.form-modern .form-control:focus,
.form-modern .form-select:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    outline: none;
}

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

.form-modern .form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

/* Floating Label */
.form-floating-modern {
    position: relative;
}

.form-floating-modern .form-control {
    padding: 1.5rem 1.25rem 0.75rem;
    height: auto;
}

.form-floating-modern label {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-weight: 500;
    transition: all var(--transition-base);
    pointer-events: none;
}

.form-floating-modern .form-control:focus ~ label,
.form-floating-modern .form-control:not(:placeholder-shown) ~ label {
    top: 0.5rem;
    transform: translateY(0);
    font-size: 0.75rem;
    color: var(--primary-500);
    font-weight: 600;
}

/* Modern Input Group */
.input-group-modern {
    display: flex;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.input-group-modern .form-control {
    border: none;
    border-radius: 0;
}

.input-group-modern .form-control:first-child {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.input-group-modern .btn {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 1rem 1.5rem;
}

/* Modern Checkbox & Radio */
.form-check-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.form-check-modern input {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    appearance: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.form-check-modern input:checked {
    background: var(--primary-gradient);
    border-color: transparent;
}

.form-check-modern input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.form-check-modern input[type="radio"] {
    border-radius: 50%;
}

.form-check-modern input[type="radio"]:checked::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title-modern {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title-modern .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-modern {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   MODERN TRACKING SECTION
   ============================================ */
.tracking-section-modern {
    background: var(--dark-gradient);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.tracking-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.tracking-box-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.tracking-box-modern h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tracking-box-modern .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
    border-radius: var(--radius-xl);
}

.tracking-box-modern .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.tracking-box-modern .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

/* Tracking Timeline */
.tracking-timeline {
    position: relative;
    padding-left: 2rem;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1.75rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--gray-300);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.timeline-item.active .timeline-dot {
    background: var(--primary-500);
    box-shadow: var(--glow-primary);
}

.timeline-item.completed .timeline-dot {
    background: var(--success-gradient);
}

.timeline-content {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.timeline-date {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-status {
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 0.25rem;
}

/* ============================================
   MODERN TESTIMONIALS
   ============================================ */
.testimonial-card-modern {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-slow);
    position: relative;
}

.testimonial-card-modern::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary-100);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-content {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.testimonial-info small {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

/* ============================================
   MODERN FOOTER
   ============================================ */
.footer-modern {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.widget-title-modern {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.widget-title-modern::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
}

.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 0.75rem;
}

.footer-links-modern a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-modern a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links-modern a::before {
    content: '→';
    opacity: 0;
    transition: opacity var(--transition-base);
}

.footer-links-modern a:hover::before {
    opacity: 1;
}

.contact-info-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-modern li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-info-modern i {
    width: 20px;
    color: var(--primary-400);
    margin-top: 0.25rem;
}

.contact-info-modern a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-info-modern a:hover {
    color: white;
}

.social-links-modern {
    display: flex;
    gap: 0.75rem;
}

.social-links-modern a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
}

.social-links-modern a:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom-modern p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
    color: white;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float-modern {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float-modern:hover {
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-modern::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: ping-whatsapp 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ping-whatsapp {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ============================================
   PAGE HEADER MODERN
   ============================================ */
.page-header-modern {
    background: var(--dark-gradient);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-modern h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.breadcrumb-modern {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.breadcrumb-modern a,
.breadcrumb-modern span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-base);
}

.breadcrumb-modern a:hover {
    color: white;
}

.breadcrumb-modern .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-modern .current {
    color: white;
    font-weight: 600;
}

/* ============================================
   STAT CARDS
   ============================================ */
.stat-card-modern {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-slow);
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-icon-modern.primary {
    background: var(--primary-gradient);
}

.stat-icon-modern.secondary {
    background: var(--secondary-gradient);
}

.stat-icon-modern.accent {
    background: var(--accent-gradient);
}

.stat-icon-modern.success {
    background: var(--success-gradient);
}

.stat-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
    line-height: 1;
}

.stat-info p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.counter-up {
    display: inline-block;
}

/* ============================================
   QUICK BOOKING MODERN
   ============================================ */
.quick-booking-modern:not(.quick-booking-modern--v3) {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    padding: 0;
}

/* ============================================
   CTA SECTION MODERN
   ============================================ */
.cta-section-modern {
    background: var(--primary-gradient);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content-modern {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-content-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content-modern p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   HOMEPAGE V2 SECTION STYLES
   ============================================ */
.homepage-section-block {
    position: relative;
    padding: 5.5rem 0;
}

.homepage-features-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(102, 126, 234, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(79, 172, 254, 0.14) 0%, transparent 40%),
        linear-gradient(180deg, #f8faff 0%, #eef3fb 100%);
}

.homepage-services-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    overflow: hidden;
}

.homepage-services-section::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.17) 0%, rgba(118, 75, 162, 0) 72%);
    pointer-events: none;
}

.homepage-services-section::after {
    content: '';
    position: absolute;
    left: -90px;
    bottom: -130px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.2) 0%, rgba(79, 172, 254, 0) 70%);
    pointer-events: none;
}

.homepage-interactive-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.service-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.service-card-index {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    font-weight: 700;
}

.service-card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-700);
    padding: 0.35rem 0.75rem;
    background: rgba(102, 126, 234, 0.12);
    border-radius: var(--radius-full);
}

.quick-booking-panel-modern {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.28), transparent 30%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.2), transparent 35%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #334155 100%);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 32px 80px -38px rgba(15, 23, 42, 0.9);
    padding: 2.25rem;
    color: white;
}

.quick-booking-panel-modern::before,
.quick-booking-panel-modern::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.quick-booking-panel-modern::before {
    top: -90px;
    right: -70px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
}

.quick-booking-panel-modern::after {
    bottom: -120px;
    left: -90px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.24) 0%, rgba(59, 130, 246, 0) 72%);
}

.quick-booking-panel-header,
.quick-booking-form-modern {
    position: relative;
    z-index: 1;
}

.quick-booking-panel-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.quick-booking-copy {
    max-width: 650px;
}

.quick-booking-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quick-booking-panel-modern h3 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: white;
    margin: 1rem 0 0.75rem;
}

.quick-booking-copy p {
    margin: 0;
    color: rgba(226, 232, 240, 0.88);
    max-width: 640px;
}

.quick-booking-support {
    min-width: 220px;
    max-width: 280px;
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.quick-booking-support-label,
.quick-booking-support-hours {
    display: block;
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.875rem;
}

.quick-booking-support-link {
    display: inline-block;
    margin: 0.35rem 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
}

.quick-booking-support-link:hover {
    color: #bfdbfe;
}

.quick-booking-panel-modern .form-control,
.quick-booking-panel-modern .form-select {
    min-height: 58px;
    border-color: rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.96);
    color: var(--gray-900);
}

.quick-booking-panel-modern .form-control:focus,
.quick-booking-panel-modern .form-select:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.18);
}

.quick-booking-panel-modern .form-floating > label {
    color: var(--gray-500);
}

.quick-booking-grid {
    align-items: stretch;
}

.quick-booking-field {
    display: flex;
}

.quick-booking-field .form-floating,
.quick-booking-action .quick-booking-submit {
    width: 100%;
}

.quick-booking-action {
    display: flex;
}

.quick-booking-submit {
    border: none;
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
    box-shadow: 0 18px 32px -18px rgba(37, 99, 235, 0.9);
    min-height: 58px;
    white-space: normal;
    line-height: 1.25;
}

.quick-booking-submit:hover,
.quick-booking-submit:focus {
    background: linear-gradient(135deg, #0ea5e9 0%, #1d4ed8 100%);
    transform: translateY(-1px);
}

.homepage-about-section {
    background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 100%);
}

.about-visual-modern {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(79, 172, 254, 0.16));
    border: 1px solid rgba(102, 126, 234, 0.18);
    box-shadow: var(--shadow-2xl);
    padding: 1.25rem;
}

.about-visual-modern img {
    width: 100%;
    border-radius: calc(var(--radius-2xl) - 0.5rem);
}

.about-visual-badge {
    position: absolute;
    left: 1.75rem;
    bottom: 1.75rem;
    display: inline-flex;
    flex-direction: column;
    gap: 0.125rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(10, 15, 35, 0.75);
    backdrop-filter: blur(6px);
    color: white;
    box-shadow: var(--shadow-lg);
}

.about-visual-badge .badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-visual-badge .badge-label {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.82);
}

.about-content-modern .section-title-modern {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.about-content-modern p {
    color: var(--gray-600);
}

.about-checklist {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.about-checklist i {
    color: var(--primary-500);
    margin-top: 0.15rem;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.16);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.tracking-points {
    display: grid;
    gap: 0.625rem;
    margin-top: 1.5rem;
}

.tracking-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
}

.tracking-points i {
    color: #f2c94c;
}

.tracking-form-modern .btn {
    font-weight: 700;
    border: 0;
    border-radius: var(--radius-xl);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.tracking-form-modern .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px -10px rgba(242, 201, 76, 0.9);
}

.tracking-note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
}

.homepage-testimonials-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.homepage-testimonials-section .testimonial-card-modern {
    border: 1px solid rgba(102, 126, 234, 0.12);
}

.testimonial-carousel {
    position: relative;
    padding: 0 0 1rem;
}

.testimonial-carousel__viewport {
    overflow: hidden;
    padding: 0.5rem 0.2rem;
}

.testimonial-carousel__track {
    display: flex;
    gap: 1.35rem;
    will-change: transform;
    transition: transform 0.45s ease;
}

.testimonial-carousel__item {
    flex: 0 0 calc((100% - 2.7rem) / 3);
    min-width: 0;
}

.testimonial-carousel__card {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

.testimonial-carousel__indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 0;
}

.testimonial-carousel__indicators button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(110, 168, 254, 0.28);
}

.testimonial-carousel__indicators button.active {
    background: #6ea8fe;
    box-shadow: 0 0 0 4px rgba(110, 168, 254, 0.18);
}

.testimonial-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-carousel__control {
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    padding: 0;
    opacity: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: transform var(--transition-base), filter var(--transition-base);
}

.testimonial-carousel__control .carousel-control-prev-icon,
.testimonial-carousel__control .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: block;
    background-color: transparent;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-size: 0.9rem, cover;
    box-shadow: 0 16px 36px -20px rgba(110, 168, 254, 0.7);
}

.testimonial-carousel__control .carousel-control-prev-icon {
    background-image:
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M9.75 3.5 5.25 8l4.5 4.5'/%3e%3c/svg%3e"),
        linear-gradient(135deg, #9ec5fe 0%, #6ea8fe 100%);
}

.testimonial-carousel__control .carousel-control-next-icon {
    background-image:
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M6.25 3.5 10.75 8l-4.5 4.5'/%3e%3c/svg%3e"),
        linear-gradient(135deg, #9ec5fe 0%, #6ea8fe 100%);
}

.testimonial-carousel__control:hover {
    transform: translateY(-2px);
}

.testimonial-carousel__control:hover .carousel-control-prev-icon,
.testimonial-carousel__control:hover .carousel-control-next-icon {
    filter: brightness(1.05);
}

.cta-trust-strip {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.cta-trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.27);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199.98px) {
    .hero-section:not(.hero-section--v3) {
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-shell {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .section-title-modern {
        font-size: 2.25rem;
    }

    .quick-booking-panel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .testimonial-carousel {
        padding-left: 0;
        padding-right: 0;
    }

    .quick-booking-support {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 991.98px) {
    .hero-section:not(.hero-section--v3) {
        padding-bottom: 2.5rem;
    }

    .testimonial-carousel {
        padding-left: 0;
        padding-right: 0;
    }

    .testimonial-carousel__item {
        flex-basis: 100%;
    }

    .testimonial-carousel__controls {
        gap: 0.75rem;
    }

    .testimonial-carousel__control {
        width: 2.75rem;
        height: 2.75rem;
    }

    .hero-section:not(.hero-section--v3) .hero-content {
        padding: 110px 0 64px;
    }

    .hero-shell {
        grid-template-columns: 1fr;
    }

    .hero-copy-column {
        max-width: none;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-route-pills {
        justify-content: center;
    }

    .hero-visual-column {
        min-height: auto;
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-floating-note-primary {
        top: 1rem;
        right: 1rem;
    }

    .hero-floating-note-secondary {
        left: 1rem;
        bottom: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .homepage-section-block {
        padding: 4.5rem 0;
    }

    .quick-booking-modern:not(.quick-booking-modern--v3) {
        margin-top: -2.5rem;
    }

    .quick-booking-panel-modern {
        padding: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section:not(.hero-section--v3) {
        min-height: auto;
        padding: 104px 0 2rem;
    }

    .hero-section:not(.hero-section--v3) .hero-content {
        padding: 0 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-route-pills {
        justify-content: center;
        gap: 0.55rem;
        margin-bottom: 1.35rem;
    }

    .hero-route-pills span {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-top: 2.25rem;
        padding-top: 1.5rem;
    }

    .hero-stat {
        padding: 1rem;
        border-radius: 1.1rem;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-ops-card {
        padding: 1rem;
        border-radius: 1.3rem;
    }

    .hero-ops-route {
        padding: 0.95rem;
    }

    .hero-ops-grid {
        grid-template-columns: 1fr;
    }

    .hero-floating-note {
        position: static;
        max-width: none;
        margin-top: 0.85rem;
    }
    
    .section-title-modern {
        font-size: 1.75rem;
    }
    
    .page-header-modern h1 {
        font-size: 2rem;
    }
    
    .whatsapp-float-modern {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .tracking-box-modern {
        padding: 1.5rem;
    }
    
    .cta-content-modern h2 {
        font-size: 1.75rem;
    }

    .quick-booking-panel-modern {
        border-radius: 1.5rem;
        padding: 1.25rem;
    }

    .quick-booking-panel-modern h3 {
        font-size: 1.5rem;
    }

    .quick-booking-kicker {
        font-size: 0.72rem;
    }

    .quick-booking-modern:not(.quick-booking-modern--v3) {
        margin-top: 0;
        padding-bottom: 0.5rem;
    }

    .quick-booking-panel-header {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .quick-booking-copy p {
        font-size: 0.95rem;
    }

    .quick-booking-support {
        padding: 0.9rem 1rem;
        border-radius: 1rem;
    }

    .quick-booking-panel-modern .form-control,
    .quick-booking-panel-modern .form-select,
    .quick-booking-submit {
        min-height: 54px;
    }

    .scroll-indicator {
        display: none;
    }

    .about-visual-badge {
        left: 1rem;
        bottom: 1rem;
        padding: 0.65rem 0.8rem;
    }

    .tracking-points {
        gap: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section:not(.hero-section--v3) {
        padding-top: 96px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-badge {
        padding: 0.45rem 0.8rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.96rem;
        margin-bottom: 1.5rem;
    }

    .hero-ops-route {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-ops-route i {
        transform: rotate(90deg);
        align-self: center;
    }

    .hero-ops-footer {
        gap: 0.6rem;
    }

    .hero-ops-footer span {
        width: 100%;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-stat-label {
        font-size: 0.78rem;
    }
    
    .section-header-modern {
        margin-bottom: 2.5rem;
    }
    
    .section-title-modern {
        font-size: 1.5rem;
    }
    
    .feature-card-modern,
    .service-card-modern,
    .testimonial-card-modern {
        padding: 1.5rem;
    }

    .quick-booking-panel-modern {
        padding: 1rem;
        border-radius: 1.25rem;
    }

    .quick-booking-panel-modern::before {
        top: -60px;
        right: -40px;
        width: 160px;
        height: 160px;
    }

    .quick-booking-panel-modern::after {
        bottom: -100px;
        left: -60px;
        width: 180px;
        height: 180px;
    }

    .quick-booking-support-link {
        font-size: 1rem;
    }

    .quick-booking-panel-modern .form-floating > label {
        font-size: 0.9rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--primary-gradient);
}

.bg-gradient-secondary {
    background: var(--secondary-gradient);
}

.bg-gradient-accent {
    background: var(--accent-gradient);
}

.shadow-glow {
    box-shadow: var(--glow-primary);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-2xl {
    border-radius: var(--radius-2xl);
}

/* Animation Utilities */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse 3s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounce 2s ease infinite;
}

/* Hover Effects */
.hover-lift {
    transition: transform var(--transition-base);
}

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

.hover-scale {
    transition: transform var(--transition-base);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow var(--transition-base);
}

.hover-glow:hover {
    box-shadow: var(--glow-primary);
}

/* ============================================
   PREMIUM HEADER STYLES
   ============================================ */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 10000;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Premium Top Bar */
.top-bar-premium {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 0.5rem 0;
    font-size: 0.8125rem;
    position: relative;
    overflow: hidden;
}

.top-bar-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.top-bar-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-400);
    font-size: 0.75rem;
    transition: all var(--transition-base);
}

.top-bar-item:hover .top-bar-icon {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
}

.top-bar-text {
    display: flex;
    flex-direction: column;
}

.top-bar-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.top-bar-text a,
.top-bar-text span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

.top-bar-text a:hover {
    color: var(--primary-400);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-social {
    display: flex;
    gap: 0.5rem;
}

.top-bar-social .social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    transition: all var(--transition-base);
}

.top-bar-social .social-icon:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
}

.top-bar-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.top-bar-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.top-bar-login:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.lang-switch-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    font-size: 0.8125rem;
}

.lang-switch-premium:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.lang-switch-premium i {
    font-size: 0.875rem;
    transition: transform var(--transition-base);
}

.lang-switch-premium:hover i {
    transform: translateX(2px);
}

/* Premium Header */
.header-premium {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-slow);
}

.header-premium.scrolled .header-container {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Brand */
.navbar-brand-premium {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform var(--transition-base);
}

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

.brand-logo {
    width: 172px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.6875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Desktop Navigation Menu */
.navbar-menu-premium {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-premium {
    position: relative;
}

.nav-link-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link-premium .nav-icon {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: color var(--transition-base);
}

.nav-link-premium:hover,
.nav-link-premium.active {
    color: var(--primary-600);
    background: var(--primary-50);
}

.nav-link-premium:hover .nav-icon,
.nav-link-premium.active .nav-icon {
    color: var(--primary-500);
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.nav-link-premium:hover .nav-indicator,
.nav-link-premium.active .nav-indicator {
    width: calc(100% - 2rem);
}

/* Header CTA Button */
.navbar-cta {
    display: flex;
    align-items: center;
}

.btn-cta-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn-cta-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta-premium:hover::before {
    left: 100%;
}

.btn-cta-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-cta-ring {
    position: absolute;
    inset: -3px;
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: inherit;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
}

.mobile-menu-toggle:hover {
    background: var(--gray-200);
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-navigation.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-logo {
    height: 40px;
}

.mobile-nav-logo img {
    height: 100%;
    width: auto;
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-base);
}

.mobile-nav-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.mobile-nav-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    background: var(--primary-50);
    color: var(--primary-600);
}

.mobile-nav-menu a i:first-child {
    width: 24px;
    text-align: center;
    color: var(--gray-400);
}

.mobile-nav-menu a:hover i:first-child,
.mobile-nav-menu a.active i:first-child {
    color: var(--primary-500);
}

.mobile-nav-menu a span {
    flex: 1;
}

.mobile-nav-menu .arrow {
    font-size: 0.75rem;
    color: var(--gray-300);
    transition: transform var(--transition-base);
}

.mobile-nav-menu a:hover .arrow {
    transform: translateX(3px);
    color: var(--primary-400);
}

.mobile-nav-cta {
    padding: 1rem 1.5rem;
}

.btn-whatsapp-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-whatsapp-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.mobile-nav-contact {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-100);
    margin-top: 1rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.mobile-contact-item i {
    width: 20px;
    color: var(--primary-500);
}

.mobile-contact-item a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color var(--transition-base);
}

.mobile-contact-item a:hover {
    color: var(--primary-600);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 10000;
    transition: all var(--transition-base);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   PREMIUM FOOTER STYLES
   ============================================ */

.footer-premium {
    background: var(--footer-bg);
    color: var(--footer-text);
    position: relative;
    overflow: hidden;
}

/* Footer CTA Section */
.footer-cta-section {
    padding: 3.25rem 0 3rem;
    position: relative;
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-cta-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-cta-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-footer-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-footer-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-footer-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-footer-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-footer-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

/* Footer Main */
.footer-main {
    padding: 3rem 0 4rem;
}

.footer-widget {
    margin-bottom: 2rem;
}

/* Footer About */
.footer-about .footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.footer-brand-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.footer-social-link:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.footer-social-link.whatsapp:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.social-ripple {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.footer-social-link:hover .social-ripple {
    opacity: 1;
}

/* Newsletter */
.footer-newsletter {
    margin-top: 1.75rem;
    padding: 1.15rem;
    border-radius: 1.4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.footer-newsletter h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.45rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.newsletter-form .newsletter-input-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 0.4rem 0.35rem 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.newsletter-form .newsletter-input-group:focus-within {
    border-color: rgba(125, 211, 252, 0.7);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.16);
}

.newsletter-input-icon {
    color: rgba(255, 255, 255, 0.58);
}

.newsletter-input {
    flex: 1;
    min-width: 0;
    padding: 0.875rem 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9375rem;
}

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

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.875rem 1.1rem;
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
    border-radius: 0.95rem;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 700;
    transition: all var(--transition-base);
}

.newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px -16px rgba(37, 99, 235, 0.95);
}

/* Footer Widget Title */
.footer-widget-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.title-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
}

.footer-links .link-icon {
    font-size: 0.625rem;
    color: var(--primary-400);
    transition: transform var(--transition-base);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover .link-icon {
    transform: translateX(3px);
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact-item:last-child {
    border-bottom: none;
}

.footer-contact-item .contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    color: var(--primary-400);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.footer-contact-item .contact-icon.whatsapp {
    color: #25d366;
}

.footer-contact-item:hover .contact-icon {
    background: var(--primary-gradient);
    color: white;
}

.footer-contact-item:hover .contact-icon.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-base);
}

a.contact-value:hover {
    color: var(--primary-400);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links a i {
    font-size: 0.75rem;
}

.footer-bottom-links .divider {
    color: rgba(255, 255, 255, 0.2);
}

.footer-made-with {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-made-with .heartbeat {
    color: #ef4444;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

/* Premium WhatsApp Float */
.whatsapp-float-premium {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
}

.whatsapp-float-premium:hover {
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--gray-800);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-base);
}

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

.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-500);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 998;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-5px);
}

.back-to-top-progress {
    position: absolute;
    inset: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    transform: rotate(-90deg);
}

.back-to-top-progress circle {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 3;
}

.back-to-top-progress circle {
    stroke: var(--primary-500);
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s ease;
}

/* ============================================
   RESPONSIVE STYLES FOR HEADER & FOOTER
   ============================================ */

@media (max-width: 1199.98px) {
    .top-bar-left {
        gap: 1rem;
    }
    
    .top-bar-item:nth-child(3) {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .top-bar-premium {
        display: none;
    }
    
    .navbar-menu-premium,
    .navbar-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-cta-buttons {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        order: -1;
    }
}

@media (max-width: 767.98px) {
    .brand-logo {
        width: 148px;
        height: 38px;
    }
    
    .footer-cta-text h3 {
        font-size: 1.5rem;
    }
    
    .btn-footer-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .footer-widget-title {
        font-size: 1rem;
    }
    
    .footer-contact-item {
        padding: 0.75rem 0;
    }
    
    .footer-contact-item .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .whatsapp-float-premium {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .back-to-top {
        right: 5rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        width: 132px;
        height: 34px;
    }

    .footer-cta-section {
        padding: 3rem 0 2rem;
    }
    
    .footer-cta-content {
        padding: 1.5rem;
    }
    
    .footer-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-footer-cta {
        width: 100%;
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-made-with {
        display: none;
    }
    
    .mobile-navigation {
        width: 100%;
        max-width: 100%;
    }
}

/* ============================================
   SHARED INNER PAGE MODERNIZATION
   ============================================ */
.inner-page {
    position: relative;
}

.inner-page .page-header {
    padding: clamp(4.5rem, 8vw, 6.25rem) 0 clamp(2rem, 4vw, 2.75rem);
    background:
        radial-gradient(circle at 18% 26%, rgba(79, 172, 254, 0.22) 0, transparent 50%),
        radial-gradient(circle at 82% 75%, rgba(102, 126, 234, 0.28) 0, transparent 44%),
        linear-gradient(125deg, #0f172a 0%, #1e293b 50%, #0f4c81 100%);
    color: #fff;
}

.inner-page .page-header h1 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.875rem;
}

.inner-page .page-header .lead {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.inner-page .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    gap: 0.25rem;
}

.inner-page .breadcrumb-item a,
.inner-page .breadcrumb-item,
.inner-page .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

.inner-page .section-shell {
    position: relative;
    padding: clamp(2.75rem, 5vw, 4.5rem) 0;
}

.inner-page .section-shell.section-muted {
    background: linear-gradient(165deg, #f8fafc 0%, #eef4fa 100%);
}

.inner-page .section-title-block {
    max-width: 780px;
    margin: 0 auto clamp(2rem, 3.7vw, 3rem);
    text-align: center;
}

.inner-page .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #0f4c81;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.inner-page .section-title-block h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    margin-bottom: 0.6rem;
    color: #0f172a;
}

.inner-page .section-title-block p {
    color: #475569;
    margin: 0;
}

.inner-page .content-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 1rem;
    box-shadow: 0 16px 36px -26px rgba(15, 23, 42, 0.35);
    padding: clamp(1rem, 2vw, 1.35rem);
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.inner-page .content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 119, 201, 0.35);
    box-shadow: 0 26px 45px -26px rgba(15, 76, 129, 0.48);
}

.inner-page .content-icon {
    width: 54px;
    height: 54px;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(135deg, #0f4c81 0%, #1477c9 100%);
    margin-bottom: 1rem;
}

.inner-page .content-card h3,
.inner-page .content-card h4,
.inner-page .content-card h5 {
    color: #111827;
}

.inner-page .content-card p,
.inner-page .content-card li {
    color: #475569;
}

.inner-page .surface-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1.25rem;
    box-shadow: 0 18px 42px -28px rgba(15, 23, 42, 0.35);
    overflow: hidden;
}

.inner-page .surface-panel .panel-header {
    background: linear-gradient(135deg, #0f4c81 0%, #1477c9 100%);
    color: #fff;
    padding: 1rem 1.25rem;
}

.inner-page .surface-panel .panel-body {
    padding: clamp(1.1rem, 2vw, 1.6rem);
}

.inner-page .form-control,
.inner-page .form-select {
    border-radius: 0.8rem;
    border: 1px solid #d6dfeb;
    background: #fff;
}

.inner-page .form-control:focus,
.inner-page .form-select:focus {
    border-color: #1477c9;
    box-shadow: 0 0 0 4px rgba(20, 119, 201, 0.12);
}

.inner-page .form-label {
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.45rem;
}

.inner-page .form-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f4c81;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.inner-page .quick-cta {
    border-radius: 1rem;
    border: 1px solid rgba(15, 76, 129, 0.12);
    background: linear-gradient(160deg, #f8fbff 0%, #edf5ff 100%);
    padding: 1.25rem;
}

.inner-page .quick-cta h4,
.inner-page .quick-cta h5 {
    color: #0f172a;
}

.inner-page .quick-cta p {
    color: #475569;
}

.inner-page .result-surface {
    border-radius: 1rem;
    border: 1px solid #d7e4f2;
    background: linear-gradient(180deg, #fafdff 0%, #f3f8ff 100%);
    padding: 1rem 1.1rem;
}

.inner-page .timeline {
    position: relative;
    padding-left: 1.75rem;
}

.inner-page .timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.25rem;
    bottom: 0.3rem;
    width: 2px;
    background: linear-gradient(180deg, #93c5fd 0%, #1477c9 100%);
}

.inner-page .timeline-item {
    position: relative;
    padding: 0.1rem 0 1rem 0.75rem;
}

.inner-page .timeline-marker {
    position: absolute;
    left: -1.39rem;
    top: 0.32rem;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 999px;
    box-shadow: 0 0 0 4px #e7f2ff;
}

.inner-page .badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    background: #e9f4ff;
    color: #0f4c81;
}

.inner-page .city-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 76, 129, 0.2);
    color: #0f4c81;
    border-radius: 999px;
    padding: 0.42rem 0.85rem;
    font-size: 0.86rem;
    background: rgba(255, 255, 255, 0.72);
}

.inner-page .map-panel {
    margin-top: clamp(0.75rem, 2vw, 1.5rem);
    padding: clamp(1rem, 2vw, 1.4rem);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 20px 42px -28px rgba(15, 23, 42, 0.3);
}

.inner-page .map-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.inner-page .map-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f4c81;
}

.inner-page .map-panel__title {
    color: #0f172a;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 800;
}

.inner-page .map-panel__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(15, 76, 129, 0.08);
    border: 1px solid rgba(20, 119, 201, 0.18);
    color: #0f4c81;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.inner-page .map-panel__link:hover {
    color: #0f4c81;
    background: rgba(20, 119, 201, 0.14);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -18px rgba(15, 76, 129, 0.45);
}

.inner-page .map-shell {
    position: relative;
    min-height: clamp(320px, 44vw, 520px);
    height: clamp(320px, 44vw, 520px);
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 100%);
    box-shadow: 0 20px 38px -24px rgba(15, 23, 42, 0.45);
}

.inner-page .map-shell iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.inner-page .map-shell__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    max-width: min(420px, calc(100% - 2rem));
    padding: 0.85rem 1rem;
    border-radius: 0.95rem;
    background: rgba(127, 29, 29, 0.9);
    border: 1px solid rgba(252, 165, 165, 0.35);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 34px -24px rgba(127, 29, 29, 0.72);
}

.inner-page .map-shell__badge-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    box-shadow: 0 10px 18px -14px rgba(127, 29, 29, 0.82);
}

.inner-page .map-shell__badge-label {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(254, 226, 226, 0.82);
}

.inner-page .map-shell__badge strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.35;
}

.inner-page .contact-info-actions {
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    display: grid;
    gap: 0.75rem;
}

.inner-page .contact-info-actions__btn {
    width: 100%;
}

.inner-page .map-shell__fallback {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    color: #334155;
}

.inner-page .stagger-item {
    opacity: 0;
    transform: translateY(18px);
}

.inner-page .stagger-item.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.38s ease, transform 0.38s ease;
}

@media (max-width: 991.98px) {
    .inner-page .page-header {
        padding-top: 4rem;
    }

    .inner-page .surface-panel .panel-body {
        padding: 1rem;
    }

    .inner-page .map-panel__header {
        flex-direction: column;
        align-items: stretch;
    }

    .inner-page .map-panel__link {
        width: fit-content;
    }

    .inner-page .map-shell {
        min-height: 360px;
        height: 360px;
    }
}

@media (max-width: 767.98px) {
    .inner-page .section-shell {
        padding: 2.5rem 0;
    }

    .inner-page .content-card,
    .inner-page .quick-cta {
        padding: 1rem;
    }

    .inner-page .map-panel {
        padding: 0.9rem;
    }

    .inner-page .map-shell {
        min-height: 300px;
        height: 300px;
    }

    .inner-page .map-shell__badge {
        top: 0.8rem;
        left: 0.8rem;
        right: 0.8rem;
        gap: 0.75rem;
        max-width: none;
        padding: 0.75rem 0.85rem;
    }

    .inner-page .map-shell__badge-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .inner-page .map-shell__badge strong {
        font-size: 0.92rem;
    }

}

@media (prefers-reduced-motion: reduce) {
    .inner-page .content-card,
    .inner-page .stagger-item,
    .inner-page .stagger-item.animated {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Services page detail blocks */
.inner-page .services-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.inner-page .service-jump-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(20, 119, 201, 0.22);
    color: #0f4c81;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.86rem;
    transition: all 0.24s ease;
}

.inner-page .service-jump-link:hover {
    background: #0f4c81;
    color: #fff;
    border-color: #0f4c81;
}

.inner-page .services-detail-stack {
    display: grid;
    gap: 1rem;
}

.inner-page .service-detail-panel {
    scroll-margin-top: 8.25rem;
}

.inner-page .service-detail-intro {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.4rem;
}

.inner-page .service-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.7rem;
    background: linear-gradient(135deg, #0f4c81 0%, #1477c9 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.inner-page .service-use-cases {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.inner-page .service-use-cases li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #334155;
    font-size: 0.95rem;
}

.inner-page .service-use-cases li i {
    color: #1477c9;
    margin-top: 0.2rem;
}

.inner-page .service-detail-meta {
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    padding: 1rem;
}

.inner-page .service-detail-meta h5 {
    margin-bottom: 0.35rem;
    color: #0f172a;
}

.inner-page .service-detail-meta p {
    margin-bottom: 0.7rem;
    color: #475569;
    font-size: 0.94rem;
}

.inner-page .service-detail-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ============================================
   HOMEPAGE HERO V3
   ============================================ */
.hero-section--v3 {
    --hero-top: clamp(5.75rem, 8vw, 7.2rem);
    --hero-bottom: clamp(3rem, 5vw, 4.25rem);
    --booking-overlap: clamp(2.2rem, 4vw, 3.15rem);
    position: relative;
    display: block;
    align-items: normal;
    min-height: auto;
    padding: var(--hero-top) 0 calc(var(--hero-bottom) + var(--booking-overlap));
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.16), transparent 30%),
        radial-gradient(circle at 82% 8%, rgba(34, 197, 94, 0.1), transparent 24%),
        linear-gradient(145deg, #07111f 0%, #0b1730 38%, #12284a 100%);
}

.hero-section--v3 .hero-bg-animation::before {
    opacity: 0.72;
    animation-duration: 46s;
}

.hero-section--v3 .hero-particle {
    opacity: 0.6;
}

.hero-section--v3 .hero-content--v3 {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    padding: 0;
    margin: 0 auto;
    color: #fff;
}

.hero-section--v3 .hero-reimagined-shell--v3 {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 460px);
    gap: 2rem;
    align-items: start;
}

.hero-section--v3 .hero-copy-column--v3 {
    max-width: 740px;
}

.hero-section--v3 .hero-title-reimagined {
    max-width: 840px;
    font-size: clamp(2.6rem, 4.8vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 0.95rem;
}

.hero-section--v3 .hero-subtitle-reimagined {
    max-width: 700px;
    margin-bottom: 1.35rem;
    color: rgba(226, 232, 240, 0.86);
    font-size: 1.06rem;
}

.hero-section--v3 .hero-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
}

.hero-section--v3 .hero-trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-section--v3 .hero-trust-line i {
    color: #7dd3fc;
}

.hero-section--v3 .hero-service-ribbon {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 1.35rem;
}

.hero-section--v3 .hero-service-ribbon span {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.95rem;
    border-radius: 0.95rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(125, 211, 252, 0.18);
    color: #f8fafc;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 14px 28px -22px rgba(8, 15, 28, 0.95);
}

.hero-section--v3 .hero-buttons-reimagined {
    justify-content: flex-start;
    gap: 0.7rem;
    margin-bottom: 1.45rem;
}

.hero-section--v3 .hero-buttons-reimagined .btn {
    min-height: 52px;
    padding-inline: 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 15px 28px -22px rgba(8, 15, 28, 0.9);
}

.hero-section--v3 .hero-stats-reimagined {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    border: 0;
}

.hero-section--v3 .hero-stat-card {
    min-height: 132px;
    padding: 0.95rem;
    border-radius: 1.1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 36px -30px rgba(8, 15, 28, 0.95);
    text-align: left;
}

.hero-section--v3 .hero-stat-card-wide {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.24), rgba(37, 99, 235, 0.14));
    border-color: rgba(125, 211, 252, 0.3);
}

.hero-section--v3 .hero-stat-card .hero-stat-number {
    margin-bottom: 0.55rem;
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
}

.hero-section--v3 .hero-stat-number-static {
    background: linear-gradient(135deg, #fff 0%, #7dd3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section--v3 .hero-stat-card .hero-stat-label {
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
}

.hero-section--v3 .hero-command-board {
    padding: 1.2rem;
    border-radius: 1.55rem;
    background:
        linear-gradient(180deg, rgba(9, 14, 27, 0.93), rgba(15, 23, 42, 0.84)),
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.3), transparent 28%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 58px -36px rgba(8, 15, 28, 0.98);
}

.hero-section--v3 .hero-command-head,
.hero-section--v3 .hero-command-foot {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
}

.hero-section--v3 .hero-command-head h3 {
    margin: 0;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
}

.hero-section--v3 .hero-command-kicker {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.84);
    font-weight: 700;
}

.hero-section--v3 .hero-command-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.48rem 0.75rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.13);
    border: 1px solid rgba(34, 197, 94, 0.24);
    color: #dcfce7;
    font-size: 0.77rem;
    font-weight: 700;
    white-space: nowrap;
}

.hero-section--v3 .hero-command-route {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    margin: 1rem 0 0.85rem;
    padding: 0.9rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-section--v3 .hero-command-city {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-section--v3 .hero-command-city-name {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
}

.hero-section--v3 .hero-command-city-meta {
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.8rem;
}

.hero-section--v3 .hero-command-line {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #7dd3fc;
}

.hero-section--v3 .hero-command-line span {
    width: 26px;
    height: 1px;
    background: rgba(125, 211, 252, 0.45);
}

.hero-section--v3 .hero-command-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.hero-section--v3 .hero-command-metrics article {
    padding: 0.78rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-section--v3 .hero-command-metrics strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.4;
}

.hero-section--v3 .hero-command-metrics span,
.hero-section--v3 .hero-command-foot {
    color: rgba(226, 232, 240, 0.76);
    font-size: 0.78rem;
    line-height: 1.5;
}

.hero-section--v3 .hero-command-foot {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.55rem 0.8rem;
    margin-top: 0.75rem;
}

.hero-section--v3 .hero-command-foot span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-section--v3 .hero-proof-stack {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.hero-section--v3 .hero-proof-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.85rem 0.9rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 14px 26px -22px rgba(8, 15, 28, 0.95);
}

.hero-section--v3 .hero-proof-card-primary {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(14, 165, 233, 0.12));
    border-color: rgba(74, 222, 128, 0.2);
}

.hero-section--v3 .hero-proof-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.13);
    color: #7dd3fc;
    font-size: 0.96rem;
}

.hero-section--v3 .hero-proof-card strong {
    display: block;
    margin-bottom: 0.22rem;
    color: #fff;
    font-size: 0.92rem;
}

.hero-section--v3 .hero-proof-card p {
    margin: 0;
    color: rgba(226, 232, 240, 0.74);
    font-size: 0.83rem;
    line-height: 1.5;
}

.hero-section--v3 .quick-booking-modern--v3 {
    position: relative;
    z-index: 3;
    margin-top: 0;
    transform: translateY(var(--booking-overlap));
    margin-bottom: calc(-1 * var(--booking-overlap));
}

.hero-section--v3 .quick-booking-panel-modern--v3 {
    position: relative;
    overflow: hidden;
    border-radius: 1.35rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(245, 250, 255, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 22px 54px -34px rgba(8, 15, 28, 0.72);
    padding: 1.35rem;
    color: #0f172a;
}

.hero-section--v3 .quick-booking-panel-modern--v3::before,
.hero-section--v3 .quick-booking-panel-modern--v3::after {
    display: none;
}

.hero-section--v3 .quick-booking-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-section--v3 .quick-booking-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.36rem 0.68rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #334155;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero-section--v3 .quick-booking-copy h3 {
    margin: 0.55rem 0 0.5rem;
    max-width: 560px;
    font-size: clamp(1.22rem, 2vw, 1.55rem);
    color: #0f172a;
}

.hero-section--v3 .quick-booking-copy p {
    margin: 0;
    color: #475569;
}

.hero-section--v3 .quick-booking-support {
    min-width: 220px;
    max-width: 265px;
    border-radius: 0.95rem;
    padding: 0.75rem 0.85rem;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.18);
}

.hero-section--v3 .quick-booking-support-label,
.hero-section--v3 .quick-booking-support-hours {
    display: block;
    color: #475569;
    font-size: 0.77rem;
}

.hero-section--v3 .quick-booking-support-link {
    display: inline-block;
    margin: 0.18rem 0;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.hero-section--v3 .quick-booking-support-link:hover {
    color: #1d4ed8;
}

.hero-section--v3 .quick-booking-panel-modern--v3 .form-control,
.hero-section--v3 .quick-booking-panel-modern--v3 .form-select {
    min-height: 52px;
    border-color: rgba(148, 163, 184, 0.34);
    background: rgba(255, 255, 255, 0.98);
    color: #0f172a;
}

.hero-section--v3 .quick-booking-panel-modern--v3 .form-control:focus,
.hero-section--v3 .quick-booking-panel-modern--v3 .form-select:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.3);
}

.hero-section--v3 .quick-booking-panel-modern--v3 .form-floating > label {
    color: #64748b;
}

.hero-section--v3 .quick-booking-submit {
    min-height: 52px;
    border: 0;
    white-space: normal;
    line-height: 1.2;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    box-shadow: 0 12px 24px -14px rgba(37, 99, 235, 0.9);
}

.hero-section--v3 .quick-booking-submit:hover,
.hero-section--v3 .quick-booking-submit:focus {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
}

.hero-section--v3 + .homepage-section-block {
    padding-top: 4rem;
}

.hero-section--v3 + .features-section {
    margin-top: 0;
}

.hero-section--v3 .hero-reveal {
    --reveal-step: 0;
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition:
        opacity 560ms cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: calc(var(--reveal-step) * 70ms);
    will-change: opacity, transform;
}

.hero-section--v3 .hero-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.hero-section--v3 .hero-reveal[data-reveal-order="1"] { --reveal-step: 1; }
.hero-section--v3 .hero-reveal[data-reveal-order="2"] { --reveal-step: 2; }
.hero-section--v3 .hero-reveal[data-reveal-order="3"] { --reveal-step: 3; }
.hero-section--v3 .hero-reveal[data-reveal-order="4"] { --reveal-step: 4; }
.hero-section--v3 .hero-reveal[data-reveal-order="5"] { --reveal-step: 5; }
.hero-section--v3 .hero-reveal[data-reveal-order="6"] { --reveal-step: 6; }
.hero-section--v3 .hero-reveal[data-reveal-order="7"] { --reveal-step: 7; }
.hero-section--v3 .hero-reveal[data-reveal-order="8"] { --reveal-step: 8; }
.hero-section--v3 .hero-reveal[data-reveal-order="9"] { --reveal-step: 9; }

@media (max-width: 1199.98px) {
    .hero-section--v3 {
        --hero-top: 5.15rem;
        --hero-bottom: 2.9rem;
        --booking-overlap: 2.35rem;
    }

    .hero-section--v3 .hero-reimagined-shell--v3 {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .hero-section--v3 .hero-copy-column--v3,
    .hero-section--v3 .hero-visual-column {
        max-width: 100%;
    }

    .hero-section--v3 .hero-stats-reimagined {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .hero-section--v3 {
        --hero-top: 4.75rem;
        --hero-bottom: 2.65rem;
        --booking-overlap: 1.95rem;
    }

    .hero-section--v3 .hero-title-reimagined {
        font-size: clamp(2.2rem, 6.8vw, 3.4rem);
    }

    .hero-section--v3 .hero-command-head,
    .hero-section--v3 .hero-command-route {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-section--v3 .hero-command-line {
        justify-content: flex-start;
    }

    .hero-section--v3 .hero-command-line span:last-child {
        display: none;
    }

    .hero-section--v3 .quick-booking-panel-header {
        flex-direction: column;
    }

    .hero-section--v3 .quick-booking-support {
        min-width: 0;
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero-section--v3 {
        --hero-top: 4.4rem;
        --hero-bottom: 2.1rem;
        --booking-overlap: 0px;
        padding-bottom: var(--hero-bottom);
    }

    .hero-section--v3 .hero-service-ribbon,
    .hero-section--v3 .hero-stats-reimagined,
    .hero-section--v3 .hero-command-metrics {
        grid-template-columns: 1fr;
    }

    .hero-section--v3 .hero-buttons-reimagined {
        display: grid;
        justify-content: stretch;
    }

    .hero-section--v3 .hero-buttons-reimagined .btn {
        width: 100%;
    }

    .hero-section--v3 .hero-command-board {
        padding: 1rem;
        border-radius: 1.25rem;
    }

    .hero-section--v3 .hero-proof-card {
        grid-template-columns: 1fr;
    }

    .hero-section--v3 .hero-proof-icon {
        width: 40px;
        height: 40px;
    }

    .hero-section--v3 .quick-booking-modern--v3 {
        transform: none;
        margin-top: 1.05rem;
        margin-bottom: 0;
    }

    .hero-section--v3 + .homepage-section-block {
        padding-top: 3rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section--v3 {
        --hero-top: 4rem;
        --hero-bottom: 1.9rem;
    }

    .hero-section--v3 .hero-badge,
    .hero-section--v3 .hero-trust-line span {
        width: 100%;
        justify-content: center;
    }

    .hero-section--v3 .hero-title-reimagined {
        font-size: 2rem;
    }

    .hero-section--v3 .hero-subtitle-reimagined {
        font-size: 0.98rem;
    }

    .hero-section--v3 .hero-service-ribbon span,
    .hero-section--v3 .hero-stat-card,
    .hero-section--v3 .hero-command-metrics article,
    .hero-section--v3 .hero-proof-card {
        border-radius: 1rem;
    }

    .hero-section--v3 .hero-command-status {
        white-space: normal;
    }

    .hero-section--v3 .quick-booking-panel-modern--v3 {
        padding: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section--v3 .hero-bg-animation::before,
    .hero-section--v3 .hero-particle {
        animation: none !important;
    }

    .hero-section--v3 .hero-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ================================================================
   HERO V3 — Modern Redesign
   Complete standalone hero styles for .hero-v3
   ================================================================ */

/* ── Section shell ── */
.hero-v3 {
    position: relative;
    background: linear-gradient(140deg, #0d1117 0%, #161b27 45%, #1a2035 100%);
    overflow: hidden;
    padding-top: calc(var(--header-height, 80px) + var(--top-bar-height, 45px) + 3rem);
    padding-bottom: 0;
    color: #fff;
}

/* ── Animated background ── */
.hero-v3__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-v3__bg::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 70%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.18) 0%, transparent 65%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-v3__bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 55%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(118, 75, 162, 0.14) 0%, transparent 65%);
    animation: heroGlow 10s ease-in-out 2s infinite alternate-reverse;
}

@keyframes heroGlow {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.12); }
}

/* ── Particles ── */
.hero-v3__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-v3__particles span {
    position: absolute;
    bottom: -10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: floatParticle linear infinite;
}

.hero-v3__particles span:nth-child(1) { left:  8%; width:  8px; height:  8px; animation-duration: 13s; animation-delay: 0s; }
.hero-v3__particles span:nth-child(2) { left: 18%; width: 14px; height: 14px; animation-duration: 16s; animation-delay: 2s; }
.hero-v3__particles span:nth-child(3) { left: 32%; width:  6px; height:  6px; animation-duration: 11s; animation-delay: 4s; }
.hero-v3__particles span:nth-child(4) { left: 50%; width: 18px; height: 18px; animation-duration: 15s; animation-delay: 1s; }
.hero-v3__particles span:nth-child(5) { left: 64%; width: 10px; height: 10px; animation-duration: 17s; animation-delay: 3s; }
.hero-v3__particles span:nth-child(6) { left: 78%; width: 12px; height: 12px; animation-duration: 12s; animation-delay: 5s; }
.hero-v3__particles span:nth-child(7) { left: 90%; width:  7px; height:  7px; animation-duration: 14s; animation-delay: 1.5s; }

@keyframes floatParticle {
    0%   { transform: translateY(0)   rotate(0deg);   opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 0.8; }
    100% { transform: translateY(-100vh) rotate(540deg); opacity: 0; }
}

/* ── Main container & grid ── */
.hero-v3__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
    padding-bottom: 4rem;
}

/* ─────────────────────────
   LEFT COPY COLUMN
────────────────────────── */
.hero-v3__copy {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Badge */
.hero-v3__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #a5b4fc;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.hero-v3__badge i {
    color: #818cf8;
    font-size: 0.875rem;
}

/* Trust strip */
.hero-v3__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.hero-v3__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.hero-v3__trust i {
    color: #818cf8;
    font-size: 0.9rem;
}

/* Heading */
.hero-v3__title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    color: #fff;
}

.hero-v3__title-accent {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* Subtitle */
.hero-v3__subtitle {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    margin-bottom: 1.5rem;
}

/* Service pills */
.hero-v3__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.hero-v3__pills span {
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    transition: all var(--transition-base);
    cursor: default;
}

.hero-v3__pills span:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
    color: #fff;
}

/* CTAs */
.hero-v3__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
    align-items: center;
}

/* Stats bar */
.hero-v3__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-v3__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 1rem 0 0;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}

.hero-v3__stat:first-child { padding-left: 0; }
.hero-v3__stat:last-child  { border-right: none; }

.hero-v3__stat-num {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-v3__stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* ─────────────────────────
   RIGHT VISUAL COLUMN
────────────────────────── */
.hero-v3__visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ──── Dispatch Card ──── */
.dispatch-card {
    background: linear-gradient(160deg,
        rgba(14, 20, 38, 0.95) 0%,
        rgba(20, 27, 50, 0.85) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.25rem;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 32px 64px -20px rgba(0,0,0,0.7),
                inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.dispatch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: borderShimmer 3s linear infinite;
}

@keyframes borderShimmer {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Card head */
.dispatch-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.dispatch-card__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #818cf8;
    margin-bottom: 0.25rem;
}

.dispatch-card__head h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.dispatch-card__live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.dispatch-card__live i {
    font-size: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Route visualizer */
.dispatch-card__route {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0.875rem;
    margin-bottom: 1rem;
}

.dispatch-card__city {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1;
}

.dispatch-card__city--right { text-align: right; }

.dispatch-card__city-name {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dispatch-card__city-meta {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dispatch-card__road {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    color: #7dd3fc;
}

.dispatch-card__road-line {
    display: block;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7dd3fc, transparent);
}

.dispatch-card__road i {
    font-size: 1rem;
    animation: truckSlide 3s ease-in-out infinite;
}

@keyframes truckSlide {
    0%, 100% { transform: translateX(-3px); }
    50%       { transform: translateX(3px); }
}

/* Metrics grid */
.dispatch-card__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.dispatch-card__metrics article {
    padding: 0.75rem 0.875rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0.75rem;
    min-width: 0;
}

.dispatch-card__metrics strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dispatch-card__metrics span {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
}

/* Card footer */
.dispatch-card__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    padding-top: 0.875rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.dispatch-card__foot span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
}

.dispatch-card__foot i {
    color: #818cf8;
    font-size: 0.8rem;
}

/* ──── Proof cards ──── */
.hero-v3__proof {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.proof-card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.875rem;
    transition: all var(--transition-base);
}

.proof-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.14);
    transform: translateX(4px);
}

.proof-card--accent {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

.proof-card--accent:hover {
    background: rgba(102, 126, 234, 0.16);
}

.proof-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 0.6rem;
    background: rgba(129, 140, 248, 0.15);
    flex-shrink: 0;
}

.proof-card--accent .proof-card__icon {
    background: rgba(129, 140, 248, 0.25);
}

.proof-card__icon i {
    font-size: 1rem;
    color: #818cf8;
}

.proof-card > div {
    min-width: 0;
}

.proof-card strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.2rem;
}

.proof-card p {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   BOOKING STRIP — Premium Card Redesign
   ═══════════════════════════════════════════════ */

/* Outer wrapper */
.booking-strip {
    position: relative;
    z-index: 2;
    padding: 0 0 3rem;
}

/* The "card" itself */
.booking-strip__inner {
    background: linear-gradient(160deg,
        rgba(102, 126, 234, 0.14) 0%,
        rgba(14, 20, 40, 0.92) 40%,
        rgba(14, 20, 40, 0.96) 100%);
    border: 1px solid rgba(102, 126, 234, 0.25);
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    padding: 0;
}

/* Top gradient accent bar */
.booking-strip__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #9b59b6 50%, #60a5fa 100%);
}

/* Title row at the top of the card */
.booking-strip__info {
    padding: 2rem 2.25rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
}

.booking-strip__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #818cf8;
    margin-bottom: 0.45rem;
    background: rgba(129, 140, 248, 0.12);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(129, 140, 248, 0.2);
    width: fit-content;
}

.booking-strip__info h3 {
    font-size: 1.375rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.2rem;
    line-height: 1.25;
}

.booking-strip__info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.5;
}

/* Contact block in the info row */
.booking-strip__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.875rem;
    padding: 0.75rem 1.125rem;
    white-space: nowrap;
}

.booking-strip__contact-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}

.booking-strip__phone {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.booking-strip__phone:hover { color: #818cf8; }

.booking-strip__hours {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
}

/* ── Form area ── */
.booking-strip__form {
    padding: 1.75rem 2.25rem 2rem;
}

/* 2-row grid:
   Row 1: [Name] [Phone] [Pickup City] [Delivery City]
   Row 2: [Truck Type ──────────────] [Submit]
*/
.booking-strip__fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.875rem;
}

/* Name — col 1 */
.booking-strip__fields > :nth-child(1) { grid-column: 1; }
/* Phone — col 2 */
.booking-strip__fields > :nth-child(2) { grid-column: 2; }
/* Pickup — col 3 */
.booking-strip__fields > :nth-child(3) { grid-column: 3; }
/* Delivery — col 4 */
.booking-strip__fields > :nth-child(4) { grid-column: 4; }
/* Truck type — spans cols 1-3 in row 2 */
.booking-strip__fields > :nth-child(5) { grid-column: 1 / 4; }
/* Submit — col 4 in row 2 */
.booking-strip__fields > :nth-child(6) {
    grid-column: 4;
    align-self: stretch;
}

/* ── Glass form controls ── */
.booking-strip__fields .form-floating {
    position: relative;
}

.booking-strip__fields .form-floating .form-control,
.booking-strip__fields .form-floating .form-select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.875rem;
    color: #fff;
    height: 60px;
    padding: 1.125rem 1rem 0.375rem;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.booking-strip__fields .form-floating .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.booking-strip__fields .form-floating .form-select option {
    background: #1a2235;
    color: #fff;
}

.booking-strip__fields .form-floating .form-control:focus,
.booking-strip__fields .form-floating .form-select:focus {
    border-color: rgba(102, 126, 234, 0.7);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.18), 0 2px 12px rgba(0,0,0,0.3);
    background: rgba(102, 126, 234, 0.1);
    outline: none;
    color: #fff;
}

/* Floating labels */
.booking-strip__fields .form-floating label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1.125rem 1rem 0.375rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.875rem;
    font-weight: 500;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.booking-strip__fields .form-floating .form-control:focus ~ label,
.booking-strip__fields .form-floating .form-control:not(:placeholder-shown) ~ label,
.booking-strip__fields .form-floating .form-select:focus ~ label,
.booking-strip__fields .form-floating .form-select:not([value=""]):valid ~ label {
    opacity: 0.85;
    transform: scale(0.8) translateY(-0.6rem);
    color: #818cf8;
}

/* ── Submit button ── */
.booking-strip__submit {
    width: 100%;
    height: 60px;
    border-radius: 0.875rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
}

.booking-strip__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
    opacity: 0.95;
}

.booking-strip__submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.booking-strip__submit i {
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Hero v3
   ═══════════════════════════════════════════════ */

/* Large laptops: shrink visual column */
@media (max-width: 1280px) {
    .hero-v3__container {
        grid-template-columns: 1fr 380px;
        gap: 2.25rem;
    }
}

/* Tablets landscape: stack to single column */
@media (max-width: 1024px) {
    .hero-v3__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 3rem;
    }

    .hero-v3__visual {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .dispatch-card {
        flex: 1;
        min-width: 280px;
    }

    .hero-v3__proof {
        flex: 0 0 100%;
        flex-direction: row;
    }

    .proof-card {
        flex: 1;
    }

    .hero-v3__stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablets portrait */
@media (max-width: 768px) {
    .hero-v3 {
        padding-top: calc(var(--header-height, 80px) + var(--top-bar-height, 45px) + 1.5rem);
    }

    .hero-v3__title {
        font-size: clamp(1.85rem, 6vw, 2.5rem);
    }

    .hero-v3__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-v3__stat {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-bottom: 1rem;
    }

    .hero-v3__stat:nth-child(3),
    .hero-v3__stat:nth-child(4) {
        border-bottom: none;
        padding-top: 1rem;
        padding-bottom: 0;
    }

    .hero-v3__visual {
        flex-direction: column;
    }

    .hero-v3__proof {
        flex-direction: column;
    }

    /* Booking strip responsive */
    .booking-strip__info {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .booking-strip__contact {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 1.25rem;
    }

    .booking-strip__fields {
        grid-template-columns: 1fr 1fr;
    }

    .booking-strip__fields > :nth-child(5) { grid-column: 1 / 3; }
    .booking-strip__fields > :nth-child(6) { grid-column: 1 / 3; }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-v3__ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-v3__ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .dispatch-card__metrics {
        grid-template-columns: 1fr;
    }

    .booking-strip__fields {
        grid-template-columns: 1fr;
    }

    .booking-strip__fields > :nth-child(5),
    .booking-strip__fields > :nth-child(6) {
        grid-column: 1;
    }

    .dispatch-card__head {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-v3__stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-v3__bg::before,
    .hero-v3__bg::after,
    .hero-v3__particles span,
    .dispatch-card__road i,
    .dispatch-card__live i {
        animation: none !important;
    }
}
