/* ===========================================
CSS ROOT & BASE STYLES
=========================================== */
:root {
    --primary: #0A58CA;
    --primary-hover: #084298;
    --accent: #FF5722;
    --dark: #1E293B;
    --light-bg: #F8FAFC;
    --gold: #FFC107;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
}

/* ===========================================
CLEANED & FIXED NAVBAR + GT STYLE MEGA MENU
=========================================== */
#mainNavbar {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 14px 0;
    position: relative;
}

#mainNavbar .logo-dark { height: 45px; display: block; }
#mainNavbar .logo-white { display: none; }

#mainNavbar .nav-link { 
    color: var(--dark); 
    font-weight: 600; 
    font-size: 14px; 
}
#mainNavbar .nav-link:hover, 
#mainNavbar .nav-link.active { 
    color: var(--primary); 
}

/* GT Holidays Full-Width Mega Menu Rules */
#mainNavbar .dropdown {
    position: static !important;
}

#mainNavbar .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 1140px !important;
    margin: 0 auto !important;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 20px 20px;
    padding: 30px;
    background: #fff;
}

.hover-bg-light:hover {
    background-color: var(--light-bg);
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

@media (min-width: 992px) {
    #mainNavbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    #mainNavbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease-in-out;
        transform: translateY(10px);
    }
}

/* ===========================================
HERO SECTION STYLES
=========================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.heroSwiper {
    width: 100%;
    height: 600px;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 100px;
}

.badge-custom {
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.holiday-search-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.lead { font-size: 14px !important; }
.fs { font-size: 50px !important; }

/* ===========================================
VIBRANT WHY US & COUNTER STYLES
=========================================== */
.why-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%);
}

.why-card {
    background: #ffffff !important;
    border-left: 4px solid var(--bs-primary) !important;
    transition: all 0.25s ease-in-out;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.15) !important;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

.counter-box {
    background: linear-gradient(135deg, #1f589d 0%, #2563eb 50%, #1e40af 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 991.98px) {
    .border-end-lg {
        border-right: none !important;
    }
}

/* ===========================================
PACKAGE CARDS & TABS STYLES
=========================================== */
.custom-package-tabs .nav-link {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.custom-package-tabs .nav-link.active {
   background-color: #1f589d;
    color: #ffffff;
    border-color: #1f589d;
    box-shadow: 0 4px 12px rgb(86 136 210 / 25%);
}

.package-card {
    border-color: #e2e8f0 !important;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--bs-primary) !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color) !important;
    background-color:#1f589d;
}
.nav-link {
	color: #1f589d !important;
}