/* ============================================================
   Travel Earth — Premium design system
   Editorial / Apple-inspired. Emerald + warm neutral palette.
   Line icons only (no emojis).
   ============================================================ */
:root {
  --ink: #0f1613;
  --ink-2: #33413a;
  --muted: #6d7a72;
  --line: #e8eae6;
  --line-2: #f0f1ee;
  --bg: #ffffff;
  --bg-soft: #f6f7f4;
  --cream: #f4f0e8;
  --brand: #12734a;
  --brand-2: #0c5637;
  --brand-tint: #e9f4ee;
  --gold: #b8935a;
  --shadow-xs: 0 1px 2px rgba(15, 22, 19, .05);
  --shadow-sm: 0 6px 20px rgba(15, 22, 19, .06);
  --shadow-md: 0 18px 44px rgba(15, 22, 19, .10);
  --shadow-lg: 0 34px 80px rgba(15, 22, 19, .16);
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --display: "Plus Jakarta Sans", "Inter", -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); }

/* icons */
.ic { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ic-sm { width: 16px; height: 16px; }
.ic-lg { width: 26px; height: 26px; }

/* section scaffolding */
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font);
  font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--brand); opacity: .5; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); margin: 16px 0 0; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 17px; }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.head-row .section-head { margin-bottom: 0; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; cursor: pointer;
  font-weight: 600; font-size: 15px; padding: 14px 26px; border-radius: 40px; border: 1px solid transparent;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 26px rgba(18,115,74,.28); }
.btn-primary:hover { background: var(--brand-2); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.24); }
.btn-block { width: 100%; }
.btn .ic { width: 18px; height: 18px; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--brand); font-size: 15px; }
.link-arrow .ic { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover .ic { transform: translateX(4px); }

/* ============================================================ Header */
.header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 20px 0; transition: padding .35s var(--ease), background .35s, box-shadow .35s, border-color .35s; border-bottom: 1px solid transparent; }
.header.scrolled { background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(18px); box-shadow: var(--shadow-xs); border-color: var(--line); padding: 12px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo { width: 42px; height: 42px; }
.logo-chip { display: inline-flex; align-items: center; background: #fff; border-radius: 12px; padding: 6px 12px; box-shadow: 0 6px 18px rgba(6,15,10,.14); transition: padding .3s var(--ease), box-shadow .3s; }
.brand-logo { height: 40px; width: auto; display: block; }
.header.scrolled .logo-chip { padding: 5px 10px; box-shadow: none; }
.header.scrolled .brand-logo { height: 34px; }
.footer .logo-chip { padding: 10px 16px; box-shadow: 0 10px 26px rgba(0,0,0,.25); }
.footer .brand-logo { height: 52px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .name { font-family: var(--display); font-weight: 800; font-size: 19px; letter-spacing: .01em; color: #fff; transition: color .35s; }
.brand-text .tag { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.72); transition: color .35s; }
.header.scrolled .brand-text .name { color: var(--ink); }
.header.scrolled .brand-text .tag { color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.92); font-weight: 500; font-size: 15px; position: relative; transition: color .35s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0; background: currentColor; transition: width .3s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.header.scrolled .nav-links a { color: var(--ink-2); }
.nav-links a.active { color: #fff; }
.header.scrolled .nav-links a.active { color: var(--brand); }
.nav-links a.active::after { width: 100%; }
/* pages without a full-bleed hero keep a solid header + top offset */
body.solid-header { padding-top: 74px; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.header.scrolled .nav-actions .btn-ghost-light { background: var(--brand); color: #fff; border-color: transparent; }
.hamburger { display: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #fff; align-items: center; justify-content: center; cursor: pointer; }
.header.scrolled .hamburger { background: var(--bg-soft); border-color: var(--line); color: var(--ink); }

/* ============================================================ Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding: 140px 0 64px; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,20,14,.45) 0%, rgba(8,20,14,.15) 35%, rgba(8,20,14,.72) 100%); }
.hero-inner { width: 100%; }
.hero-rating { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,.95); color: var(--ink); padding: 8px 8px 8px 16px; border-radius: 40px; box-shadow: var(--shadow-md); margin-bottom: 26px; }
.hero-rating .g-logo { width: 20px; height: 20px; }
.hero-rating .stars { display: inline-flex; gap: 2px; color: #f5a623; }
.hero-rating .stars .ic { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.hero-rating .r-text { font-size: 13px; font-weight: 600; }
.hero-rating .r-text b { font-weight: 800; }
.hero-rating .r-pill { background: var(--ink); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 30px; }
.hero h1 { color: #fff; font-size: clamp(40px, 7vw, 82px); font-weight: 800; max-width: 15ch; letter-spacing: -.03em; text-shadow: 0 2px 30px rgba(6,15,10,.35); }
.hero p.lede { font-size: clamp(16px, 2vw, 21px); max-width: 56ch; color: rgba(255,255,255,.94); margin-top: 22px; font-weight: 400; text-shadow: 0 1px 16px rgba(6,15,10,.3); }

/* single search */
.searchbar { margin-top: 34px; max-width: 620px; background: #fff; border-radius: 44px; padding: 8px 8px 8px 22px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); }
.searchbar .ic { color: var(--muted); }
.searchbar input { flex: 1; border: none; outline: none; font-family: inherit; font-size: 16px; color: var(--ink); background: transparent; min-width: 0; }
.searchbar input::placeholder { color: #9aa39d; }
.searchbar .btn { padding: 13px 28px; }
.search-wrap { position: relative; max-width: 620px; }
.search-wrap .searchbar { max-width: none; margin-top: 34px; }
.search-results { position: absolute; top: calc(100% + 10px); left: 0; right: 0; background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; z-index: 30; display: none; max-height: 60vh; overflow-y: auto; }
.search-results.open { display: block; }
.sr-item { display: flex; align-items: center; gap: 13px; padding: 12px 16px; color: var(--ink); border-bottom: 1px solid var(--line-2); }
.sr-item:last-child { border-bottom: none; }
.sr-item:hover { background: var(--bg-soft); }
.sr-item img { width: 56px; height: 46px; border-radius: 9px; object-fit: cover; flex-shrink: 0; }
.sr-item .sr-t { font-weight: 600; font-size: 14.5px; }
.sr-item .sr-s { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.sr-item .sr-s .ic { width: 13px; height: 13px; }
.sr-item .sr-price { margin-left: auto; font-weight: 700; color: var(--brand); font-size: 14px; white-space: nowrap; }
.sr-empty { padding: 18px 16px; color: var(--muted); font-size: 14px; }
.sr-head { padding: 10px 16px 4px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.search-hint { margin-top: 16px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; color: rgba(255,255,255,.78); font-size: 14px; }
.search-hint .chip-mini { padding: 6px 14px; border: 1px solid rgba(255,255,255,.3); border-radius: 30px; cursor: pointer; transition: background .25s, border-color .25s; }
.search-hint .chip-mini:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.6); }

.hero-stats { display: flex; gap: 56px; margin-top: 54px; flex-wrap: wrap; }
.hero-stats .stat .n { font-family: var(--display); font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -.02em; }
.hero-stats .stat .l { font-size: 13.5px; color: rgba(255,255,255,.82); letter-spacing: .02em; }

/* ============================================================ Feature strip */
.features { background: var(--bg-soft); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px; transition: transform .4s var(--ease), box-shadow .4s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature .f-ic { width: 50px; height: 50px; border-radius: 14px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; margin-bottom: 18px; }
.feature .f-ic .ic { width: 24px; height: 24px; }
.feature h4 { font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* ============================================================ Package cards */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pcard { position: relative; border-radius: var(--r-lg); overflow: hidden; background: #0d130f; box-shadow: var(--shadow-sm); cursor: pointer; min-height: 440px; display: flex; }
.pcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.pcard:hover img { transform: scale(1.08); }
.pcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,15,10,.05) 0%, rgba(6,15,10,.25) 46%, rgba(6,15,10,.9) 100%); transition: background .4s; }
.pcard-top { position: absolute; top: 18px; left: 18px; right: 18px; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; }
.pcard-badge { background: rgba(255,255,255,.92); color: var(--ink); font-size: 12px; font-weight: 600; padding: 7px 13px; border-radius: 30px; display: inline-flex; align-items: center; gap: 6px; backdrop-filter: blur(6px); }
.pcard-price { background: var(--brand); color: #fff; font-weight: 700; font-size: 13.5px; padding: 8px 14px; border-radius: 30px; }
.pcard-price small { font-weight: 500; opacity: .85; }
/* sliding content */
.pcard-body { position: relative; z-index: 2; align-self: flex-end; width: 100%; padding: 26px; color: #fff; }
.pcard-loc { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 8px; }
.pcard-body h3 { color: #fff; font-size: 24px; letter-spacing: -.02em; }
.pcard-reveal { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .55s var(--ease), opacity .45s var(--ease), margin .45s var(--ease); margin-top: 0; }
.pcard:hover .pcard-reveal { max-height: 240px; opacity: 1; margin-top: 14px; }
.pcard-reveal p { font-size: 14px; color: rgba(255,255,255,.86); }
.pcard-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 18px; }
.pcard-tags span { font-size: 11.5px; padding: 5px 11px; border-radius: 30px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(6px); }
.pcard-cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: #fff; }
.pcard-cta .ic { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.pcard:hover .pcard-cta .ic { transform: translateX(4px); }

.no-results { text-align: center; color: var(--muted); padding: 40px; display: none; }

/* ============================================================ Destinations slider */
.destinations { background: var(--ink); color: #fff; overflow: hidden; }
.destinations .section-head h2 { color: #fff; }
.destinations .section-head p { color: rgba(255,255,255,.7); }
.slider-ctrls { display: flex; gap: 10px; }
.slider-ctrls button { width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .25s, border-color .25s, opacity .25s; }
.slider-ctrls button:hover { background: rgba(255,255,255,.12); }
.slider-ctrls button:disabled { opacity: .35; cursor: default; }
.slider { display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 8px; scrollbar-width: none; cursor: grab; }
.slider::-webkit-scrollbar { display: none; }
.slider.dragging { cursor: grabbing; scroll-behavior: auto; }
.dcard { position: relative; flex: 0 0 300px; height: 400px; border-radius: var(--r-lg); overflow: hidden; }
.dcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.dcard:hover img { transform: scale(1.07); }
.dcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(6,15,10,.85) 100%); }
.dcard-cap { position: absolute; left: 22px; bottom: 22px; right: 22px; z-index: 2; }
.dcard-cap .d-count { font-size: 12.5px; color: rgba(255,255,255,.8); }
.dcard-cap h3 { color: #fff; font-size: 25px; margin-top: 4px; }
.dcard-cap .d-price { margin-top: 10px; font-size: 14px; color: rgba(255,255,255,.9); }
.dcard-cap .d-price b { font-family: var(--display); font-size: 17px; }
.dcard .d-go { position: absolute; top: 18px; right: 18px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--ink); display: grid; place-items: center; transform: translateY(-6px); opacity: 0; transition: .35s var(--ease); }
.dcard:hover .d-go { transform: none; opacity: 1; }

/* solid (filled) icon variant — e.g. WhatsApp glyph */
.ic-solid { fill: currentColor; stroke: none; }

/* ============================================================ Popular destinations (circles) */
.pop-dest { padding-top: 92px; padding-bottom: 20px; }
.dest-circles { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.dcircle { display: flex; flex-direction: column; align-items: center; gap: 13px; width: 112px; text-align: center; }
.dcircle .ring { width: 104px; height: 104px; border-radius: 50%; padding: 3px; background: linear-gradient(140deg, var(--brand), var(--teal, #12a19a) 60%, var(--gold)); transition: transform .4s var(--ease); }
.dcircle .ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid #fff; }
.dcircle:hover .ring { transform: translateY(-6px) scale(1.05); }
.dcircle span { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.dcircle small { font-size: 12px; color: var(--muted); margin-top: -6px; }
@media (max-width: 680px) { .pop-dest { padding-top: 64px; } .dest-circles { gap: 18px 22px; } .dcircle { width: 92px; } .dcircle .ring { width: 84px; height: 84px; } }

/* ============================================================ Destination tiles (cards grid) */
.dest-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dest-tile { position: relative; display: block; height: 340px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.dest-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.dest-tile:hover img { transform: scale(1.07); }
.dest-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(6,15,10,.85) 100%); }
.dest-tile .cap { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; color: #fff; }
.dest-tile .cap h3 { color: #fff; font-size: 22px; }
.dest-tile .cap .go { display: inline-flex; align-items: center; gap: 7px; margin-top: 8px; font-size: 13.5px; font-weight: 600; color: #fff; }
.dest-tile .cap .go .ic { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.dest-tile:hover .cap .go .ic { transform: translateX(4px); }
@media (max-width: 992px) { .dest-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dest-cards { grid-template-columns: 1fr; } }

/* ============================================================ View-all row */
.view-all-row { display: flex; justify-content: center; margin-top: 44px; }

/* ============================================================ Split banner */
.banner { position: relative; }
.banner-inner { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 60px; background: var(--cream); border-radius: var(--r-lg); overflow: hidden; }
.banner-media { position: relative; height: 100%; min-height: 420px; }
.banner-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner-copy { padding: 60px 56px 60px 0; }
.banner-copy h2 { font-size: clamp(28px, 3.6vw, 44px); }
.banner-copy p { color: var(--ink-2); margin: 18px 0 28px; font-size: 16.5px; }
.banner-list { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; }
.banner-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.banner-list .ic { color: var(--brand); }

/* ============================================================ Custom package section */
.custom-sec { position: relative; color: #fff; overflow: hidden; }
.custom-bg { position: absolute; inset: 0; z-index: -2; }
.custom-bg img { width: 100%; height: 100%; object-fit: cover; }
.custom-sec::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(7,32,21,.94) 0%, rgba(10,60,40,.88) 55%, rgba(12,86,57,.82) 100%); }
.custom-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.custom-copy h2 { color: #fff; font-size: clamp(28px, 3.8vw, 46px); }
.custom-copy > p { color: rgba(255,255,255,.85); margin: 16px 0 26px; font-size: 16.5px; max-width: 48ch; }
.custom-list { list-style: none; display: grid; gap: 14px; }
.custom-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 15.5px; color: rgba(255,255,255,.95); }
.custom-list li .ic-wrap { width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.14); display: grid; place-items: center; flex-shrink: 0; }
.custom-list li .ic { width: 17px; height: 17px; color: #8fe3b6; }
.custom-form-card { background: #fff; color: var(--ink); border-radius: var(--r-lg); padding: 38px; box-shadow: var(--shadow-lg); }
.custom-form-card h3 { font-size: 23px; }
.custom-form-card > p { color: var(--muted); font-size: 14px; margin: 6px 0 22px; }
@media (max-width: 900px) { .custom-inner { grid-template-columns: 1fr; gap: 34px; } .custom-form-card { padding: 28px; } }

/* ============================================================ Reviews */
.reviews { background: var(--bg-soft); }
.rev-track { display: flex; gap: 22px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 6px; cursor: grab; }
.rev-track::-webkit-scrollbar { display: none; }
.rev-track.dragging { cursor: grabbing; scroll-behavior: auto; }
.rcard { flex: 0 0 380px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 32px; display: flex; flex-direction: column; }
.rcard .quote { color: var(--brand-tint); }
.rcard .quote .ic { width: 40px; height: 40px; fill: var(--brand-tint); stroke: none; }
.rcard .stars { display: inline-flex; gap: 2px; color: #f5a623; margin: -14px 0 14px; }
.rcard .stars .ic { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.rcard p.txt { font-size: 16px; color: var(--ink-2); flex: 1; }
.rcard .who { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.rcard .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--display); }
.rcard .who b { display: block; font-size: 15px; }
.rcard .who span { font-size: 13px; color: var(--muted); }

/* ============================================================ Terms */
.terms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px; }
.tcard .t-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tcard .t-head .t-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; }
.tcard h4 { font-size: 17px; }
.tcard ul { list-style: none; display: grid; gap: 10px; }
.tcard li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--muted); }
.tcard li .ic { position: absolute; left: 0; top: 3px; width: 16px; height: 16px; color: var(--brand); }

/* ============================================================ CTA */
.cta { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(9,32,21,.82), rgba(9,32,21,.88)); }
.cta h2 { color: #fff; font-size: clamp(30px, 4.4vw, 52px); max-width: 18ch; margin: 16px auto 0; }
.cta p { color: rgba(255,255,255,.85); max-width: 56ch; margin: 18px auto 30px; font-size: 17px; }
.cta .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================ Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 30px; }
.contact-info { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 46px; }
.contact-info h3 { color: #fff; font-size: 28px; }
.contact-info > p { color: rgba(255,255,255,.72); margin: 12px 0 30px; }
.info-row { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 22px; }
.info-row .i-ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.09); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.info-row .i-ic .ic { width: 20px; height: 20px; }
.info-row b { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 600; margin-bottom: 3px; }
.info-row span, .info-row a { font-size: 15.5px; color: rgba(255,255,255,.95); }
.socials { display: flex; gap: 12px; margin-top: 30px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.09); display: grid; place-items: center; color: #fff; transition: background .25s; }
.socials a:hover { background: var(--brand); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 46px; }
.contact-form h3 { font-size: 26px; }
.contact-form > p { color: var(--muted); margin: 8px 0 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-sm); font-family: inherit;
  font-size: 15px; color: var(--ink); outline: none; background: var(--bg-soft); transition: border-color .25s, background .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px var(--brand-tint); }
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg { font-size: 14px; margin-top: 12px; padding: 12px 16px; border-radius: var(--r-sm); display: none; }
.form-msg.ok { display: block; background: var(--brand-tint); color: var(--brand-2); }
.form-msg.err { display: block; background: #fdecec; color: #c0392b; }

/* ============================================================ Footer */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 76px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand-text .name { color: #fff; }
.footer p.about { margin-top: 18px; font-size: 14.5px; max-width: 34ch; }
.footer .gstin { margin-top: 16px; font-size: 12.5px; color: rgba(255,255,255,.5); }
.footer h5 { color: #fff; font-family: var(--display); font-size: 15px; margin-bottom: 18px; letter-spacing: .01em; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer li a, .footer li { font-size: 14.5px; }
.footer li a { transition: color .25s; }
.footer li a:hover { color: #fff; }
.footer li { display: flex; align-items: center; gap: 9px; }
.footer li .ic { width: 16px; height: 16px; color: rgba(255,255,255,.55); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 52px; padding-top: 24px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.55); }

/* ============================================================ Modal */
.overlay { position: fixed; inset: 0; z-index: 200; background: rgba(9,20,14,.55); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 20px; }
.overlay.open { display: flex; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; } }
.modal { background: #fff; border-radius: var(--r-lg); max-width: 500px; width: 100%; padding: 40px; position: relative; box-shadow: var(--shadow-lg); animation: rise .4s var(--ease); }
@keyframes rise { from { transform: translateY(24px); opacity: 0; } }
.modal h3 { font-size: 24px; }
.modal .modal-sub { color: var(--muted); font-size: 14.5px; margin: 6px 0 24px; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--bg-soft); color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: background .25s; }
.modal-close:hover { background: var(--line); }

/* ============================================================ Floating whatsapp */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #1fab54; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px rgba(31,171,84,.4); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float .ic { width: 28px; height: 28px; }

/* ============================================================ Reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* ============================================================ Responsive */
@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-inner { grid-template-columns: 1fr; }
  .banner-media { min-height: 300px; }
  .banner-copy { padding: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  .section { padding: 76px 0; }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: 80%; max-width: 340px; background: #fff; flex-direction: column; align-items: flex-start; padding: 100px 32px; gap: 22px; transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); }
  .nav-links.open { transform: none; }
  .nav-links a { color: var(--ink); font-size: 18px; }
  .hamburger { display: inline-flex; }
  .pkg-grid, .features-grid, .terms-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; }
  .searchbar { flex-wrap: wrap; border-radius: 20px; padding: 14px; }
  .searchbar input { width: 100%; padding: 6px 4px; }
  .searchbar .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 32px; }
  .head-row { flex-direction: column; align-items: flex-start; }
}
