/* =====================================================================
   Sarthi Tour - Main Stylesheet
   Theme: Royal Blue + Saffron/Orange + Turquoise
   ===================================================================== */

:root {
    --blue-900: #0f2a6b;
    --blue-800: #163a8a;
    --blue-700: #1e3a8a;
    --blue-600: #2451c7;
    --blue-500: #3b6fe0;
    --saffron: #ff7a18;
    --saffron-light: #ff9a4d;
    --orange-600: #f2620f;
    --turquoise: #11c5b8;
    --turquoise-dark: #0ea89c;
    --green-accent: #1bc47d;
    --ink: #14213d;
    --muted: #5b6478;
    --line: #e7ebf3;
    --bg: #ffffff;
    --bg-soft: #f5f8ff;
    --sky-1: #eaf3ff;
    --sky-2: #f4fbff;
    --white: #ffffff;
    --shadow-sm: 0 4px 14px rgba(20, 33, 61, .08);
    --shadow-md: 0 12px 30px rgba(20, 33, 61, .12);
    --shadow-lg: 0 24px 60px rgba(20, 33, 61, .18);
    --radius: 16px;
    --radius-lg: 24px;
    --grad-primary: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    --grad-warm: linear-gradient(135deg, var(--saffron), var(--orange-600));
    --grad-cool: linear-gradient(135deg, var(--turquoise), var(--blue-500));
    --grad-sky: linear-gradient(180deg, var(--sky-1), #ffffff);
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; color: var(--ink); font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 50px; font-weight: 600;
    font-family: var(--font-head); font-size: .95rem; cursor: pointer;
    border: none; transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--grad-primary); color: #fff; box-shadow: 0 10px 24px rgba(36, 81, 199, .35); }
.btn-primary:hover { box-shadow: 0 16px 32px rgba(36, 81, 199, .45); }
.btn-warm { background: var(--grad-warm); color: #fff; box-shadow: 0 10px 24px rgba(242, 98, 15, .35); }
.btn-warm:hover { box-shadow: 0 16px 32px rgba(242, 98, 15, .45); }
.btn-cool { background: var(--grad-cool); color: #fff; box-shadow: 0 10px 24px rgba(17, 197, 184, .35); }
.btn-outline { background: transparent; border: 2px solid var(--blue-600); color: var(--blue-700); }
.btn-outline:hover { background: var(--blue-700); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.28); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }

/* ---------- Top bar ---------- */
.topbar { background: var(--blue-900); color: #cfe0ff; font-size: .85rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar a { color: #cfe0ff; margin-right: 18px; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-right a { margin-right: 14px; }

/* ---------- Navbar ---------- */
.navbar {
    position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
    transition: box-shadow .3s, padding .3s, background .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); }
.brand-logo img { height: 42px; width: auto; display: block; }
@media (max-width: 520px) { .brand-logo img { height: 34px; } }
.brand-footer-logo { display: inline-block; background: #fff; padding: 12px 18px; border-radius: 14px; box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.brand-footer-logo img { height: 40px; width: auto; display: block; }
.brand-icon {
    width: 44px; height: 44px; border-radius: 12px; background: var(--grad-primary);
    color: #fff; display: grid; place-items: center; font-size: 1.2rem;
    box-shadow: 0 8px 18px rgba(36,81,199,.4);
}
.brand-text { font-size: 1.35rem; font-weight: 800; color: var(--blue-800); }
.brand-text span { color: var(--saffron); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
    padding: 9px 14px; border-radius: 10px; font-weight: 600; font-size: .95rem;
    color: var(--ink); transition: color .2s, background .2s; position: relative;
}
.nav-links a:not(.btn-nav-cta):hover, .nav-links a.active:not(.btn-nav-cta) { color: var(--blue-600); }
.nav-links a:not(.btn-nav-cta)::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
    background: var(--grad-warm); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav-links a:not(.btn-nav-cta):hover::after, .nav-links a.active:not(.btn-nav-cta)::after { transform: scaleX(1); }
.btn-nav-cta {
    background: var(--grad-warm); color: #fff !important; padding: 10px 20px !important;
    border-radius: 50px; margin-left: 8px; box-shadow: 0 8px 18px rgba(242,98,15,.35);
}
.btn-nav-cta:hover { transform: translateY(-2px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--blue-800); border-radius: 3px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Flash messages ---------- */
.flash-stack { margin-top: 16px; }
.flash { padding: 14px 18px; border-radius: 12px; margin-bottom: 10px; font-weight: 500; border-left: 4px solid; }
.flash-success { background: #e7faf0; color: #0c7a45; border-color: var(--green-accent); }
.flash-error { background: #fdeaea; color: #b42318; border-color: #e5484d; }
.flash-info { background: #eaf2ff; color: #1d4ed8; border-color: var(--blue-500); }

/* ---------- Section headers ---------- */
.section { padding: 52px 0; }
.section-soft { background: var(--grad-sky); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 34px; }
.section-eyebrow {
    display: inline-block; font-family: var(--font-head); font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; font-size: .78rem; color: var(--saffron); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; }
.section-title span { color: var(--blue-600); }
.section-subtitle { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
    position: relative; min-height: 92vh; display: flex; align-items: center;
    background: linear-gradient(120deg, #0b1e52 0%, #163a8a 45%, #2451c7 100%);
    overflow: hidden; color: #fff; padding: 80px 0 120px;
}
.hero::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,122,24,.20), transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(17,197,184,.20), transparent 45%),
        linear-gradient(115deg, rgba(8,20,55,.92) 0%, rgba(16,40,100,.68) 42%, rgba(20,55,150,.40) 100%),
        url('../images/hero-travel.jpg') center center / cover no-repeat;
    animation: heroZoom 26s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero-inner { position: relative; z-index: 3; max-width: 760px; }
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; color: #fff; letter-spacing: -1px; }
.hero h1 .accent { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.15rem; color: #d6e2ff; margin: 22px 0 32px; max-width: 600px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25); padding: 8px 16px; border-radius: 50px;
    font-size: .85rem; margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero-badge i { color: var(--saffron-light); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Animated clouds */
.cloud { position: absolute; background: rgba(255,255,255,.85); border-radius: 100px; filter: blur(2px); opacity: .6; z-index: 1; }
.cloud::before, .cloud::after { content: ''; position: absolute; background: inherit; border-radius: 50%; }
.cloud1 { width: 120px; height: 38px; top: 18%; left: -160px; animation: drift 38s linear infinite; }
.cloud2 { width: 90px; height: 30px; top: 35%; left: -120px; animation: drift 50s linear infinite; animation-delay: 8s; }
.cloud3 { width: 150px; height: 46px; top: 60%; left: -200px; animation: drift 44s linear infinite; animation-delay: 4s; opacity:.45;}
.cloud::before { width: 55%; height: 160%; top: -55%; left: 12%; }
.cloud::after { width: 45%; height: 150%; top: -45%; right: 14%; }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(120vw); } }

/* Flying travel icons */
.fly-icon { position: absolute; color: rgba(255,255,255,.9); z-index: 2; }
.fly-plane { top: 22%; right: 8%; font-size: 2.4rem; animation: floaty 6s ease-in-out infinite; }
.fly-bus   { bottom: 18%; right: 14%; font-size: 2rem; color: var(--saffron-light); animation: floaty 5s ease-in-out infinite .6s; }
.fly-car   { bottom: 30%; right: 3%; font-size: 1.8rem; color: var(--turquoise); animation: floaty 7s ease-in-out infinite 1.2s; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(4deg); } }

/* Wave divider */
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 3; line-height: 0; }
.hero-wave svg { width: 100%; height: 90px; display: block; }

/* ---------- Search box ---------- */
.search-box {
    position: relative; z-index: 5; margin-top: -70px;
}
.search-card {
    background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    padding: 26px; display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 16px; align-items: end;
}
.search-field { display: flex; flex-direction: column; gap: 6px; }
.search-field label { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.search-field select, .search-field input {
    padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; font-family: var(--font-body);
    font-size: .95rem; color: var(--ink); background: var(--bg-soft); transition: border .2s, box-shadow .2s;
}
.search-field select:focus, .search-field input:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,111,224,.15); }
.search-card .btn { height: 48px; }

/* =====================================================================
   STATS / COUNTERS
   ===================================================================== */
.stats { background: var(--grad-primary); color: #fff; padding: 54px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item i { font-size: 2rem; color: var(--saffron-light); margin-bottom: 10px; }
.stat-number { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; line-height: 1; }
.stat-label { color: #cfe0ff; margin-top: 8px; font-size: .95rem; }

/* =====================================================================
   CARDS - Packages
   ===================================================================== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.pkg-card {
    background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease; display: flex; flex-direction: column;
    border: 1px solid var(--line);
}
.pkg-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.pkg-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pkg-card:hover .pkg-media img { transform: scale(1.1); }
.pkg-cat {
    position: absolute; top: 14px; left: 14px; background: var(--grad-warm); color: #fff;
    padding: 6px 14px; border-radius: 50px; font-size: .75rem; font-weight: 700;
}
.pkg-fav {
    position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--saffron);
}
.pkg-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.pkg-meta { display: flex; gap: 14px; color: var(--muted); font-size: .82rem; margin-bottom: 10px; flex-wrap: wrap; }
.pkg-meta i { color: var(--turquoise-dark); }
.pkg-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.pkg-title a:hover { color: var(--blue-600); }
.pkg-desc { color: var(--muted); font-size: .9rem; margin-bottom: 16px; flex: 1; }
.pkg-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px dashed var(--line); padding-top: 14px; }
.pkg-price .now { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--blue-700); }
.pkg-price .was { font-size: .85rem; color: var(--muted); text-decoration: line-through; margin-left: 6px; }
.pkg-price .unit { display: block; font-size: .72rem; color: var(--muted); }
.rating { color: var(--saffron); font-size: .85rem; }

/* =====================================================================
   Destinations
   ===================================================================== */
.dest-card {
    position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4;
    box-shadow: var(--shadow-sm); transition: transform .35s, box-shadow .35s;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.dest-card:hover img { transform: scale(1.12); }
.dest-overlay {
    position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(11,30,82,.85));
    display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; color: #fff;
}
.dest-overlay h3 { color: #fff; font-size: 1.3rem; }
.dest-overlay p { font-size: .85rem; color: #d6e2ff; opacity: 0; max-height: 0; transition: .35s; }
.dest-card:hover .dest-overlay p { opacity: 1; max-height: 80px; margin-top: 6px; }
.dest-tag { display: inline-block; align-self: flex-start; background: var(--grad-cool); padding: 4px 12px; border-radius: 50px; font-size: .72rem; font-weight: 700; margin-bottom: 8px; }

/* =====================================================================
   Category chips
   ===================================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 20px;
    text-align: center; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.cat-icon {
    width: 66px; height: 66px; margin: 0 auto 16px; border-radius: 20px; display: grid; place-items: center;
    font-size: 1.6rem; color: #fff; background: var(--grad-cool); transition: transform .4s;
}
.cat-card:nth-child(4n+1) .cat-icon { background: var(--grad-primary); }
.cat-card:nth-child(4n+2) .cat-icon { background: var(--grad-warm); }
.cat-card:nth-child(4n+3) .cat-icon { background: var(--grad-cool); }
.cat-card:nth-child(4n) .cat-icon { background: linear-gradient(135deg, var(--green-accent), var(--turquoise)); }
.cat-card:hover .cat-icon { transform: rotate(-8deg) scale(1.08); }
.cat-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cat-card p { color: var(--muted); font-size: .82rem; }

/* =====================================================================
   Why choose / features
   ===================================================================== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feat-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .3s, box-shadow .3s; }
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feat-icon { width: 58px; height: 58px; border-radius: 16px; background: var(--sky-1); color: var(--blue-600); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 18px; }
.feat-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feat-card p { color: var(--muted); font-size: .92rem; }

/* =====================================================================
   Testimonials
   ===================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; display: flex; flex-direction: column; }
.testi-card .quote { position: absolute; top: 18px; right: 24px; font-size: 2.6rem; color: var(--sky-1); }
.testi-stars { color: var(--saffron); margin-bottom: 14px; }
.testi-msg { color: var(--muted); font-style: italic; margin-bottom: 10px; }
/* Clamp long testimonials to 6 lines until the user expands them. */
.testi-msg.clamp { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.testi-msg.expanded { -webkit-line-clamp: unset; overflow: visible; }
.testi-toggle { align-self: flex-start; background: none; border: 0; padding: 0; margin: 0 0 18px; cursor: pointer; font: inherit; font-size: .86rem; font-weight: 700; color: var(--blue-500, #2451c7); display: inline-flex; align-items: center; gap: 6px; }
.testi-toggle:hover { text-decoration: underline; }
.testi-toggle::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: .7rem; transition: transform .25s; }
.testi-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--grad-primary); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); }
.testi-author h4 { font-size: 1rem; }
.testi-author span { color: var(--muted); font-size: .82rem; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; overflow: hidden; }
.faq-q { padding: 18px 22px; font-weight: 600; font-family: var(--font-head); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q i { transition: transform .3s; color: var(--blue-600); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--muted); }
.faq-a p { padding: 0 22px 18px; }
.faq-item.open .faq-a { max-height: 260px; }

/* =====================================================================
   CTA band
   ===================================================================== */
.cta-band {
    background: linear-gradient(120deg, var(--blue-800), var(--blue-600));
    border-radius: var(--radius-lg); padding: 50px; color: #fff; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band::after { content: '\f072'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: -10px; top: -20px; font-size: 9rem; opacity: .08; }
.cta-band h2 { color: #fff; font-size: 1.9rem; }
.cta-band p { color: #d6e2ff; margin-top: 8px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =====================================================================
   Page hero (inner pages)
   ===================================================================== */
.page-hero {
    background: linear-gradient(120deg, #0b1e52, #2451c7); color: #fff; padding: 70px 0 80px;
    position: relative; overflow: hidden; text-align: center;
}
.page-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 80% 10%, rgba(255,122,24,.25), transparent 40%); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; position: relative; }
.breadcrumb { position: relative; margin-top: 12px; color: #cfe0ff; font-size: .9rem; }
.breadcrumb a:hover { color: #fff; }

/* =====================================================================
   Filter / sidebar
   ===================================================================== */
.layout-2col { display: grid; grid-template-columns: 290px 1fr; gap: 34px; align-items: start; }
.filter-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); position: sticky; top: 90px; }
.filter-panel h3 { font-size: 1.1rem; margin-bottom: 18px; }
.filter-group { margin-bottom: 20px; }
.filter-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; letter-spacing: .5px; }
.filter-group select, .filter-group input { width: 100%; padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--bg-soft); font-family: var(--font-body); }
.filter-group select:focus, .filter-group input:focus { outline: none; border-color: var(--blue-500); }
.result-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }
.result-bar p { color: var(--muted); }

/* =====================================================================
   Package detail
   ===================================================================== */
.detail-hero { position: relative; height: 440px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,30,82,.85)); display: flex; flex-direction: column; justify-content: flex-end; padding: 34px; color: #fff; }
.detail-hero .overlay h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 34px; margin-top: 36px; align-items: start; }
.detail-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-bottom: 26px; box-shadow: var(--shadow-sm); }
.detail-block h2 { font-size: 1.4rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.detail-block h2 i { color: var(--saffron); }
.incl-list li, .excl-list li { padding: 7px 0 7px 30px; position: relative; color: var(--muted); }
.incl-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--green-accent); }
.excl-list li::before { content: '\f00d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: #e5484d; }
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* Itinerary timeline */
.timeline { position: relative; padding-left: 38px; }
.timeline::before { content: ''; position: absolute; left: 13px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding-bottom: 26px; }
.tl-item::before { content: ''; position: absolute; left: -31px; top: 2px; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-primary); color: #fff; }
.tl-day { position: absolute; left: -31px; top: 2px; width: 26px; height: 26px; display: grid; place-items: center; color: #fff; font-size: .72rem; font-weight: 700; z-index: 2; }
.tl-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.tl-item p { color: var(--muted); font-size: .92rem; }

/* Booking / inquiry sidebar */
.booking-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 26px; position: sticky; top: 90px; }
.booking-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.booking-price .now { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--blue-700); }
.booking-price .was { text-decoration: line-through; color: var(--muted); }
.booking-card .unit { color: var(--muted); font-size: .85rem; margin-bottom: 18px; display: block; }
.share-row { display: flex; gap: 10px; margin-top: 16px; }
.share-row a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--bg-soft); color: var(--blue-700); border: 1px solid var(--line); transition: .2s; }
.share-row a:hover { background: var(--blue-700); color: #fff; }

/* Forms */
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
    font-family: var(--font-body); font-size: .95rem; background: var(--bg-soft); transition: border .2s, box-shadow .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,111,224,.15); }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.required { color: #e5484d; }

/* =====================================================================
   Gallery
   ===================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(11,30,82,.5); opacity: 0; transition: .3s; font-size: 1.5rem; }
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(11,30,82,.92); display: none; place-items: center; z-index: 5000; padding: 30px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; }
.lightbox-close { position: absolute; top: 24px; right: 30px; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; }

/* =====================================================================
   Blog
   ===================================================================== */
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-media img { transform: scale(1.08); }
.blog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-date { font-size: .8rem; color: var(--saffron); font-weight: 600; margin-bottom: 8px; }
.blog-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-body p { color: var(--muted); font-size: .9rem; flex: 1; margin-bottom: 14px; }
.read-more { color: var(--blue-600); font-weight: 600; font-size: .9rem; }
.read-more:hover { gap: 10px; }

/* =====================================================================
   Newsletter
   ===================================================================== */
.newsletter { background: var(--grad-warm); padding: 56px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; color: #fff; }
.newsletter-text h2 { color: #fff; font-size: 1.8rem; }
.newsletter-text p { color: #fff; opacity: .92; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { padding: 14px 18px; border: none; border-radius: 50px; min-width: 280px; font-family: var(--font-body); }
.newsletter-form .btn-primary { background: var(--blue-900); }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: #0b1e3f; color: #b9c6e0; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 34px; padding-bottom: 40px; }
.brand-footer .brand-text { color: #fff; }
.footer-about p { margin: 16px 0; font-size: .92rem; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .25s; }
.footer-social a:hover { background: var(--saffron); transform: translateY(-3px); }
.footer-col h4 { color: #fff; margin-bottom: 18px; font-size: 1.05rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-contact li { font-size: .92rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--saffron-light); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; }
.footer-contact i { color: var(--saffron-light); margin-top: 4px; }
.footer-policies {
    margin-top: 20px; padding-top: 18px; font-size: .85rem;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
}
.footer-policies a { position: relative; color: #b9c6e0; transition: color .2s; }
.footer-policies a:not(:last-child)::after {
    content: "·"; position: absolute; right: -10px; color: rgba(255,255,255,.3);
}
.footer-policies a:hover { color: var(--saffron-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .85rem; }
.footer-bottom .fa-heart { color: var(--saffron); }

/* =====================================================================
   Floating WhatsApp + back to top
   ===================================================================== */
.whatsapp-float {
    position: fixed; bottom: 24px; left: 24px; width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.8rem; z-index: 1500;
    box-shadow: 0 10px 26px rgba(37,211,102,.5); animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.back-to-top {
    position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%;
    background: var(--grad-primary); color: #fff; border: none; cursor: pointer; font-size: 1.1rem; z-index: 1500;
    opacity: 0; visibility: hidden; transform: translateY(20px); transition: .3s; box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* =====================================================================
   Scroll reveal
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* =====================================================================
   Misc
   ===================================================================== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state i { font-size: 3rem; color: var(--line); margin-bottom: 16px; }
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h2 { font-size: 1.4rem; margin: 30px 0 12px; color: var(--blue-800); }
.policy-content p, .policy-content li { color: var(--muted); margin-bottom: 12px; }
.policy-content ul { list-style: disc; padding-left: 22px; }
.prose p { color: var(--muted); margin-bottom: 16px; }
.prose h2, .prose h3 { margin: 26px 0 12px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: var(--sky-1); color: var(--blue-700); padding: 6px 14px; border-radius: 50px; font-size: .82rem; font-weight: 600; transition: .2s; }
.chip:hover, .chip.active { background: var(--blue-700); color: #fff; }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span { padding: 10px 16px; border-radius: 10px; border: 1px solid var(--line); font-weight: 600; }
.pagination a:hover { background: var(--blue-700); color: #fff; }
.pagination .current { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.about-img img { width: 100%; }
.about-list li { padding: 8px 0 8px 32px; position: relative; color: var(--muted); }
.about-list li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--green-accent); }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .search-card { grid-template-columns: repeat(2, 1fr); }
    .search-card .btn { grid-column: span 2; }
    .detail-grid { grid-template-columns: 1fr; }
    .booking-card, .filter-panel { position: static; }
    .layout-2col { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
        background: #fff; flex-direction: column; align-items: stretch; padding: 90px 24px 30px;
        box-shadow: -10px 0 40px rgba(0,0,0,.15); transition: right .35s ease; gap: 4px;
    }
    .nav-links.open { right: 0; }
    .nav-links a { padding: 14px; border-radius: 10px; }
    .nav-toggle { display: flex; z-index: 1100; }
    .topbar-left a:last-child { display: none; }
    .grid-3, .grid-4, .feat-grid, .testi-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .about-split, .grid-2, .two-cols { grid-template-columns: 1fr; }
    .section { padding: 40px 0; }
    .cta-band { padding: 34px; text-align: center; justify-content: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
    .grid-3, .grid-4, .feat-grid, .testi-grid, .cat-grid, .gallery-grid { grid-template-columns: 1fr; }
    .search-card { grid-template-columns: 1fr; }
    .search-card .btn { grid-column: span 1; }
    .hero { min-height: auto; padding: 60px 0 100px; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .newsletter-form input { min-width: 100%; }
    .whatsapp-float { width: 52px; height: 52px; font-size: 1.6rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-about { display: flex; flex-direction: column; align-items: center; }
    .brand-footer-logo { display: inline-block; }
    .footer-social { justify-content: center; }
    .footer-contact li { justify-content: center; text-align: left; }
    .footer-policies { justify-content: center; text-align: center; }
}

/* =====================================================================
   ✦ MODERN UI/UX ENHANCEMENT LAYER  (additive — hero left untouched)
   ===================================================================== */

/* Custom scrollbar */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue-600), var(--turquoise)); border-radius: 10px; border: 3px solid var(--bg-soft); }
::selection { background: var(--saffron); color: #fff; }

/* ---- Refined section headings with gradient underline ---- */
.section-title { position: relative; letter-spacing: -.5px; }
.section-head .section-title::after {
    content: ''; display: block; width: 70px; height: 4px; margin: 16px auto 0;
    background: var(--grad-warm); border-radius: 4px;
}
.section-eyebrow {
    background: linear-gradient(135deg, var(--saffron), var(--turquoise));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    position: relative; padding-left: 0;
}

/* ---- Buttons: shine sweep + crisper depth ---- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
    transform: translateX(-130%); transition: transform .6s ease;
}
.btn:hover::after { transform: translateX(130%); }

/* ---- Topbar subtle gradient ---- */
.topbar { background: linear-gradient(90deg, var(--blue-900), #122a73); }

/* ---- Navbar glass refinement ---- */
.navbar.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 8px 30px rgba(20,33,61,.10); }

/* =====================================================================
   ✦ Upgraded PACKAGE CARDS
   ===================================================================== */
.pkg-card { border: 1px solid #eef1f8; border-radius: 20px; position: relative; }
.pkg-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 20px; padding: 1.5px;
    background: linear-gradient(135deg, var(--blue-500), var(--turquoise), var(--saffron));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity .35s; pointer-events: none; z-index: 2;
}
.pkg-card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(36,81,199,.22); }
.pkg-card:hover::before { opacity: 1; }
.pkg-media { aspect-ratio: 16/11; }
.pkg-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(11,30,82,.35));
    opacity: 0; transition: opacity .4s;
}
.pkg-card:hover .pkg-media::after { opacity: 1; }
.pkg-cat { backdrop-filter: blur(4px); box-shadow: 0 6px 16px rgba(242,98,15,.35); letter-spacing: .3px; }
.pkg-fav { cursor: pointer; transition: transform .25s, background .25s, color .25s; box-shadow: var(--shadow-sm); }
.pkg-fav:hover { transform: scale(1.15); background: var(--saffron); color: #fff; }

/* SAVE % badge */
.pkg-save {
    position: absolute; bottom: 14px; left: 14px; z-index: 3;
    background: linear-gradient(135deg, var(--green-accent), var(--turquoise-dark));
    color: #fff; font-weight: 800; font-size: .74rem; padding: 5px 12px; border-radius: 50px;
    box-shadow: 0 8px 18px rgba(17,197,184,.4); font-family: var(--font-head);
}
.pkg-rating { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); margin-left: auto; }
.pkg-rating .stars { color: var(--saffron); }
.pkg-meta { align-items: center; }
.pkg-title a { background-image: linear-gradient(var(--blue-600), var(--blue-600)); background-size: 0% 2px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .3s; }
.pkg-card:hover .pkg-title a { background-size: 100% 2px; }
.pkg-price .now { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* =====================================================================
   ✦ Upgraded DESTINATION CARDS
   ===================================================================== */
.dest-card { border-radius: 20px; }
.dest-card::after {
    content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; bottom: 22px; right: 22px; z-index: 3;
    width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
    background: #fff; color: var(--blue-700); transform: translateY(14px) scale(.6); opacity: 0;
    transition: .35s; box-shadow: var(--shadow-md);
}
.dest-card:hover::after { transform: translateY(0) scale(1); opacity: 1; }
.dest-card:hover { box-shadow: 0 30px 60px rgba(11,30,82,.3); }
.dest-tag { box-shadow: 0 6px 16px rgba(17,197,184,.4); }

/* =====================================================================
   ✦ Upgraded CATEGORY CARDS
   ===================================================================== */
.cat-card { border-radius: 20px; position: relative; overflow: hidden; }
.cat-card::before {
    content: ''; position: absolute; top: -40px; right: -40px; width: 120px; height: 120px;
    border-radius: 50%; background: var(--sky-1); opacity: .6; transition: transform .5s;
}
.cat-card:hover::before { transform: scale(2.6); }
.cat-card > * { position: relative; z-index: 1; }
.cat-icon { box-shadow: 0 12px 24px rgba(36,81,199,.25); }

/* =====================================================================
   ✦ STATS — glass cards
   ===================================================================== */
.stats { position: relative; overflow: hidden; }
.stats::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255,122,24,.25), transparent 40%),
                radial-gradient(circle at 85% 80%, rgba(17,197,184,.25), transparent 40%);
}
.stats-grid { position: relative; z-index: 1; }
.stat-item {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px; padding: 26px 16px; backdrop-filter: blur(6px);
    transition: transform .35s, background .35s;
}
.stat-item:hover { transform: translateY(-6px); background: rgba(255,255,255,.16); }

/* =====================================================================
   ✦ NEW — Special Deals / Offer cards
   ===================================================================== */
.deals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.deal-card {
    position: relative; border-radius: 22px; padding: 34px 30px; color: #fff; overflow: hidden;
    min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end;
    box-shadow: var(--shadow-md); transition: transform .35s, box-shadow .35s;
}
.deal-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.deal-card::before {
    content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px;
    border-radius: 50%; background: rgba(255,255,255,.14); transition: transform .5s;
}
.deal-card::after {
    content: ''; position: absolute; bottom: -80px; left: -50px; width: 200px; height: 200px;
    border-radius: 50%; background: rgba(255,255,255,.08);
}
.deal-card:hover::before { transform: scale(1.4); }
.deal-card > * { position: relative; z-index: 1; }
.deal-warm { background: linear-gradient(140deg, #ff8a3c, #f2620f); }
.deal-cool { background: linear-gradient(140deg, #16c8bb, #0e8fb0); }
.deal-blue { background: linear-gradient(140deg, #2f5fe0, #16266e); }
.deal-icon { font-size: 1.6rem; opacity: .9; margin-bottom: auto; }
.deal-off { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; line-height: 1; }
.deal-off small { font-size: 1rem; font-weight: 600; }
.deal-card h3 { color: #fff; font-size: 1.25rem; margin: 8px 0 4px; }
.deal-card p { color: rgba(255,255,255,.9); font-size: .9rem; }
.deal-card .deal-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 700; color: #fff; font-family: var(--font-head); }
.deal-card .deal-link i { transition: transform .3s; }
.deal-card:hover .deal-link i { transform: translateX(6px); }

/* Wide offer banner */
.offer-banner {
    position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 54px 50px; color: #fff;
    background:
        linear-gradient(105deg, rgba(8,20,55,.90) 0%, rgba(20,55,150,.62) 50%, rgba(17,197,184,.40) 100%),
        url('../images/offer-bg.jpg') center center / cover no-repeat;
    display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.offer-banner h2 { color: #fff; font-size: clamp(1.6rem,3vw,2.3rem); }
.offer-banner p { color: #dceaff; margin-top: 8px; max-width: 520px; }
.offer-badge { display: inline-block; background: var(--grad-warm); padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: .8rem; margin-bottom: 14px; }

/* =====================================================================
   ✦ TESTIMONIALS polish
   ===================================================================== */
.testi-card { border-radius: 20px; transition: transform .35s, box-shadow .35s; }
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-avatar { box-shadow: 0 8px 18px rgba(36,81,199,.35); position: relative; }
.testi-avatar::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; background: conic-gradient(var(--saffron), var(--turquoise), var(--blue-500), var(--saffron)); z-index: -1; }

/* =====================================================================
   ✦ FAQ polish
   ===================================================================== */
.faq-item { border-radius: 16px; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: transparent; }
.faq-q i { width: 30px; height: 30px; border-radius: 50%; background: var(--sky-1); display: grid; place-items: center; }
.faq-item.open .faq-q i { background: var(--grad-primary); color: #fff; }

/* =====================================================================
   ✦ Trust / partners strip
   ===================================================================== */
.trust-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; opacity: .9; }
.trust-strip .trust-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 600; font-family: var(--font-head); }
.trust-strip .trust-item i { font-size: 1.5rem; color: var(--blue-600); }

/* ---- Reveal: add a gentle scale ---- */
.reveal { transform: translateY(40px) scale(.98); }
.reveal.visible { transform: translateY(0) scale(1); }

@media (max-width: 768px) {
    .deals-grid { grid-template-columns: 1fr; }
    .offer-banner { padding: 36px 28px; text-align: center; justify-content: center; }
    .trust-strip { gap: 24px; }
}

/* =====================================================================
   ✦ POLISH LAYER 2 — overflow fix, card animations, accessibility
   ===================================================================== */

/* Fix horizontal scroll / extra blank space caused by drifting hero
   clouds & vehicle icons animating across the viewport. */
/* Use overflow-x: clip (NOT hidden) so it doesn't break the sticky navbar.
   `hidden` turns the element into a scroll container and disables position: sticky. */
html, body { overflow-x: clip; }
.hero { overflow: hidden; }

/* Hotel star rating */
.hotel-stars { color: #f5a623; letter-spacing: 1px; }
.hotel-stars i { font-size: .8rem; }

/* Staggered cascade for cards inside a grid — a beautiful entrance */
.grid-3 .reveal:nth-child(1),
.cat-grid .reveal:nth-child(1) { transition-delay: 0s; }
.grid-3 .reveal:nth-child(2),
.cat-grid .reveal:nth-child(2) { transition-delay: .08s; }
.grid-3 .reveal:nth-child(3),
.cat-grid .reveal:nth-child(3) { transition-delay: .16s; }
.grid-4 .reveal:nth-child(1) { transition-delay: 0s; }
.grid-4 .reveal:nth-child(2) { transition-delay: .07s; }
.grid-4 .reveal:nth-child(3) { transition-delay: .14s; }
.grid-4 .reveal:nth-child(4) { transition-delay: .21s; }
.cat-grid .reveal:nth-child(4) { transition-delay: .24s; }

/* Floating lift + smooth shadow easing on interactive cards */
.pkg-card, .dest-card, .cat-card, .blog-card, .feat-card, .deal-card, .testi-card {
    transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease, border-color .3s ease;
    will-change: transform;
}
.feat-card:hover, .testi-card:hover { transform: translateY(-8px); }

/* Image zoom on blog cards & gallery (matches package/destination cards) */
.blog-media { overflow: hidden; }
.blog-media img { transition: transform .6s ease; }
.blog-card:hover .blog-media img { transform: scale(1.08); }
.gallery-item img { transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* Animated category icon on hover */
.cat-card .cat-icon { transition: transform .4s cubic-bezier(.34,1.56,.64,1), background .4s ease, color .4s ease; }
.cat-card:hover .cat-icon { transform: translateY(-4px) rotate(-6deg) scale(1.08); }

/* Gentle pop for the SAVE badge */
.pkg-save { animation: savePulse 2.4s ease-in-out infinite; }
@keyframes savePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* Accessible keyboard focus rings */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
    outline: 3px solid rgba(37,99,235,.5);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Tighter vertical rhythm on small screens (removes the "extra space") */
@media (max-width: 768px) {
    .section { padding: 40px 0; }
    .section-head { margin-bottom: 26px; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; }
    .cloud, .fly-icon { animation: none !important; display: none; }
}
