@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary: #002266;
    --primary-light: #003399;
    --secondary: #f2a900;
    --secondary-light: #ffd24d;
    --white: #ffffff;
    --dark: #0f172a;
    --gray-100: #f1f5f9;
    --gray-400: #94a3b8;
    --gray-800: #1e293b;
    
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-md: 0 4px 15px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-large { max-width: 1350px; margin: 0 auto; padding: 0 24px; }

/* --- HEADER & NAVBAR (TRANSPARENT OVERLAY) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    border-bottom: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    margin-right: 12px;
    filter: brightness(0) invert(1); /* Make logo white initially */
    transition: var(--transition);
}

.header.scrolled .logo img {
    filter: none; /* Original colors when scrolled */
}

.logo-text {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.header.scrolled .logo-text { color: var(--primary); }
.logo-text .highlight { color: var(--secondary); }

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.header.scrolled .nav-links a {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.header.scrolled .nav-links a:hover, .header.scrolled .nav-links a.active { color: var(--secondary); }

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.header.scrolled .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.header.scrolled .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Login Button Styles */
.login-btn {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.login-btn:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.header.scrolled .login-btn {
    color: var(--primary);
    border-color: var(--primary);
}

.header.scrolled .login-btn:hover {
    background: var(--primary);
    color: var(--white);
}

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

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* --- HERO SECTION & PAGE BANNER --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--white);
    background-size: cover !important;
    background-position: center !important;
    justify-content: center;
}

.page-banner {
    padding: 150px 0 80px; 
    color: var(--white);
    background-size: cover !important;
    background-position: center !important;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumbs {
    font-size: 15px;
    font-weight: 500;
}

.breadcrumbs a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    opacity: 1;
    color: var(--secondary);
}

.breadcrumbs i {
    font-size: 12px;
    margin: 0 10px;
    opacity: 0.6;
}

.breadcrumbs span {
    color: var(--secondary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 34, 102, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    width: 100%;
    padding-top: 50px; /* Offset for header */
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-title .highlight { color: var(--secondary); }

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- ULTRA-PREMIUM SEARCH BAR --- */
.search-bar {
    background: #ffffff;
    padding: 8px 8px 8px 12px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0,0,0,0.05);
    max-width: 880px;
    margin: 0 auto;
    transition: var(--transition);
}

.search-bar:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.search-group:hover {
    background: rgba(0, 34, 102, 0.04);
}

.icon-box {
    color: var(--secondary);
    font-size: 18px;
    transition: var(--transition);
}

.search-group:hover .icon-box {
    transform: scale(1.1);
    color: var(--primary);
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-wrapper label {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.input-wrapper input,
.input-wrapper select {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-400);
    outline: none;
    width: 100%;
    cursor: pointer;
}

.input-wrapper input:focus, .input-wrapper select:focus {
    color: var(--primary);
    font-weight: 600;
}

.divider {
    width: 1px;
    height: 35px;
    background: var(--gray-100);
    margin: 0 5px;
}

.search-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--secondary) 0%, #e69500 100%);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(242, 169, 0, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.search-btn i {
    transition: transform 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(242, 169, 0, 0.5);
}

.search-btn:hover i {
    transform: scale(1.15) rotate(-5deg);
}

/* --- HERO STATS CARDS --- */
.hero-stats-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 24px;
    color: var(--secondary);
}

.stat-info {
    text-align: left;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    font-weight: 500;
}

/* --- SECTION STYLES --- */
.section-padding {
    padding: 70px 0;
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.sub-heading {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: rgba(0, 34, 102, 0.08);
    padding: 6px 15px;
    border-radius: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.text-gold {
    color: var(--secondary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* --- TOUR PACKAGES GRID --- */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

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

.package-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-img-wrapper img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.package-badge.bg-blue {
    background: var(--primary);
}

.package-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 18px;
    font-family: var(--font-head);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.package-price span {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
}

.package-content {
    padding: 25px;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 15px;
    font-weight: 500;
}

.package-meta i {
    color: var(--secondary);
    margin-right: 5px;
}

.package-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    transition: var(--transition);
}

.package-card:hover .package-title {
    color: var(--primary);
}

.package-desc {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 25px;
    line-height: 1.6;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-100);
    padding-top: 20px;
}

.btn-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-text:hover {
    color: var(--secondary);
    gap: 12px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* --- VISA SERVICES GRID --- */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.visa-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.visa-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 34, 102, 0.1);
}

.visa-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--gray-100);
}

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

.visa-card:hover .visa-img img {
    transform: scale(1.15);
}

.visa-info {
    flex: 1;
}

.visa-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.visa-card:hover .visa-info h3 {
    color: var(--primary);
}

.visa-info p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.visa-time {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 34, 102, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
}

.visa-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
    text-decoration: none;
    flex-shrink: 0;
}

.visa-card:hover .visa-btn {
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    transform: translateX(5px);
}

/* --- BOOKING CTA --- */
.booking-cta {
    padding: 80px 0;
}
.cta-wrapper {
    background: linear-gradient(135deg, rgba(0,34,102,0.9), rgba(0,34,102,0.7)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}
.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* --- WHY CHOOSE US (MINIMALIST REDESIGN) --- */
.minimal-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.minimal-feature {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    background: var(--white);
    transition: var(--transition);
}

.minimal-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 34, 102, 0.2);
    box-shadow: var(--shadow-sm);
}

.min-icon {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.minimal-feature:hover .min-icon {
    color: var(--secondary);
    transform: scale(1.1);
}

.minimal-feature h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.minimal-feature p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* --- POPULAR DESTINATIONS --- */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 250px 250px;
    gap: 20px;
}

.dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
}

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

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

.dest-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 2;
    transition: var(--transition);
}

.dest-content h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.dest-content span {
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    background: var(--secondary);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

.dest-large {
    grid-column: span 2;
    grid-row: span 2;
}

.dest-large .dest-content h3 {
    font-size: 32px;
}

.dest-wide {
    grid-column: span 2;
}

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

.dest-card:hover .dest-content {
    transform: translateY(-5px);
}

/* --- TESTIMONIALS --- */
.testimonial-swiper {
    padding-bottom: 50px; /* Space for pagination bullets */
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 34, 102, 0.08);
}

.quote-icon {
    font-size: 40px;
    color: rgba(242, 169, 0, 0.15);
    margin-bottom: 15px;
}

.review-text {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    min-height: 80px;
}

.rating {
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 25px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--gray-100);
    padding-top: 20px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.reviewer-info span {
    font-size: 13px;
    color: var(--gray-400);
}

/* Swiper Pagination Color */
.swiper-pagination-bullet-active {
    background-color: var(--secondary) !important;
}

/* --- CONNECT CTA (Newsletter) --- */
.newsletter-box {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition);
}
.newsletter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 34, 102, 0.08);
}
.connect-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}
.newsletter-box h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}
.newsletter-box p {
    color: var(--gray-400);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
}
.newsletter-form {
    display: flex;
    gap: 10px;
}
.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}
.newsletter-form input:focus {
    border-color: var(--primary);
}

/* --- FLOATING CHAT --- */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0, 34, 102, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.floating-chat:hover {
    transform: scale(1.1);
    background-color: var(--primary);
    color: var(--white);
}

/* --- FOOTER --- */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}
.footer-logo .highlight {
    color: var(--secondary);
}
.footer-widget p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}
.footer-widget h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}
.footer-links, .footer-contact {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-decoration: none !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-links a i {
    font-size: 12px;
    color: var(--secondary);
}
.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.footer-contact li i {
    color: var(--secondary);
    margin-top: 4px;
}
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* --- MOBILE MENU --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    box-shadow: -15px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 70px 25px 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--gray-500);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: var(--danger-light, #fee2e2);
    color: var(--danger, #ef4444);
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.mobile-nav-links a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover { 
    color: var(--primary); 
    background: var(--primary-light, rgba(0,34,102,0.05));
    padding-left: 20px;
}

.mobile-nav-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--gray-200);
    padding-top: 25px;
}

.mobile-nav-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px;
    font-size: 15px;
}

/* --- MOBILE RESPONSIVE --- */
.hamburger { display: none; cursor: pointer; }

@media (max-width: 992px) {
    .nav-links, .nav-actions .btn { display: none; }
    .hamburger { display: block; font-size: 24px; color: var(--white); }
    .header.scrolled .hamburger { color: var(--primary); }
    .header { padding: 15px 20px; }
    
    .hero-title { font-size: 48px; }
    
    .search-bar { border-radius: 24px; padding: 20px; margin: 0 15px; }
    .search-form { flex-direction: column; gap: 15px; }
    .search-group { width: 100%; padding: 12px; border-radius: 12px; background: rgba(0,0,0,0.02); }
    .divider { display: none; }
    .search-btn { width: 100%; justify-content: center; margin-top: 10px; }
    
    .package-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .minimal-feature-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 250px 250px 250px;
    }
    .dest-large { grid-column: span 2; grid-row: span 1; }
    .dest-wide { grid-column: span 2; }
    

    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
}

@media (max-width: 768px) {
    .hero { height: auto; min-height: 100vh; padding-top: 120px; padding-bottom: 60px; }
    .hero-title { font-size: 30px; margin-bottom: 12px; line-height: 1.3; }
    .hero-subtitle { font-size: 14px; margin-bottom: 25px; }
    
    .hero-stats-cards { gap: 15px; margin-top: 30px; }
    .stat-card { width: calc(50% - 10px); padding: 12px; flex-direction: column; text-align: center; gap: 8px; }
    .stat-info { text-align: center; }
    .stat-num { font-size: 20px; }
    .stat-label { font-size: 12px; }
    
    .minimal-feature-grid { gap: 20px; }
    
    .section-padding { padding: 50px 0; }
    .section-title { font-size: 32px; }
    .package-grid { grid-template-columns: 1fr; }
    .visa-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .container, .container-large { padding: 0 15px; }
}

@media (max-width: 576px) {
    body { font-size: 14px; }
    
    .logo img { height: 40px; }
    .logo-text { font-size: 20px; }
    
    .section-title { font-size: 24px; margin-bottom: 10px; }
    .section-subtitle { font-size: 13px; margin-bottom: 30px; }
    
    .hero-title { font-size: 24px; line-height: 1.3; }
    .hero-subtitle { font-size: 13px; margin-bottom: 20px; }
    
    .hero-stats-cards { gap: 12px; margin-top: 25px; }
    .stat-card { 
        width: calc(50% - 6px); /* 2 cards side-by-side with 12px gap */
        flex-direction: column; 
        text-align: center; 
        padding: 12px 10px; 
    }
    .stat-info { text-align: center; }
    .stat-num { font-size: 18px; }
    .stat-label { font-size: 11px; }
    .stat-icon { font-size: 20px; }
    
    .visa-card { padding: 15px; gap: 15px; }
    .visa-img { width: 70px; height: 70px; }
    .visa-info h3 { font-size: 18px; }
    
    .minimal-feature-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .minimal-feature { padding: 15px 10px; }
    .minimal-feature h3 { font-size: 15px; margin-bottom: 8px; }
    .minimal-feature p { font-size: 11px; line-height: 1.4; }
    .min-icon { width: 45px; height: 45px; font-size: 20px; margin-bottom: 12px; }
    
    .dest-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .dest-card { height: 250px; }
    .dest-large { grid-column: span 1; grid-row: span 1; }
    .dest-wide { grid-column: span 1; }
    .dest-info h3 { font-size: 18px; }
    
    .cta-wrapper { padding: 40px 20px; }
    .cta-content h2 { font-size: 22px; margin-bottom: 10px; }
    .cta-content p { font-size: 13px; }
    .cta-buttons { flex-direction: column; }
    
    .package-card h3 { font-size: 18px; }
    .package-price { font-size: 20px; }
    
    .testimonial-card p { font-size: 13px; }
    
    .footer-widget h4 { font-size: 18px; }
    .footer-widget p, .footer-links a, .footer-contact li { font-size: 13px; }
    
    .floating-chat {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .newsletter-form { flex-direction: column; }
    .newsletter-box { padding: 40px 20px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .mobile-menu { width: 280px; padding: 60px 20px 30px; }
}

.header.scrolled .user-greeting {
    color: var(--primary) !important;
}


/* Compact Page Banner for Mobile */
@media (max-width: 768px) {
    .page-banner {
        padding: 100px 0 50px;
    }
    .page-banner h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .breadcrumbs {
        font-size: 13px;
    }
}

