/* ============================================
   FIRST FLIGHT COURIER CARGO - PREMIUM STYLES
   Primary: Navy Blue #0c1c41
   Secondary: Gold #f2bc6b
   ============================================ */

   :root {
    --primary: #0c1c41;
    --primary-light: #1a2e5a;
    --primary-dark: #060e23;
    --secondary: #f2bc6b;
    --secondary-light: #f5d08a;
    --secondary-dark: #e0a84a;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark: #1A1A1A;
    --shadow: 0 10px 40px rgba(12, 28, 65, 0.15);
    --shadow-hover: 0 20px 60px rgba(12, 28, 65, 0.25);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gradient-primary: linear-gradient(135deg, #0c1c41 0%, #1a2e5a 100%);
    --gradient-secondary: linear-gradient(135deg, #f2bc6b 0%, #f5d08a 100%);
    --gradient-hero: linear-gradient(135deg, rgba(12, 28, 65, 0.92) 0%, rgba(242, 188, 107, 0.3) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--white);
}

/* ===== STICKY HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: transparent;
    transition: var(--transition);
    padding: 15px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(12, 28, 65, 0.12);
    padding: 8px 0;
}

.header .logo {
    max-height: 100px;
    transition: var(--transition);
    /* filter: brightness(0) invert(1); */
}

.header.scrolled .logo {
    max-height: 80px;
    filter: brightness(1) invert(0);
}

/* ===== NAVIGATION ===== */
.navbar-custom {
    padding: 0;
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 20px !important;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.header.scrolled .navbar-custom .nav-link {
    color: var(--primary);
}

.navbar-custom .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-custom .nav-link:hover::before,
.navbar-custom .nav-link.active::before {
    width: 70%;
}

.navbar-custom .nav-link:hover {
    color: var(--white) !important;
}

.header.scrolled .navbar-custom .nav-link:hover {
    color: var(--secondary) !important;
}

.navbar-custom .btn-track-nav {
    background: var(--secondary);
    color: var(--primary) !important;
    border-radius: 50px;
    padding: 10px 30px !important;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(242, 188, 107, 0.3);
}

.navbar-custom .btn-track-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(242, 188, 107, 0.4);
    background: var(--secondary-dark);
}

.navbar-custom .btn-track-nav::before {
    display: none;
}



/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 90px;
    z-index: 9999;
}

.floating-buttons .btn-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    border: none;
    position: relative;
}

.floating-buttons .btn-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
}

.floating-buttons .btn-float i {
    font-size: 30px;
}

.floating-buttons .btn-float .tooltip-text {
    position: absolute;
    right: 80px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-buttons .btn-float:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

.floating-buttons .btn-float .tooltip-text::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid var(--primary);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* WhatsApp */
.floating-buttons .btn-whatsapp {
    left: 30px;
    background: #25D366;
    animation: pulse-green 2.5s infinite;
}

/* Call */
.floating-buttons .btn-call {
    right: 30px;
    background: var(--secondary);
    color: var(--primary);
    animation: pulse-gold 2.5s infinite;
}

.floating-buttons .btn-call i {
    color: var(--primary);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 25px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(242, 188, 107, 0.6); }
    70% { box-shadow: 0 0 0 25px rgba(242, 188, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(242, 188, 107, 0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(12, 28, 65, 0.06);
    border: 1px solid #F0F2F5;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    transform: rotateY(360deg) scale(1.05);
}

.feature-card h5 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-tag {
    display: inline-block;
    background: rgba(242, 188, 107, 0.15);
    color: var(--secondary);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.section-header h2 span {
    color: var(--secondary);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 15px auto 0;
}

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(12, 28, 65, 0.06);
    border: 1px solid #F0F2F5;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: rgba(242, 188, 107, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-secondary);
    color: var(--primary);
    transform: scale(1.1);
}

.service-card h5 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-card .service-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card .service-link:hover {
    color: var(--primary);
    gap: 15px;
}

/* ===== CARRIER PARTNERS ===== */
.carrier-section {
    padding: 80px 0;
    background: var(--white);
}

.carrier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    align-items: center;
}

.carrier-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    filter: grayscale(0.3);
    opacity: 0.7;
}

.carrier-item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.carrier-item img {
    max-height: 45px;
    width: auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(242, 188, 107, 0.08);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(242, 188, 107, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
}

.cta-content h2 span {
    color: var(--secondary);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 500px;
}

.cta-content .btn-cta {
    background: var(--secondary);
    color: var(--primary);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--secondary);
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(242, 188, 107, 0.35);
    text-decoration: none;
    display: inline-block;
}

.cta-content .btn-cta:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(242, 188, 107, 0.5);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    padding: 60px 0 20px;
    color: var(--white);
}

.footer .footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
}

.footer .footer-brand span {
    color: var(--secondary);
}

.footer .footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer .social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.footer .social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 40px;
}

.footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
    .hero-slider .slide-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 991.98px) {
    .header {
        background: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
    
    .header .logo {
        /* filter: brightness(1) invert(0); */
    }
    
    .navbar-custom .nav-link {
        color: var(--primary) !important;
        padding: 10px 0 !important;
    }
    
    
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    
    
    .floating-buttons .btn-float {
        width: 50px;
        height: 50px;
    }
    
    .floating-buttons .btn-float i {
        font-size: 24px;
    }
    
    .floating-buttons .btn-whatsapp {
        left: 15px;
    }
    
    .floating-buttons .btn-call {
        right: 15px;
    }
    
    .floating-buttons .btn-float .tooltip-text {
        display: none;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .carrier-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .carrier-item {
        padding: 12px;
    }
    
    .carrier-item img {
        max-height: 30px;
    }
}




/* ===== LOADING ANIMATION ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== HERO SLIDER - MOBILE FIXES ===== */

/* Base hero section */
/* ===== HERO SLIDER - MOBILE FIXES ===== */

/* Base hero section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slider .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slider .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 28, 65, 0.92) 0%, rgba(12, 28, 65, 0.6) 100%);
    z-index: 1;
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0;
}

.hero-slider .slide-content .container {
    position: relative;
    z-index: 2;
}

/* Hero badge */
.hero-badge {
    display: inline-block;
    background: rgba(242, 188, 107, 0.15);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(242, 188, 107, 0.2);
}

/* Hero title */
.hero-slider .slide-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-slider .slide-content h1 .highlight {
    color: var(--secondary);
}

.hero-slider .slide-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Hero tracking box */
.hero-tracking-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    max-width: 450px;
    margin-left: auto;
}

.hero-tracking-box .tracking-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-tracking-box .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(242, 188, 107, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-tracking-box .icon-box i {
    font-size: 24px;
    color: var(--secondary);
}

.hero-tracking-box h4 {
    color: var(--primary);
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem;
}

.hero-tracking-box h4 span {
    color: var(--secondary);
}

.hero-tracking-box .input-group-custom {
    margin-bottom: 15px;
}

.hero-tracking-box .form-control {
    border: 2px solid #E8ECF0;
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.hero-tracking-box .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(242, 188, 107, 0.15);
}

.hero-tracking-box .btn-track-hero {
    background: var(--secondary);
    color: var(--primary);
    padding: 14px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.hero-tracking-box .btn-track-hero:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 28, 65, 0.2);
}

.hero-tracking-box .tracking-options {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.hero-tracking-box .tracking-options a {
    color: var(--gray);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-tracking-box .tracking-options a:hover {
    color: var(--secondary);
}

/* Slider controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-controls .btn-slide {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls .btn-slide:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.1);
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: var(--secondary);
    border-color: var(--white);
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Hero stats */
.hero-stats {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px;
    background: rgba(12, 28, 65, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE FIXES ===== */

/* Tablet */
@media (max-width: 991.98px) {
    .hero-slider .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-slider .slide-content p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-tracking-box {
        margin: 20px auto 0;
        max-width: 100%;
    }
    
    .hero-stats {
        gap: 30px;
        padding: 15px;
        bottom: 60px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .slider-controls .btn-slide {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .hero-slider {
        min-height: 100vh;
    }
    
    .hero-slider .slide-content {
        padding: 20px 0 80px;
    }
    
    .hero-slider .slide-content h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero-slider .slide-content p {
        font-size: 0.95rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-slider .slide-content .btn-group-custom {
        justify-content: center;
    }
    
    .hero-tracking-box {
        padding: 20px;
        margin: 15px auto 0;
        border-radius: 16px;
    }
    
    .hero-tracking-box .tracking-header {
        gap: 10px;
    }
    
    .hero-tracking-box .icon-box {
        width: 40px;
        height: 40px;
    }
    
    .hero-tracking-box .icon-box i {
        font-size: 18px;
    }
    
    .hero-tracking-box h4 {
        font-size: 1rem;
    }
    
    .hero-tracking-box .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .hero-tracking-box .btn-track-hero {
        padding: 12px;
        font-size: 14px;
    }
    
    .hero-tracking-box .tracking-options {
        gap: 10px;
        justify-content: center;
    }
    
    .hero-tracking-box .tracking-options a {
        font-size: 12px;
    }
    
    /* Hide stats on mobile */
    .hero-stats {
        display: none;
    }
    
    /* Slider controls on mobile */
    .slider-controls {
        padding: 0 10px;
        bottom: 100px;
        top: auto;
        transform: none;
    }
    
    .slider-controls .btn-slide {
        width: 36px;
        height: 36px;
        font-size: 14px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .slider-dots {
        bottom: 0px;
        gap: 8px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Hero badge */
    .hero-badge {
        font-size: 11px;
        padding: 4px 14px;
        display: inline-block;
        margin: 0 auto 15px;
        text-align: center;
    }
    
    /* Buttons */
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* Extra small devices */
@media (max-width: 575.98px) {
    /*.hero-section {*/
    /* height:730px;   */
    /*}*/
    .hero-slider .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-slider .slide-content p {
        font-size: 0.85rem;
    }
    
    .hero-tracking-box {
        padding: 15px;
        margin-bottom: 80px;
    }
    
    .hero-tracking-box .tracking-header h4 {
        font-size: 0.9rem;
    }
    
    .hero-tracking-box .form-control {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .hero-tracking-box .btn-track-hero {
        padding: 10px;
        font-size: 13px;
    }
    
    .slider-dots {
        bottom: 0px;
        gap: 8px;
    }
    .slider-controls .btn-slide {
        display: none;
    }
}

/* Landscape phones */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-slider {
        min-height: 100vh;
    }
    
    .hero-slider .slide-content {
        padding: 10px 0 60px;
    }
    
    .hero-slider .slide-content h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .hero-slider .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .hero-tracking-box {
        padding: 15px;
        max-width: 400px;
    }
    
    .hero-tracking-box .tracking-header {
        margin-bottom: 10px;
    }
    
    .hero-tracking-box .form-control {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .hero-tracking-box .btn-track-hero {
        padding: 8px;
        font-size: 13px;
    }
}


/* ===== HERO SLIDER - FIXED ===== */

.hero-section {
    position: relative;
    overflow: hidden;
    background: #0c1c41;
    min-height: 100vh;
    height: 100vh;
    max-height: 900px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slider .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 28, 65, 0.92) 0%, rgba(12, 28, 65, 0.6) 100%);
    z-index: 1;
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

/* Remove page loader if it's blocking */
.page-loader {
    display: none !important;
}