/* =========================================
   DevBhoomi Travels | Holidify-style CSS
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --green:     #1a9e5c;
  --green-d:   #0e7a44;
  --green-lt:  #e8f7ef;
  --orange:    #ff5722;
  --gold:      #ffc107;
  --dark:      #1a1a2e;
  --body:      #555;
  --muted:     #888;
  --border:    #e5e5e5;
  --bg:        #f7f8fa;
  --white:     #fff;
  --font:      'Poppins', sans-serif;
  --r:         8px;
  --shadow:    0 2px 16px rgba(0,0,0,.09);
  --shadow-h:  0 6px 28px rgba(0,0,0,.15);
  --t:         .25s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: #fff; overflow-x: hidden; font-size: 14px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ── SPLASH ── */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}
.splash.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #032b14 0%, #0d6e3a 35%, #1db87a 65%, #0a3d1f 100%);
}
.splash::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.06) 50%, transparent 62%);
  animation: splashShimmer 2s ease infinite;
}
@keyframes splashShimmer { from{transform:translateX(-150%)} to{transform:translateX(150%)} }

.splash-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.sr { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); animation: srPulse 3s ease-in-out infinite; }
.sr1 { width: 260px; height: 260px; animation-delay: 0s; }
.sr2 { width: 460px; height: 460px; animation-delay: .7s; }
.sr3 { width: 660px; height: 660px; animation-delay: 1.4s; }
@keyframes srPulse { 0%{transform:scale(.7);opacity:0} 50%{opacity:1} 100%{transform:scale(1.15);opacity:0} }

.splash-body { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.splash-logo-wrap { position: relative; width: 190px; height: 190px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.splash-logo { width: 165px; height: 165px; object-fit: contain; filter: invert(1) brightness(2); position: relative; z-index: 1; animation: splashPop .8s cubic-bezier(.34,1.56,.64,1) .1s both, splashFloat 3.5s ease-in-out 1s infinite; }
@keyframes splashPop { from{transform:scale(.1) rotate(-15deg);opacity:0} to{transform:scale(1) rotate(0);opacity:1} }
@keyframes splashFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.splash-glow { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.2) 0%, transparent 65%); animation: splashGlow 2s ease infinite; }
@keyframes splashGlow { 0%,100%{transform:scale(1);opacity:.5} 50%{transform:scale(1.3);opacity:1} }

.splash-brand { font-family: var(--font); font-size: 30px; font-weight: 800; color: #fff; letter-spacing: 1px; margin-bottom: 4px; animation: sUp .6s ease .5s both; }
.splash-brand span { color: var(--gold); }
.splash-tag { font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 26px; animation: sUp .6s ease .65s both; }
@keyframes sUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }
.splash-dots { display: flex; gap: 10px; animation: sUp .6s ease .8s both; }
.splash-dots i { display: block; width: 10px; height: 10px; border-radius: 50%; animation: sDot 1.2s ease-in-out infinite; font-style: normal; }
.splash-dots i:nth-child(1) { background: var(--gold); animation-delay: 0s; }
.splash-dots i:nth-child(2) { background: rgba(255,255,255,.65); animation-delay: .2s; }
.splash-dots i:nth-child(3) { background: rgba(255,255,255,.35); animation-delay: .4s; }
@keyframes sDot { 0%,100%{transform:translateY(0);opacity:.5} 50%{transform:translateY(-12px);opacity:1} }

/* ── TOPBAR ──
.topbar { background: #1a1a2e; padding: 7px 0; }
.topbar-inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,.75); font-size: 12.5px; display: flex; align-items: center; gap: 6px; transition: var(--t); }
.topbar a:hover { color: #fff; }
.topbar a i { color: var(--green); }
.tb-agent { background: rgba(26,158,92,.2); border: 1px solid rgba(26,158,92,.4); padding: 4px 12px; border-radius: 50px; color: rgba(255,255,255,.85) !important; }
.tb-agent:hover { background: var(--green) !important; color: #fff !important; }
.tb-login { background: rgba(255,255,255,.08); padding: 4px 12px; border-radius: 50px; }
.tb-login:hover { background: rgba(255,255,255,.18) !important; } */

/* ── NAVBAR ── */
.navbar { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 900; transition: box-shadow var(--t); }
.navbar.stuck { box-shadow: var(--shadow); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 24px; }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { width: 40px; height: 40px; object-fit: contain; filter: invert(38%) sepia(70%) saturate(500%) hue-rotate(110deg) brightness(.85); transition: var(--t); }
.nav-logo:hover .nav-logo-img { filter: invert(38%) sepia(70%) saturate(600%) hue-rotate(110deg) brightness(.75); }
.nl-main { display: block; font-size: 17px; font-weight: 800; color: var(--green); line-height: 1; }
.nl-sub { display: block; font-size: 10px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-links > li > a { padding: 6px 14px; border-radius: var(--r); font-size: 13.5px; font-weight: 500; color: var(--dark); display: flex; align-items: center; gap: 5px; transition: var(--t); white-space: nowrap; }
.nav-links > li > a i { font-size: 10px; color: var(--muted); transition: var(--t); }
.nav-links > li:hover > a { color: var(--green); background: var(--green-lt); }
.nav-links > li:hover > a i { transform: rotate(180deg); color: var(--green); }

/* Mega Menu */
.has-mega { position: relative; }
.mega-menu { display: none; position: absolute; top: calc(100% + 8px); left: -20px; background: #fff; border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow-h); min-width: 380px; z-index: 100; animation: megaIn .2s ease; }
@keyframes megaIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }
.has-mega:hover .mega-menu { display: block; }
.mega-inner { padding: 20px; }
.mega-inner h6 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.mega-grid a { font-size: 13px; color: var(--dark); padding: 7px 10px; border-radius: 6px; display: block; transition: var(--t); }
.mega-grid a:hover { background: var(--green-lt); color: var(--green); }

/* Nav Right */
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nr-phone { font-size: 13px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.nr-phone i { font-size: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--t); }

/* ── HERO ── */
.hero { position: relative; height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hslide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; transform: scale(1.05); transition: opacity 1.2s ease, transform 8s ease; }
.hslide.active { opacity: 1; transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.65) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; width: 100%; max-width: 860px; padding: 0 20px; }
.hero-content h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 8px; }
.hero-content > p { font-size: 15px; opacity: .85; margin-bottom: 28px; }

/* Search Box */
.hero-search { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.3); }
.hs-tabs { display: flex; background: #f0f0f0; }
.hst { flex: 1; padding: 10px; font-family: var(--font); font-size: 13px; font-weight: 600; border: none; background: transparent; cursor: pointer; color: var(--body); transition: var(--t); }
.hst.active { background: #fff; color: var(--green); border-bottom: 2px solid var(--green); }
.hst:hover { color: var(--green); }
.hs-body { padding: 16px; }
.hs-panel { display: none; }
.hs-panel.active { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
.hs-field { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 150px; }
.hs-field-big { flex: 2; }
.hs-field label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; display: flex; align-items: center; gap: 5px; }
.hs-field label i { color: var(--green); font-size: 12px; }
.hs-field input, .hs-field select { border: 1px solid var(--border); border-radius: 6px; padding: 10px 12px; font-family: var(--font); font-size: 14px; color: var(--dark); outline: none; appearance: none; transition: var(--t); background: #fafafa; }
.hs-field input:focus, .hs-field select:focus { border-color: var(--green); background: #fff; }
.hs-btn { background: var(--green); color: #fff; border: none; border-radius: 6px; padding: 12px 28px; font-family: var(--font); font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; white-space: nowrap; transition: var(--t); flex-shrink: 0; }
.hs-btn:hover { background: var(--green-d); }

/* Trust badges */
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 0; margin-top: 20px; background: rgba(0,0,0,.4); backdrop-filter: blur(8px); border-radius: 8px; padding: 12px 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 4px 20px; color: #fff; }
.trust-item i { color: var(--gold); font-size: 20px; }
.trust-item strong { display: block; font-size: 13px; font-weight: 700; }
.trust-item span { font-size: 11px; opacity: .75; }
.trust-div { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* Slide dots */
.slide-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 6px; }
.sdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: var(--t); }
.sdot.active { width: 24px; border-radius: 4px; background: #fff; }

/* ── SECTION BLOCKS ── */
.section-block { padding: 52px 0; }
.section-gray { background: var(--bg); }
.sec-head { margin-bottom: 24px; }
.sec-head h2 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; color: var(--dark); }

/* ── REGION TABS ── */
.region-tabs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 22px; border-bottom: 2px solid var(--border); padding-bottom: 0; }
.rtab { padding: 9px 18px; font-family: var(--font); font-size: 13px; font-weight: 600; border: none; background: transparent; cursor: pointer; color: var(--body); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--t); border-radius: 0; }
.rtab.active, .rtab:hover { color: var(--green); border-bottom-color: var(--green); }

/* ── DESTINATION CARDS ── */
.dest-cards-wrap { display: none; }
.dest-cards-wrap.active { display: block; }
.dest-cards-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.dest-card { display: block; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); background: #fff; transition: var(--t); }
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); border-color: transparent; }
.dc-img { position: relative; height: 130px; overflow: hidden; }
.dc-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--t); }
.dest-card:hover .dc-img img { transform: scale(1.08); }
.dc-rating { position: absolute; top: 8px; left: 8px; background: var(--green); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 4px; display: flex; align-items: center; gap: 3px; }
.dc-rating::before { content: '★'; font-size: 10px; }
.dc-info { padding: 10px 12px; }
.dc-info h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; color: var(--dark); }
.dc-info p { font-size: 12px; color: var(--muted); }
.dc-info strong { color: var(--green); }

/* ── PACKAGE CARDS ── */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pkg-grid:not(.active) { display: none; }
.pkg-grid.active { display: grid; }
.pkg-card { background: #fff; border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; transition: var(--t); display: flex; flex-direction: column; }
.pkg-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); border-color: transparent; }
.pkg-img-link { display: block; height: 185px; overflow: hidden; }
.pkg-img-link img { width: 100%; height: 100%; object-fit: cover; transition: var(--t); }
.pkg-card:hover .pkg-img-link img { transform: scale(1.06); }
.pkg-body { padding: 14px 16px; flex: 1; }
.pkg-duration-badge { display: inline-block; background: var(--green-lt); color: var(--green); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-bottom: 8px; }
.pkg-body h3 { font-size: 14px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.pkg-body h3 a { color: var(--dark); transition: var(--t); }
.pkg-body h3 a:hover { color: var(--green); }
.pkg-route { font-size: 12px; color: var(--muted); display: flex; align-items: flex-start; gap: 5px; margin-bottom: 10px; line-height: 1.5; }
.pkg-route i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.pkg-agent { display: flex; align-items: center; gap: 8px; }
.agent-img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.agent-name { font-size: 12px; color: var(--body); flex: 1; }
.pkg-rating { display: flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 700; color: #ff8f00; }
.pkg-rating i { font-size: 11px; }
.pkg-rating span { color: var(--muted); font-weight: 400; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-top: 1px solid var(--border); gap: 10px; }
.pkg-price-wrap { display: flex; flex-direction: column; }
.pkg-orig { font-size: 11px; color: var(--muted); text-decoration: line-through; }
.pkg-price { font-size: 18px; font-weight: 800; color: var(--green); }
.pkg-price em { font-size: 11px; font-weight: 400; color: var(--muted); font-style: normal; }
.pkg-cta { background: var(--green); color: #fff; padding: 9px 16px; border-radius: 6px; font-size: 12px; font-weight: 700; white-space: nowrap; transition: var(--t); display: flex; align-items: center; gap: 5px; }
.pkg-cta:hover { background: var(--green-d); gap: 8px; }

/* ── WHY SECTION ── */
.why-section { background: linear-gradient(135deg, #f0faf5, #e8f7ef); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: #fff; border-radius: var(--r); padding: 28px 22px; text-align: center; border: 1px solid var(--border); transition: var(--t); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-h); border-color: var(--green); }
.why-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--green-lt); color: var(--green); font-size: 24px; display: grid; place-items: center; margin: 0 auto 16px; transition: var(--t); }
.why-card:hover .why-icon { background: var(--green); color: #fff; }
.why-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--body); line-height: 1.65; }

/* ── CONTACT ── */
.contact-section { background: var(--dark); padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: flex-start; }
.contact-left h2 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.contact-left p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.cd-item { display: flex; align-items: flex-start; gap: 14px; }
.cd-item > i { font-size: 18px; color: var(--green); margin-top: 2px; flex-shrink: 0; }
.cd-item span { display: block; font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .5px; }
.cd-item strong { color: #fff; font-size: 14px; }
.contact-form-wrap { background: #fff; border-radius: 12px; padding: 32px; }
.contact-form h3 { font-size: 19px; font-weight: 800; margin-bottom: 20px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field { margin-bottom: 14px; }
.cf-field label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 5px; color: var(--dark); }
.cf-field input, .cf-field select, .cf-field textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 6px; font-family: var(--font); font-size: 13px; color: var(--dark); outline: none; transition: var(--t); background: #fafafa; }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: var(--green); background: #fff; }
.cf-field textarea { height: 90px; resize: none; }
.cf-submit { width: 100%; padding: 13px; background: var(--green); color: #fff; border: none; border-radius: 6px; font-family: var(--font); font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--t); display: flex; align-items: center; justify-content: center; gap: 8px; }
.cf-submit:hover { background: var(--green-d); }

/* ── FOOTER ── */
.footer { background: #111827; }
.footer-top { padding: 50px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr; gap: 36px; }
.ft-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ft-logo-img { width: 38px; height: 38px; object-fit: contain; filter: invert(1) brightness(2); }
.ftl-main { display: block; font-size: 18px; font-weight: 800; color: #fff; line-height: 1; }
.ftl-sub { display: block; font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: 1px; }
.ft-brand p { color: rgba(255,255,255,.45); font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.ft-socials { display: flex; gap: 10px; }
.ft-socials a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.55); display: grid; place-items: center; font-size: 15px; transition: var(--t); }
.ft-socials a:hover { background: var(--green); color: #fff; }
.ft-col h5 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-col ul li { margin-bottom: 8px; }
.ft-col ul li a { color: rgba(255,255,255,.45); font-size: 13px; transition: var(--t); }
.ft-col ul li a:hover { color: var(--green); }
.ft-contact li { color: rgba(255,255,255,.45); font-size: 13px; display: flex; align-items: flex-start; gap: 8px; margin-bottom: 9px; }
.ft-contact li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; }
.footer-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bar-inner p { color: rgba(255,255,255,.3); font-size: 12.5px; }

/* ── SCROLL TOP ── */
.scroll-top { position: fixed; bottom: 72px; right: 20px; width: 42px; height: 42px; background: var(--green); color: #fff; border: none; border-radius: 8px; font-size: 16px; cursor: pointer; display: grid; place-items: center; box-shadow: 0 4px 16px rgba(26,158,92,.4); transition: var(--t); opacity: 0; pointer-events: none; z-index: 800; }
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--green-d); transform: translateY(-3px); }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 20px; right: 20px; width: 48px; height: 48px; background: #25d366; color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 24px; box-shadow: 0 4px 20px rgba(37,211,102,.45); z-index: 800; transition: var(--t); }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.55); }

/* ── REVEAL ── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].vis { opacity: 1; transform: none; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* 1100 */
@media(max-width:1100px){
  .dest-cards-row { grid-template-columns: repeat(4,1fr); }
  .pkg-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .ft-brand { grid-column: 1/-1; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
}

/* 900 */
@media(max-width:900px){
  .nav-links,.nr-phone { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--border);
    box-shadow: var(--shadow-h); z-index: 999;
    max-height: 80vh; overflow-y: auto;
  }
  .nav-links.open > li > a { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 14px; border-radius: 0; }
  .nav-links.open > li > a i { display: none; }
  .mega-menu { position: static; display: block; box-shadow: none; border: none; border-radius: 0; background: var(--bg); margin: 0; padding: 0; }
  .has-mega:hover .mega-menu { display: none; }
  .has-mega.open .mega-menu { display: block; }
  .mega-inner { padding: 12px 20px; }
  .mega-grid { grid-template-columns: repeat(2,1fr); }
  .hero { height: auto; min-height: 480px; }
  .hero-trust { gap: 0; }
  .trust-item { padding: 6px 12px; }
  .trust-div { display: none; }
  .topbar-right .tb-agent { display: none; }
}

/* 768 */
@media(max-width:768px){
  .topbar { display: none; }
  .navbar { position: sticky; top: 0; }
  .dest-cards-row { grid-template-columns: repeat(3,1fr); }
  .pkg-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-section { padding: 40px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 22px; }
  .hs-panel.active { flex-wrap: wrap; }
  .hs-field { min-width: calc(50% - 8px); }
  .footer-bar-inner { flex-direction: column; text-align: center; gap: 4px; }
}

/* 540 */
@media(max-width:540px){
  .dest-cards-row { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 6px; background: none; padding: 0; }
  .trust-item { background: rgba(0,0,0,.4); border-radius: 6px; padding: 8px 12px; flex: 1; min-width: 140px; }
  .hs-field { min-width: 100%; }
  .hs-btn { width: 100%; justify-content: center; }
}
.testimonials-section {
      background: #0d1f0f;
      padding: 80px 20px 70px;
      position: relative;
      overflow: hidden;
    }
 
    .testimonials-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(74,124,60,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 50%, rgba(44,90,35,0.10) 0%, transparent 70%);
      pointer-events: none;
    }
 
    .testimonials-section .section-label {
      text-align: center;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #6db85c;
      margin-bottom: 10px;
    }
 
    .testimonials-section .section-title {
      text-align: center;
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 5vw, 40px);
      color: #f0ece3;
      margin: 0 0 8px;
      font-weight: 600;
    }
 
    .testimonials-section .section-subtitle {
      text-align: center;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: rgba(240,236,227,0.5);
      margin: 0 0 52px;
      font-weight: 300;
    }
 
    /* ---- Slider Wrapper ---- */
    .t-slider-outer {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
    }
 
    .t-slider-track-wrap {
      overflow: hidden;
      border-radius: 16px;
    }
 
    .t-slider-track {
      display: flex;
      transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
 
    /* ---- Each Slide holds 3 cards ---- */
    .t-slide {
      min-width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 4px 2px;
      box-sizing: border-box;
    }
 
    /* ---- Card ---- */
    .t-card {
      background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
      border: 1px solid rgba(109,184,92,0.18);
      border-radius: 14px;
      padding: 28px 24px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      backdrop-filter: blur(8px);
      transition: transform 0.3s, border-color 0.3s;
    }
 
    .t-card:hover {
      transform: translateY(-4px);
      border-color: rgba(109,184,92,0.4);
    }
 
    .t-card .quote-icon {
      font-size: 42px;
      color: rgba(109,184,92,0.3);
      font-family: Georgia, serif;
      line-height: 1;
      position: absolute;
      top: 16px;
      right: 20px;
    }
 
    .t-card .stars {
      display: flex;
      gap: 3px;
    }
 
    .t-card .stars span {
      color: #f0c040;
      font-size: 14px;
    }
 
    .t-card .review-text {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: rgba(240,236,227,0.78);
      line-height: 1.75;
      font-weight: 300;
      flex: 1;
    }
 
    .t-card .reviewer {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid rgba(109,184,92,0.12);
      padding-top: 16px;
    }
 
    .t-card .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, #4a7c3c, #2c5a23);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: #f0ece3;
      flex-shrink: 0;
      border: 2px solid rgba(109,184,92,0.3);
    }
 
    .t-card .reviewer-info .name {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: #f0ece3;
    }
 
    .t-card .reviewer-info .trip {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      color: #6db85c;
      font-weight: 400;
      margin-top: 2px;
    }
 
    /* ---- Arrows ---- */
    .t-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(13,31,15,0.85);
      border: 1px solid rgba(109,184,92,0.35);
      color: #6db85c;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: background 0.25s, border-color 0.25s, color 0.25s;
      backdrop-filter: blur(6px);
    }
 
    .t-arrow:hover {
      background: rgba(74,124,60,0.3);
      border-color: #6db85c;
      color: #f0ece3;
    }
 
    .t-arrow.prev { left: -22px; }
    .t-arrow.next { right: -22px; }
 
    /* ---- Dots ---- */
    .t-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
    }
 
    .t-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(109,184,92,0.25);
      border: 1px solid rgba(109,184,92,0.4);
      cursor: pointer;
      transition: all 0.3s;
    }
 
    .t-dot.active {
      background: #6db85c;
      width: 24px;
      border-radius: 4px;
    }
 
    /* ---- Responsive ---- */
    @media (max-width: 900px) {
      .t-slide {
        grid-template-columns: repeat(2, 1fr);
      }
      .t-slide .t-card:nth-child(3) {
        display: none;
      }
    }
 
    @media (max-width: 580px) {
      .t-slide {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .t-slide .t-card:nth-child(2),
      .t-slide .t-card:nth-child(3) {
        display: none;
      }
      .t-arrow.prev { left: -4px; }
      .t-arrow.next { right: -4px; }
      .t-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
      }
    }