/* ============================================================
   TripMitra Holidays — Customer Website Stylesheet
   Faithfully converted from the approved HTML design
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background: #f4f6ff;
    color: #1a1a2e;
    line-height: 1.6;
    min-height: 100vh;
}

/* ── Layout Wrapper ── */
.page-wrap {
    width: 100%;
    background: #fff;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(0,0,0,0.10);
}
@media (min-width: 1600px) { .page-wrap { max-width: 70vw; } }

/* ── Topbar ── */
.topbar {
    background: #0d1b4b;
    padding: 7px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #8899cc;
}
.topbar a { color: #8899cc; text-decoration: none; transition: color .2s; }
.topbar a:hover { color: #c9a227; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 18px; }

/* ── Navbar ── */
.navbar {
    background: #fff;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #0d1b4b;
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.sidebar-logo {
    max-width: 170px;
    width: 100%;
    height: auto;
}
.logo-globe {
    width: 42px; height: 42px; border-radius: 50%;
    background: #0d1b4b;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-name { font-size: 20px; font-weight: 800; color: #0d1b4b; }
.logo-name span { color: #c9a227; }
.logo-sub { font-size: 8px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: #aaa; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
    padding: 8px 14px; font-size: 13px; font-weight: 600;
    color: #555; border-radius: 22px; text-decoration: none;
    transition: all .2s; white-space: nowrap;
}
.nav-link:hover { background: #f0f2ff; color: #0d1b4b; }
.nav-link.active { background: #0d1b4b; color: #fff; }
.nav-enquire {
    background: #c9a227; color: #fff;
    padding: 10px 22px; border-radius: 22px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap; margin-left: 8px;
}
.nav-enquire:hover { background: #b8911e; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #0d1b4b; border-radius: 2px; transition: all .3s; }
.mobile-nav {
    display: none; flex-direction: column;
    background: #fff; border-top: 1px solid #eee;
    padding: 16px 24px; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { border-radius: 8px; }
.mobile-nav .nav-enquire { margin: 10px 0 4px; text-align: center; border-radius: 8px; }

/* ── Hero Slider ── */
.slider-section { position: relative; width: 100%; overflow: hidden; }
.slider-track {
    display: flex; width: 100%;
    transition: transform .75s cubic-bezier(.77,0,.18,1);
    will-change: transform;
}
.slide {
    min-width: 100%;
    position: relative;
    height: 520px;
    overflow: hidden;
    flex-shrink: 0;
}
.slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transition: transform 8s ease;
}
.slide.active img { transform: scale(1.06); }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to right,
        rgba(8,15,45,.78) 0%,
        rgba(8,15,45,.45) 55%,
        rgba(8,15,45,.12) 100%
    );
    z-index: 1;
}
.slide-content {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 55%; z-index: 2;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 56px;
}
.slide-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(201,162,39,.20);
    border: 1px solid rgba(201,162,39,.45);
    color: #c9a227;
    font-size: 10px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 22px;
    margin-bottom: 18px; width: fit-content;
    opacity: 0; transform: translateY(20px);
    transition: opacity .5s .1s, transform .5s .1s;
}
.slide-h1 {
    font-size: clamp(28px, 3.8vw, 50px);
    font-weight: 800; color: #fff;
    line-height: 1.12; margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
    opacity: 0; transform: translateY(24px);
    transition: opacity .55s .2s, transform .55s .2s;
}
.slide-h1 em { color: #c9a227; font-style: normal; }
.slide-desc {
    font-size: 14px; color: rgba(255,255,255,.82);
    font-weight: 300; line-height: 1.8;
    margin-bottom: 28px; max-width: 400px;
    opacity: 0; transform: translateY(20px);
    transition: opacity .55s .32s, transform .55s .32s;
}
.slide-price-tag {
    display: flex; align-items: baseline; gap: 8px;
    margin-bottom: 24px;
    opacity: 0; transform: translateY(18px);
    transition: opacity .5s .42s, transform .5s .42s;
}
.slide-price-from { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 300; }
.slide-price-amt { font-size: 30px; font-weight: 800; color: #c9a227; line-height: 1; }
.slide-price-pp { font-size: 11px; color: rgba(255,255,255,.5); align-self: flex-end; margin-bottom: 3px; }
.slide-btns {
    display: flex; gap: 12px; flex-wrap: wrap;
    opacity: 0; transform: translateY(18px);
    transition: opacity .5s .5s, transform .5s .5s;
}
.slide-btn-gold {
    background: #c9a227; color: #0d1b4b;
    padding: 12px 26px; border-radius: 8px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    transition: background .2s, transform .15s;
    display: inline-flex; align-items: center; gap: 6px;
}
.slide-btn-gold:hover { background: #b8911e; transform: translateY(-1px); }
.slide-btn-ghost {
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.35);
    color: #fff; padding: 12px 26px; border-radius: 8px;
    font-size: 13px; font-weight: 600; text-decoration: none;
    transition: all .2s;
    display: inline-flex; align-items: center; gap: 6px;
}
.slide-btn-ghost:hover { background: rgba(255,255,255,.2); }
/* Animate in when active */
.slide.active .slide-tag,
.slide.active .slide-h1,
.slide.active .slide-desc,
.slide.active .slide-price-tag,
.slide.active .slide-btns { opacity: 1; transform: translateY(0); }

/* Stats bubbles */
.slide-stats {
    position: absolute; bottom: 28px; right: 32px;
    z-index: 3; display: flex; gap: 12px;
}
.stat-bubble {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    padding: 10px 18px; text-align: center; color: #fff;
}
.stat-bubble-num { font-size: 20px; font-weight: 800; color: #c9a227; line-height: 1; }
.stat-bubble-lbl { font-size: 10px; color: rgba(255,255,255,.7); margin-top: 2px; letter-spacing: .5px; }

/* Slider arrows */
.slider-arrow {
    position: absolute; top: 50%; z-index: 10;
    transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .2s; user-select: none;
}
.slider-arrow:hover { background: rgba(201,162,39,.5); border-color: #c9a227; }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* Dot indicators */
.slider-dots {
    position: absolute; bottom: 22px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer; transition: all .3s; border: none; padding: 0;
}
.dot.active { background: #c9a227; width: 26px; border-radius: 4px; }

/* Progress bar */
.slider-progress {
    position: absolute; bottom: 0; left: 0;
    height: 3px; background: #c9a227;
    z-index: 10; transition: width .1s linear;
    box-shadow: 0 0 10px rgba(201,162,39,.6);
}

/* No-packages placeholder for slider */
.slider-empty {
    height: 520px; background: linear-gradient(135deg, #0d1b4b 0%, #1a3a7a 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 16px;
}
.slider-empty h2 { color: #fff; font-size: 28px; font-weight: 800; }
.slider-empty p { color: rgba(255,255,255,.7); font-size: 14px; }

/* ── Section Shared ── */
.section { padding: 50px 40px 30px; }
.section-header {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px; gap: 16px;
}
.eyebrow {
    font-size: 10px; font-weight: 700; color: #c9a227;
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 5px;
    display: flex; align-items: center; gap: 6px;
}
.eyebrow::before {
    content: ''; display: inline-block;
    width: 20px; height: 2px; background: #c9a227;
}
.section-h2 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; color: #0d1b4b; }
.section-h2 span { color: #c9a227; }
.view-all {
    font-size: 12px; font-weight: 700; color: #0d1b4b;
    text-decoration: none; border-bottom: 2px solid #c9a227;
    padding-bottom: 2px; white-space: nowrap; transition: color .2s;
}
.view-all:hover { color: #c9a227; }

/* ── Filter Tabs ── */
.filter-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.tab {
    padding: 6px 16px; border-radius: 22px;
    font-size: 12px; font-weight: 600;
    background: #fff; border: 1.5px solid #dde0f0;
    color: #666; cursor: pointer; transition: all .2s; white-space: nowrap;
}
.tab:hover { border-color: #0d1b4b; color: #0d1b4b; }
.tab.active { background: #0d1b4b; color: #fff; border-color: #0d1b4b; }

/* ── Package Cards ── */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-bottom: 40px;
}
.pkg-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    border: 1.5px solid #eef0f8;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer; text-decoration: none; display: block;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(13,27,75,.12); }
.pkg-card-img { height: 170px; position: relative; overflow: hidden; }
.pkg-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease; display: block;
}
.pkg-card:hover .pkg-card-img img { transform: scale(1.07); }
.pkg-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(255,255,255,.93); color: #0d1b4b;
    font-size: 10px; font-weight: 800; padding: 4px 10px;
    border-radius: 22px; letter-spacing: .5px;
    display: flex; align-items: center; gap: 4px;
}
.pkg-body { padding: 16px 18px 18px; }
.pkg-dest { font-size: 16px; font-weight: 700; color: #0d1b4b; margin-bottom: 4px; }
.pkg-rating {
    font-size: 12px; color: #f59e0b;
    margin-bottom: 10px; display: flex; align-items: center; gap: 4px;
}
.pkg-rating span { color: #888; font-size: 11px; }
.pkg-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 10px; border-top: 1px solid #f0f2f8;
}
.pkg-nights { font-size: 11px; color: #999; }
.pkg-price { text-align: right; font-size: 18px; font-weight: 800; color: #c9a227; line-height: 1; }
.pkg-price small { display: block; font-size: 10px; color: #aaa; font-weight: 400; }

/* No packages empty state */
.packages-empty {
    grid-column: 1/-1;
    text-align: center; padding: 60px 20px;
    color: #aaa;
}
.packages-empty p { font-size: 14px; margin-top: 8px; }

/* ── Pagination ── */
.pagination-wrap {
    display: flex; align-items: center;
    justify-content: center; gap: 8px;
    padding: 16px 0 40px; flex-wrap: wrap;
}
.page-btn {
    padding: 8px 16px; border-radius: 8px;
    font-size: 13px; font-weight: 600;
    border: 1.5px solid #dde0f0; background: #fff;
    color: #555; text-decoration: none;
    transition: all .2s; cursor: pointer;
}
.page-btn:hover { border-color: #0d1b4b; color: #0d1b4b; }
.page-btn.active { background: #0d1b4b; color: #fff; border-color: #0d1b4b; }
.page-btn.disabled { opacity: .4; pointer-events: none; }

/* ── CTA Banner ── */
.cta-banner {
    margin: 0 40px 50px;
    background: #0d1b4b; border-radius: 16px;
    padding: 36px 40px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 24px;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute;
    right: -40px; top: -40px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(201,162,39,.1); pointer-events: none;
}
.cta-text { position: relative; z-index: 1; }
.cta-text h3 {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 800; color: #fff; margin-bottom: 6px;
}
.cta-text p { font-size: 13px; color: #6677aa; max-width: 480px; }
.cta-btns {
    display: flex; gap: 12px; flex-shrink: 0;
    position: relative; z-index: 1; flex-wrap: wrap;
}
.btn-cta-outline {
    background: rgba(201,162,39,.12);
    border: 1.5px solid rgba(201,162,39,.4);
    color: #c9a227; padding: 12px 22px; border-radius: 8px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    cursor: pointer; transition: all .2s; white-space: nowrap;
}
.btn-cta-outline:hover { background: rgba(201,162,39,.2); }
.btn-cta-fill {
    background: #c9a227; color: #0d1b4b;
    padding: 12px 22px; border-radius: 8px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    cursor: pointer; transition: background .2s, transform .15s; white-space: nowrap;
}
.btn-cta-fill:hover { background: #b8911e; transform: translateY(-1px); }

/* ── Trust Strip ── */
.trust-strip {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; padding: 0 40px 50px;
}
.trust-item {
    background: #f4f6ff; border-radius: 12px;
    padding: 24px 16px; text-align: center;
    border: 1.5px solid #eef0f8;
    transition: transform .2s, box-shadow .2s;
}
.trust-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(13,27,75,.08); }
.trust-icon { font-size: 28px; margin-bottom: 10px; color: #c9a227; }
.trust-num { font-size: 24px; font-weight: 800; color: #0d1b4b; margin-bottom: 4px; }
.trust-lbl { font-size: 11px; color: #888; }

/* ── Destination Tiles ── */
.dest-row {
    padding: 0 40px 50px;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.dest-tile {
    border-radius: 12px; overflow: hidden;
    aspect-ratio: 3/4;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 16px; position: relative; cursor: pointer;
    transition: transform .25s; text-decoration: none;
}
.dest-tile:hover { transform: scale(1.03); }
.dest-tile img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.dest-tile:hover img { transform: scale(1.08); }
.dest-tile::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,75,.85) 30%, transparent 70%);
    z-index: 1;
}
.dest-tile-name {
    font-size: 14px; font-weight: 700; color: #fff;
    position: relative; z-index: 2;
}
.dest-tile-count {
    font-size: 10px; color: #c9a227; font-weight: 600;
    position: relative; z-index: 2; margin-top: 2px;
}

/* ── Testimonials ── */
.testimonials { padding: 0 40px 50px; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 24px;
}
.testimonial-card {
    background: #fff; border-radius: 14px;
    border: 1.5px solid #eef0f8; padding: 24px;
}
.testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.testimonial-text {
    font-size: 13px; color: #555; line-height: 1.7;
    margin-bottom: 16px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: #0d1b4b;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #c9a227; font-weight: 700; flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 700; color: #0d1b4b; }
.testimonial-trip { font-size: 11px; color: #aaa; }

/* ── Package Detail Page ── */
.pkg-detail { padding: 40px 40px 20px; }
.pkg-detail-banner {
    position: relative; border-radius: 16px; overflow: hidden;
    height: 380px; margin-bottom: 32px;
}
.pkg-detail-banner img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.pkg-detail-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,15,45,.75) 30%, transparent 70%);
}
.pkg-detail-banner-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px 36px; z-index: 2;
}
.pkg-detail-title { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.pkg-detail-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.pkg-detail-meta-item {
    font-size: 12px; color: rgba(255,255,255,.75);
    display: flex; align-items: center; gap: 5px;
}
.pkg-detail-layout {
    display: grid; grid-template-columns: 1fr 340px; gap: 32px;
    align-items: start;
}
.pkg-detail-body { }
.pkg-section { margin-bottom: 32px; }
.pkg-section-title {
    font-size: 16px; font-weight: 800; color: #0d1b4b;
    margin-bottom: 12px; padding-bottom: 8px;
    border-bottom: 2px solid #f0f2f8;
}
.pkg-section p { font-size: 13px; color: #555; line-height: 1.8; }
.pkg-inclusions-list, .pkg-exclusions-list {
    list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.pkg-inclusions-list li, .pkg-exclusions-list li {
    font-size: 13px; color: #444; display: flex; align-items: flex-start; gap: 8px;
}
/* icons now rendered via <i class="fa-solid fa-check/fa-xmark"> tags in the view */
.pkg-inclusions-list li { gap: 8px; }
.pkg-exclusions-list li { gap: 8px; }
.itinerary-item { border: 1px solid #eef0f8; border-radius: 10px; overflow: hidden; margin-bottom: 8px; }
.itinerary-header {
    background: #f4f6ff; padding: 12px 16px;
    display: flex; align-items: center; gap: 12px; cursor: pointer;
}
.itinerary-day {
    background: #0d1b4b; color: #c9a227;
    font-size: 10px; font-weight: 800;
    padding: 3px 10px; border-radius: 22px; white-space: nowrap;
}
.itinerary-title { font-size: 13px; font-weight: 700; color: #0d1b4b; }
.itinerary-body { padding: 12px 16px; font-size: 13px; color: #555; line-height: 1.7; }

/* Booking sidebar */
.booking-card {
    background: #fff; border-radius: 16px;
    border: 2px solid #eef0f8;
    padding: 28px; position: sticky; top: 84px;
    box-shadow: 0 8px 32px rgba(13,27,75,.08);
}
.booking-card-price { font-size: 32px; font-weight: 800; color: #c9a227; line-height: 1; }
.booking-card-price span { font-size: 12px; color: #aaa; font-weight: 400; }
.booking-card-duration { font-size: 12px; color: #888; margin: 4px 0 20px; }
.booking-card .btn-book {
    width: 100%; padding: 14px;
    background: #c9a227; color: #0d1b4b;
    border: none; border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px; font-weight: 700;
    cursor: pointer; transition: background .2s;
    text-decoration: none; display: block; text-align: center;
    margin-bottom: 10px;
}
.booking-card .btn-book:hover { background: #b8911e; }
.booking-card .btn-enquire {
    width: 100%; padding: 13px;
    background: transparent; color: #0d1b4b;
    border: 1.5px solid #0d1b4b; border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all .2s;
    text-decoration: none; display: block; text-align: center;
}
.booking-card .btn-enquire:hover { background: #0d1b4b; color: #fff; }
.booking-card-divider { border: none; border-top: 1px solid #f0f2f8; margin: 20px 0; }
.booking-card-features { display: flex; flex-direction: column; gap: 10px; }
.booking-card-feature {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: #555;
}
.booking-card-feature span:first-child { font-size: 16px; }

/* Page header for packages listing */
.page-header {
    padding: 40px 40px 0;
    border-bottom: 1px solid #eef0f8;
    margin-bottom: 0;
}
.page-header h1 { font-size: 28px; font-weight: 800; color: #0d1b4b; margin-bottom: 6px; }
.page-header p { font-size: 13px; color: #888; }
.packages-filter-bar {
    padding: 20px 40px; background: #f4f6ff;
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    border-bottom: 1px solid #eef0f8;
}
.packages-count { font-size: 12px; color: #888; margin-left: auto; }

/* ── Footer ── */
.footer { background: #0a133a; padding: 40px 40px 20px; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 32px; margin-bottom: 36px;
}
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-name span { color: #c9a227; }
.footer-brand .logo-sub { color: #3a4f7a; }
.footer-tagline { font-size: 12px; color: #4a5f8a; line-height: 1.8; margin: 14px 0 18px; }
.footer-socials { display: flex; gap: 10px; }
.soc-btn {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; cursor: pointer;
    transition: background .2s; text-decoration: none;
}
.soc-btn:hover { background: rgba(201,162,39,.2); }
.footer-col h4 {
    font-size: 12px; font-weight: 700; color: #fff;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 12px; color: #4a5f8a; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #c9a227; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-text { font-size: 12px; color: #4a5f8a; line-height: 1.5; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07); padding-top: 18px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 11px; color: #2a3a5a; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 11px; color: #2a3a5a; text-decoration: none; }
.footer-bottom-links a:hover { color: #c9a227; }

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25d366;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; cursor: pointer;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 999; text-decoration: none; transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ── Inquiry Form Page ── */
.inquiry-page { padding: 30px 40px 50px; }
.inquiry-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}
.inquiry-success {
    background: #dcfce7; border: 1px solid #86efac;
    border-radius: 10px; padding: 16px 20px;
    font-size: 14px; font-weight: 600; color: #16a34a;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 24px;
}
.inquiry-success i { font-size: 20px; }
.inquiry-form-card {
    background: #fff; border: 1.5px solid #eef0f8;
    border-radius: 16px; padding: 32px;
}
.inquiry-form-header { margin-bottom: 24px; }
.inquiry-form-header h2 { font-size: 20px; font-weight: 800; color: #0d1b4b; margin-bottom: 4px; }
.inquiry-form-header p { font-size: 12px; color: #aaa; }
.pkg-context-badge {
    background: #f0f4ff; border: 1px solid #c7d2fe;
    border-radius: 8px; padding: 10px 14px;
    font-size: 12px; color: #0d1b4b;
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 20px;
}
.pkg-context-badge i { color: #c9a227; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; position: relative; }
.form-group-full { grid-column: 1 / -1; }
.form-label-row { display: flex; align-items: center; gap: 3px; }
.form-label { font-size: 12px; font-weight: 700; color: #0d1b4b; letter-spacing: .3px; }
.req-star { color: #ef4444; font-size: 13px; line-height: 1; }
.form-control {
    border: 1.5px solid #dde0f0; border-radius: 8px;
    padding: 10px 14px; font-family: 'Poppins', sans-serif;
    font-size: 13px; color: #0d1b4b; background: #fff;
    outline: none; transition: border-color .2s, box-shadow .2s;
    width: 100%;
}
.form-control:focus { border-color: #0d1b4b; box-shadow: 0 0 0 3px rgba(13,27,75,.08); }
.form-control::placeholder { color: #bbb; font-weight: 400; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-error { font-size: 11px; color: #ef4444; margin-top: 2px; }
.form-control.input-validation-error { border-color: #ef4444; }
.btn-request-quote {
    background: #c9a227; color: #0d1b4b;
    border: none; border-radius: 10px;
    padding: 14px 32px; font-family: 'Poppins', sans-serif;
    font-size: 14px; font-weight: 700;
    cursor: pointer; transition: background .2s, transform .15s;
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 8px;
}
.btn-request-quote:hover { background: #b8911e; transform: translateY(-1px); }

/* Inquiry sidebar */
.inquiry-sidebar { display: flex; flex-direction: column; gap: 20px; }
.inquiry-contact-card, .inquiry-why-card {
    background: #0d1b4b; border-radius: 14px; padding: 24px;
}
.inquiry-contact-title {
    font-size: 15px; font-weight: 800; color: #fff;
    display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.inquiry-contact-title i { color: #c9a227; }
.inquiry-contact-btn {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.15);
    color: #fff; border-radius: 8px; padding: 10px 14px;
    font-size: 12px; font-weight: 600; text-decoration: none;
    transition: background .2s;
}
.inquiry-contact-btn:hover { background: rgba(255,255,255,.2); }
.inquiry-contact-btn i { color: #c9a227; font-size: 14px; }
.inquiry-contact-btn-ghost { background: transparent; }
.inquiry-contact-btn-whatsapp { background: #25d366; border-color: #25d366; }
.inquiry-contact-btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; }
.inquiry-contact-btn-whatsapp i { color: #fff; }
.inquiry-why-card { background: #f4f6ff; border: 1.5px solid #eef0f8; }
.inquiry-why-card .inquiry-contact-title { color: #0d1b4b; }
.inquiry-why-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.inquiry-why-list li { font-size: 13px; color: #444; display: flex; align-items: center; gap: 8px; }
.inquiry-why-list li i { color: #22c55e; font-size: 14px; }

/* Responsive adjustments for inquiry page */
@media (max-width: 1100px) {
    .inquiry-page { padding: 24px 24px 40px; }
    .inquiry-layout { grid-template-columns: 1fr 280px; }
}
@media (max-width: 900px) {
    .inquiry-layout { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .inquiry-page { padding: 18px 18px 32px; }
    .inquiry-form-card { padding: 20px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ── Breadcrumb ── */
.breadcrumb-wrap { padding: 10px 40px; background: #f4f6ff; border-bottom: 1px solid #eef0f8; }
.breadcrumb { display: flex; gap: 6px; font-size: 12px; color: #aaa; list-style: none; flex-wrap: wrap; }
.breadcrumb li + li::before { content: '/'; margin-right: 6px; }
.breadcrumb a { color: #0d1b4b; text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: #c9a227; }
.breadcrumb li:last-child { color: #c9a227; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .topbar { padding: 7px 24px; }
    .navbar { padding: 0 24px; }
    .slide { height: 420px; }
    .slide-content { width: 65%; padding: 0 36px; }
    .section { padding: 36px 24px 20px; }
    .cta-banner { margin: 0 24px 36px; padding: 28px; }
    .trust-strip { padding: 0 24px 36px; }
    .dest-row { padding: 0 24px 36px; grid-template-columns: repeat(3, 1fr); }
    .testimonials { padding: 0 24px 36px; }
    .footer { padding: 32px 24px 16px; }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stat-bubble { padding: 8px 14px; }
    .pkg-detail { padding: 30px 24px 20px; }
    .pkg-detail-layout { grid-template-columns: 1fr; }
    .booking-card { position: static; }
    .page-header { padding: 30px 24px 0; }
    .packages-filter-bar { padding: 16px 24px; }
    .breadcrumb-wrap { padding: 10px 24px; }
}
@media (max-width: 767px) {
    .topbar { display: none; }
    .navbar { padding: 0 18px; min-height: 56px; }
    .nav-links { display: none; }
    .nav-enquire { display: none; }
    .hamburger { display: flex; }
    .slide { height: 380px; }
    .slide-content { width: 100%; padding: 0 20px; justify-content: flex-end; padding-bottom: 80px; }
    .slide-overlay { background: linear-gradient(to top, rgba(8,15,45,.85) 40%, rgba(8,15,45,.3) 100%); }
    .slide-h1 { font-size: 26px; }
    .slide-desc { display: none; }
    .slide-stats { display: none; }
    .slider-arrow { width: 36px; height: 36px; font-size: 16px; }
    .section { padding: 28px 18px 16px; }
    .packages-grid { grid-template-columns: 1fr; }
    .pkg-card-img { height: 160px; }
    .cta-banner { flex-direction: column; margin: 0 18px 32px; padding: 24px 22px; text-align: center; }
    .cta-btns { justify-content: center; }
    .trust-strip { grid-template-columns: repeat(2, 1fr); padding: 0 18px 32px; }
    .dest-row { grid-template-columns: repeat(2, 1fr); padding: 0 18px 32px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials { padding: 0 18px 32px; }
    .footer { padding: 28px 18px 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    .whatsapp-float { bottom: 18px; right: 18px; width: 48px; height: 48px; font-size: 22px; }
    .pkg-detail { padding: 20px 18px 16px; }
    .pkg-detail-banner { height: 240px; }
    .pkg-detail-title { font-size: 22px; }
    .page-header { padding: 20px 18px 0; }
    .packages-filter-bar { padding: 12px 18px; }
    .breadcrumb-wrap { padding: 8px 18px; }
}
@media (max-width: 420px) {
    .dest-row { grid-template-columns: 1fr 1fr; }
    .trust-strip { grid-template-columns: 1fr 1fr; gap: 10px; }
    .filter-tabs { gap: 6px; }
    .tab { font-size: 11px; padding: 5px 12px; }
    .slide { height: 320px; }
    .slider-empty { height: 320px; }
}
