/* ============================================================
   Pack & Go — styles.css (Final Merged Version)
   ============================================================ */

/* ========== CSS VARIABLES ========== */
:root {
    --primary-blue: #185FA5;
    --dark-blue: #0D47A1;
    --light-blue: #E3F2FD;
    --orange: #F47B20;
    --dark-orange: #D96A10;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #EEEEEE;
    --gray-dark: #666666;
    --text-dark: #333333;
    --navy: #2D3748;
}

/* ========== RESET ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; font-size: 14px; }
img { max-width: 100%; height: auto; display: block; }

/* ========== TOPBAR ========== */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    padding: 8px 40px;
    font-size: 13px;
}
.topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-left a, .topbar-left span { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; }
.topbar-left a:hover { color: var(--white); }
.topbar-left i { color: var(--orange); font-size: 12px; }
.topbar-whatsapp {
    background: #25D366;
    color: white !important;
    padding: 5px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 12px;
    transition: background 0.3s;
}
.topbar-whatsapp:hover { background: #1fba5a; }

/* ========== NAVBAR ========== */
.navbar {
    background: var(--white);
    padding: 8px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: none;
    border-bottom: none;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}
.logo { display: flex; align-items: center; min-width: fit-content; }
.logo-img { height: 68px; width: auto; object-fit: contain; }

.nav-tabs { display: flex; gap: 28px; flex: 1; justify-content: center; }
.nav-tab {
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.nav-tab:hover, .nav-tab.active { color: var(--primary-blue); border-bottom-color: var(--primary-blue); font-weight: 700; }

.contact-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-btn:hover { background: var(--dark-blue); }
.contact-btn i { font-size: 13px; }

.menu-toggle { display: none; background: none; font-size: 24px; color: var(--text-dark); }

/* Mobile nav search — hidden on desktop */
.nav-search-mobile { display: none !important; }

/* ========== HERO ========== */
.hero {
    background: var(--white);
    padding: 16px 40px 8px;
    text-align: center;
}
.hero-tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 12px; flex-wrap: wrap; }
.hero-tab {
    background: var(--white);
    border: 1px solid #CCCCCC;
    color: var(--gray-dark);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.hero-tab:hover { border-color: var(--primary-blue); color: var(--primary-blue); }
.hero-tab.active { background: var(--primary-blue); color: var(--white); border-color: var(--primary-blue); }

.hero-search {
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: white;
    border-radius: 10px;
    padding: 6px;
    border: 1px solid #e5e5e5;
}
.search-input {
    flex: 1;
    padding: 10px 18px;
    border: none !important;
    border-radius: 30px;
    height: 44px;
    font-size: 14px;
    background: transparent;
    outline: none;
}
.search-input:focus { border: none; box-shadow: none; }

.search-btn {
    background: var(--primary-blue);
    color: var(--white);
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.search-btn:hover { background: var(--dark-blue); }

.explore-btn {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 22px;
    height: 44px;
    border-radius: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.explore-btn:hover { background: var(--primary-blue); color: var(--white); }

.destination-suggestions {
    list-style: none;
    position: absolute;
    background: var(--white);
    border-radius: 6px;
    width: 100%;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 50;
    display: none;
    top: calc(100% + 4px);
    left: 0;
    text-align: left;
}
.destination-suggestions.active { display: block; }
.destination-suggestions li { padding: 12px 16px; border-bottom: 1px solid #F0F0F0; cursor: pointer; font-size: 14px; }
.destination-suggestions li:hover { background: var(--light-blue); }

.hero-headline { margin-top: 12px; }
.hero-headline h1 { font-size: 36px; margin-bottom: 4px; color: var(--text-dark); font-weight: 500; line-height: 1.2; }
.hero-headline h1 .highlight { color: var(--primary-blue); }
.hero-headline p { font-size: 14px; color: var(--gray-dark); margin-bottom: 4px; }

.destination-tags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.tag {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.tag:hover { border-color: var(--primary-blue); color: var(--primary-blue); background: var(--light-blue); }

/* ========== SECTIONS ========== */
section { padding: 16px 40px; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.top-packages { border-top: none; padding-top: 10px; padding-bottom: 30px; }
.tour-packages { background: var(--white); padding-top: 20px; }

.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.section-header h2 { font-size: 22px; font-weight: 500; color: var(--navy); }
.view-all-link { color: var(--primary-blue); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.view-all-link:hover { text-decoration: underline; }

.bg-light { background: var(--gray-light); padding: 20px 40px; width: 100%; }
.bg-light .section-header, .bg-light .carousel-container { max-width: 1400px; margin-left: auto; margin-right: auto; }

@media (min-width: 1024px) {
    .category-section { padding: 16px 40px; }
}

/* ========== CAROUSEL ========== */
.carousel-container { position: relative; display: flex; align-items: center; gap: 12px; }
.carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 8px 4px 12px;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}
.carousel::-webkit-scrollbar { display: none; }

.carousel-btn {
    background: var(--white);
    border: 1px solid #EEEEEE;
    color: var(--primary-blue);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 2;
}
.carousel-btn:hover { background: var(--primary-blue); color: white; }

.carousel-card {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 200px;
    background: var(--white);
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
    transition: all 0.3s ease;
    cursor: pointer;
}
.carousel-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.18); transform: translateY(-2px); }
.carousel-card::after {
    content: 'Enquire Now →';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.carousel-card:hover::after { transform: translateY(0); }

.card-image { width: 100%; height: 180px; overflow: hidden; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.carousel-card:hover .card-image img { transform: scale(1.05); }

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.85);
    color: #333;
    backdrop-filter: blur(6px);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.card-info { padding: 18px 18px 20px; }
.card-info h3 { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.card-info .stats { font-size: 11px; color: var(--gray-dark); margin-bottom: 2px; display: flex; align-items: center; gap: 5px; }
.card-info .date { font-size: 12px; color: var(--text-dark); }
.card-info .date strong { color: var(--primary-blue); }

/* ========== PACKAGE CARD ========== */
.package-card {
    flex-shrink: 0;
    width: 240px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #EEEEEE;
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
    transition: all 0.3s ease;
    cursor: pointer;
}
.package-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-2px); }
.package-image { width: 100%; height: 240px; overflow: hidden; position: relative; }
.package-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.package-card:hover .package-image img { transform: scale(1.05); }
.package-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(255,255,255,0.85);
    color: #333;
    backdrop-filter: blur(6px);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.package-body { padding: 18px 18px 20px; }
.package-body h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.package-body .duration { font-size: 12px; color: var(--gray-dark); margin-bottom: 6px; display: flex; align-items: center; gap: 5px; }
.package-body .duration i { color: var(--primary-blue); }
.package-body .description { font-size: 12px; color: var(--gray-dark); margin-bottom: 12px; line-height: 1.5; min-height: 36px; }
.view-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 9px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s;
}
.view-btn:hover { background: var(--dark-blue); }

/* ========== OFFER BANNER ========== */
.offer-banner {
    margin: 0 40px 20px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(120deg, #F47B20 0%, #c94e00 100%);
}
.offer-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 32px;
}
.offer-illustration {
    flex-shrink: 0;
    width: 220px;
    height: 130px;
    border-radius: 12px;
    overflow: hidden;
}
.offer-illustration img { width: 100%; height: 100%; object-fit: cover; }
.offer-left { flex: 1; color: white; }
.offer-left h2 { font-size: 26px; font-weight: 900; color: white; margin-bottom: 2px; text-transform: uppercase; }
.offer-sub { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 6px; text-transform: uppercase; }
.offer-desc { font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.offer-badges { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.offer-badge-pill { background: white; color: var(--orange); font-weight: 800; font-size: 13px; padding: 6px 14px; border-radius: 30px; }
.offer-code { background: rgba(255,255,255,0.15); border: 2px dashed rgba(255,255,255,0.6); color: white; padding: 6px 14px; border-radius: 6px; font-size: 13px; }
.offer-code strong { letter-spacing: 1px; }
.offer-right { flex-shrink: 0; }
.offer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--orange);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
}
.offer-cta-btn:hover { background: var(--navy); color: white; }

/* ========== STATS SECTION ========== */
.stats-section {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 70px 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.stats-label { font-size: 13px; font-weight: 700; color: var(--primary-blue); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.stats-big-number { font-size: 72px; font-weight: 900; color: var(--primary-blue); line-height: 1; margin-bottom: 16px; }
.stats-desc { font-size: 15px; color: var(--gray-dark); line-height: 1.8; margin-bottom: 28px; max-width: 400px; }
.stats-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-blue);
    color: white;
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}
.stats-cta:hover { background: var(--dark-blue); }

.checklist-card { background: #f8f9fb; border-radius: 16px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.checklist-item { display: flex; align-items: flex-start; gap: 16px; padding: 8px 0; }
.check-icon { width: 36px; height: 36px; background: #22c55e; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; flex-shrink: 0; }
.checklist-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.checklist-item p { font-size: 13px; color: var(--gray-dark); margin: 0; }
.checklist-line { width: 2px; height: 20px; background: #e2e8f0; margin-left: 17px; }

/* ========== REVIEWS + BLOG ========== */
.reviews-blog-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 60px 40px;
    width: 100%;
}
.reviews-blog-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.reviews-col, .blog-col { width: 100%; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(24,95,165,0.08);
    border: 1px solid #e8f0fb;
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card:hover { box-shadow: 0 6px 24px rgba(24,95,165,0.14); }
.testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-card p { font-size: 12px; color: var(--gray-dark); line-height: 1.7; margin-bottom: 16px; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 34px; height: 34px; background: var(--primary-blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 12px; font-weight: 700; }
.testimonial-author span { font-size: 11px; color: var(--gray-dark); }
.rating-summary { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.rating-summary .stars { color: #f59e0b; font-size: 16px; }

.blog-grid-small { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-small-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(24,95,165,0.08);
    border: 1px solid #e8f0fb;
    transition: all 0.3s;
    cursor: pointer;
}
.blog-small-card:hover { box-shadow: 0 6px 24px rgba(24,95,165,0.14); transform: translateY(-2px); }
.blog-small-image { position: relative; height: 180px; overflow: hidden; }
.blog-small-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag-small { position: absolute; top: 8px; left: 8px; background: var(--primary-blue); color: white; padding: 2px 8px; border-radius: 20px; font-size: 10px; font-weight: 700; }
.blog-small-body { padding: 12px; }
.blog-small-body h3 { font-size: 12px; font-weight: 600; line-height: 1.4; margin-bottom: 8px; color: var(--text-dark); }
.blog-read-more { color: var(--primary-blue); font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.blog-read-more:hover { text-decoration: underline; }
.blog-card:hover .blog-body h3 { color: var(--primary-blue); }

/* ========== PARTNERS MARQUEE ========== */
.partners-section { background: var(--white); padding: 60px 0 50px; text-align: center; border-top: 1px solid #EEEEEE; }
.partners-section h2 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.partners-sub { font-size: 14px; color: var(--gray-dark); margin-bottom: 36px; }
.marquee-wrapper { overflow: hidden; width: 100%; margin-bottom: 32px; }
.marquee-track { display: flex; animation: marquee 28s linear infinite; width: max-content; }
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partner-logo { padding: 14px 36px; font-size: 15px; font-weight: 700; color: var(--navy); white-space: nowrap; border-right: 1px solid #EEEEEE; display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.partner-logo:hover { color: var(--primary-blue); }
.partners-badge { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--primary-blue); color: var(--primary-blue); padding: 10px 24px; border-radius: 30px; font-size: 14px; font-weight: 700; margin-top: 8px; letter-spacing: 0.5px; }

/* ========== FLOATING WHATSAPP ========== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    z-index: 999;
    transition: transform 0.3s, background 0.3s;
    text-decoration: none;
}
.floating-whatsapp:hover { transform: scale(1.1); }
.floating-whatsapp::after {
    content: 'Chat with us';
    position: absolute;
    right: 64px;
    background: #25D366;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.floating-whatsapp:hover::after { opacity: 1; }

/* ========== FOOTER ========== */
.footer { background: #f8faff; border-top: 1px solid #e2e8f0; }
.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 24px;
}
.footer-brand .footer-logo { height: 36px; width: auto; margin-bottom: 6px; }
.footer-brand p { font-size: 13px; color: var(--gray-dark); line-height: 1.6; margin-bottom: 10px; max-width: 260px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.footer-contact-info a, .footer-contact-info span { font-size: 13px; color: var(--gray-dark); display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.footer-contact-info a:hover { color: var(--primary-blue); }
.footer-contact-info i { color: var(--primary-blue); width: 14px; }
.social-links { display: flex; gap: 8px; margin-top: 6px; }
.social-links a { width: 32px; height: 32px; background: var(--primary-blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; transition: all 0.3s; }
.social-links a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-links-group h4 { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.footer-links-group ul { list-style: none; }
.footer-links-group ul li { margin-bottom: 6px; }
.footer-links-group ul li a { font-size: 13px; color: var(--gray-dark); transition: color 0.3s; }
.footer-links-group ul li a:hover { color: var(--primary-blue); }
.footer-explore { border-top: 1px solid #e2e8f0; padding: 14px 40px; max-width: 1400px; margin: 0 auto; display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.footer-explore > span { font-size: 12px; font-weight: 700; color: var(--text-dark); letter-spacing: 1px; white-space: nowrap; padding-top: 2px; }
.explore-links { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.explore-links a { font-size: 13px; color: var(--gray-dark); transition: color 0.3s; }
.explore-links a:hover { color: var(--primary-blue); }
.explore-links span { color: #ccc; font-size: 12px; }
.footer-bottom { border-top: 1px solid #e2e8f0; padding: 12px 40px; text-align: center; font-size: 12px; color: var(--gray-dark); }

/* ============================================================
   RESPONSIVE — TABLET (max 1200px)
   ============================================================ */
@media (max-width: 1200px) {
    .footer-main { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .footer-main .footer-links-group:last-child { display: none; }
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .carousel-card { width: 220px; }
    .nav-container { gap: 20px; }
    .reviews-blog-inner { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid-small { grid-template-columns: repeat(2, 1fr); }
    .stats-section { grid-template-columns: 1fr; gap: 40px; }
    .stats-big-number { font-size: 56px; }
    .footer-main { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* Topbar */
    .topbar { padding: 8px 20px; }
    .topbar-left { gap: 12px; font-size: 11px; }
    .topbar-left span { display: none; }

    /* Navbar */
    .navbar { padding: 10px 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
    .nav-container { gap: 12px; }
    .logo-img { height: 42px; }
    .contact-btn { display: none; }
    .menu-toggle { display: block; }
    .nav-tabs {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 62px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 12px 20px 20px;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        z-index: 999;
        border-top: 1px solid #EEEEEE;
    }
    .nav-tabs.active { display: flex; }
    .nav-tab { padding: 14px 0; font-size: 15px; border-bottom: 1px solid #F0F0F0; }
    .nav-tab:last-child { border-bottom: none; }

    /* Nav search — visible on mobile */
    .nav-search-mobile {
        display: flex !important;
        align-items: center;
        flex: 1;
        background: white;
        border-radius: 30px;
        padding: 4px 6px 4px 16px;
        gap: 8px;
        margin: 0 10px;
        border: 1px solid #e5e5e5;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .nav-search-input { flex: 1; border: none; background: transparent; font-size: 13px; outline: none; color: #333; }
    .nav-search-btn { background: var(--primary-blue); border: none; color: white; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; flex-shrink: 0; }

    /* Hero */
    .hero { padding: 16px 12px 10px; }
    .hero-tabs { gap: 6px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; margin-bottom: 6px; scrollbar-width: none; -ms-overflow-style: none; }
    .hero-tabs::-webkit-scrollbar { display: none; }
    .hero-tab { flex-shrink: 0; padding: 4px 8px; font-size: 10px; }
    .hero-tab i { display: none; }
    .hero-headline h1 { font-size: 24px; line-height: 1.3; }
    .hero-headline p { font-size: 11px; }

    .hero-search { flex-direction: row !important; gap: 8px; padding: 4px; }
    .search-input { height: 28px !important; font-size: 11px !important; padding: 4px 10px !important; }
    .search-btn { width: 28px !important; height: 28px !important; min-width: 28px !important; min-height: 28px !important; font-size: 11px !important; }
    .explore-btn { display: none !important; }

    /* Destination tags */
    .destination-tags { gap: 8px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; margin-top: 16px; }
    .destination-tags::-webkit-scrollbar { display: none; }
    .tag { flex-shrink: 0; padding: 4px 10px; font-size: 11px; }

    /* Sections */
    section { padding: 20px 12px; }
    .category-section { padding: 16px 12px; }
    .bg-light { padding: 16px 12px; }
    .top-packages { padding: 10px 12px; }
    .tour-packages { padding: 10px 12px; }
    .section-header { margin-bottom: 8px; }
    .section-header h2 { font-size: 18px; }

    /* Carousel */
    .carousel { gap: 8px; padding: 6px 4px 12px; }
    .carousel-btn { display: none; }
    .carousel-card { width: 130px; }
    .card-image { height: 90px; }
    .card-info { padding: 8px 10px 10px; }
    .card-info h3 { font-size: 11px; }
    .card-info .stats { font-size: 9px; }
    .card-info .date { font-size: 10px; }

    /* Performance fix - scroll lag */
    .pkg-badge, .pkg-duration-badge, .card-badge, .package-badge {
        backdrop-filter: none;
        background: rgba(255,255,255,0.95);
    }
    .pkg-duration-badge {
        background: rgba(0,0,0,0.7);
    }
    .pkg-card, .carousel-card, .package-card {
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: none;
    }
    .testimonial-card, .blog-small-card {
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
        transition: none;
    }
    .testimonial-card:hover, .blog-small-card:hover {
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
        transform: none;
    }
    .carousel-card:hover {
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transform: none;
    }
    .marquee-track {
        animation-duration: 60s;
    }

    /* Offer Banner */
    .offer-banner {
        margin: 0 12px 12px;
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(201, 78, 0, 0.3);
        background: linear-gradient(120deg, #FF6B00 0%, #F47B20 55%, #c94e00 100%);
    }
    .offer-banner-inner {
        padding: 12px 14px;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
    }
    .offer-illustration { display: none; }
    .offer-left { flex: 1; min-width: 0; }
    .offer-left h2 {
        font-size: 11px;
        margin-bottom: 0;
        letter-spacing: 0.3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .offer-sub { display: none; }
    .offer-desc { display: none; }
    .offer-badge-pill {
        font-size: 10px;
        padding: 3px 10px;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    }
    .offer-code {
        font-size: 9px;
        padding: 3px 8px;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(4px);
        border: 1.5px dashed rgba(255,255,255,0.65);
    }
    .offer-badges {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        margin-top: 5px;
        flex-wrap: nowrap;
    }
    .offer-right { flex-shrink: 0; }
    .offer-cta-btn {
        font-size: 11px;
        padding: 8px 13px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.18);
        border-radius: 8px;
        font-weight: 800;
        white-space: nowrap;
    }

    /* Stats */
    .stats-section { grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px 12px; }
    .stats-big-number { font-size: 32px; }
    .stats-label { font-size: 11px; }
    .stats-desc { font-size: 11px; margin-bottom: 16px; }
    .stats-cta { font-size: 11px; padding: 8px 12px; white-space: nowrap; }
    .checklist-card { padding: 10px 8px; }
    .checklist-item { gap: 8px; padding: 4px 0; }
    .checklist-item strong { font-size: 11px; line-height: 1.2; }
    .checklist-item p { font-size: 10px; line-height: 1.3; }
    .check-icon { width: 24px; height: 24px; font-size: 10px; }
    .checklist-line { margin-left: 11px; height: 12px; }

    /* Reviews + Blog */
    .reviews-blog-section { padding: 32px 16px; }
    .reviews-blog-inner { grid-template-columns: 1fr; gap: 32px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
    .blog-grid-small { grid-template-columns: 1fr; gap: 12px; }
    .blog-small-image { height: 150px; }

    /* Partners */
    .partners-section { padding: 24px 0 20px; }
    .partners-section h2 { font-size: 16px; padding: 0 16px; }
    .partners-sub { font-size: 11px; padding: 0 16px; margin-bottom: 16px; }
    .partner-logo { font-size: 12px; padding: 10px 20px; }
    .partners-badge { font-size: 11px; padding: 7px 16px; }

    /* Footer */
    .footer-main { grid-template-columns: repeat(4, 1fr); padding: 20px 16px; gap: 12px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand p { max-width: 100%; font-size: 12px; }
    .footer-contact-info a, .footer-contact-info span { font-size: 12px; }
    .footer-links-group h4 { font-size: 11px; margin-bottom: 4px; }
    .footer-links-group ul li { margin-bottom: 2px; }
    .footer-links-group ul li a { font-size: 11px; }
    .social-links a { width: 28px; height: 28px; font-size: 11px; }
    .footer-logo { height: 28px !important; }
    .footer-explore { display: none; }
    .footer-bottom { font-size: 11px; padding: 10px 16px; }

    /* Floating WhatsApp */
    .floating-whatsapp { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
    .floating-whatsapp::after {
        content: 'Chat with us';
        position: absolute;
        right: 64px;
        background: #25D366;
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
    }
    .floating-whatsapp:hover::after { opacity: 1; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .navbar { padding: 10px 12px; }
    .logo-img { height: 38px; }
    .hero { padding: 14px 10px 8px; }
    .hero-headline h1 { font-size: 20px; }
    .hero-tabs { gap: 6px; }
    .hero-tab { padding: 8px 12px; font-size: 11px; }
    .hero-tab i { display: none; }
    .hero-search { padding: 4px; }
    .search-input { padding: 12px 14px; }
    .carousel-card { width: 120px; }
    .card-image { height: 80px; }
    .stats-big-number { font-size: 28px; }
    .offer-left h2 { font-size: 26px; }
    .offer-badges { flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 16px; }
    .footer-links-group:nth-child(n+4) { display: none; }
    section { padding: 16px 10px; }
    .section-header h2 { font-size: 16px; }
}

/* ============================================================
   DESKTOP ONLY
   ============================================================ */
@media (min-width: 1024px) {
    .category-section { padding: 16px 40px; }
}