/* =========================================================
   Fir Chale Travels — Premium Theme
   Author: Fir Chale Travels
   Modern, mobile-first, no Bootstrap, no jQuery
   ========================================================= */

:root {
  --brand-primary: #fa9e1b;
  --brand-primary-dark: #d97f00;
  --brand-secondary: #8d4fff;
  --brand-secondary-dark: #6f33d6;
  --brand-gradient: linear-gradient(135deg, #fa9e1b 0%, #ff6f61 50%, #8d4fff 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(250,158,27,0.08), rgba(141,79,255,0.08));
  --ink-900: #0f1729;
  --ink-700: #2b3548;
  --ink-500: #5a6478;
  --ink-300: #9aa3b5;
  --ink-100: #e6eaf2;
  --bg: #ffffff;
  --bg-soft: #f7f8fc;
  --bg-dark: #0c1322;
  --line: #e7eaf1;
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #dc2626;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(15,23,41,.06), 0 1px 3px rgba(15,23,41,.05);
  --shadow-md: 0 6px 18px rgba(15,23,41,.08), 0 2px 6px rgba(15,23,41,.05);
  --shadow-lg: 0 24px 60px rgba(15,23,41,.12), 0 8px 20px rgba(15,23,41,.06);
  --shadow-xl: 0 40px 80px rgba(15,23,41,.18);
  --container: 1200px;
  --container-wide: 1320px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 56px;
  --space-2xl: 88px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --header-h: 88px;
}

/* iOS safe area */
@supports(padding:max(0px)) {
  body { padding-bottom: env(safe-area-inset-bottom); }
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans','Poppins',system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-secondary-dark); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--brand-primary-dark); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
input,textarea,select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid rgba(141,79,255,.4); outline-offset: 2px; border-radius: 4px; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Plus Jakarta Sans','Poppins',sans-serif;
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p  { margin: 0 0 1em; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide { max-width: var(--container-wide); }
.section { padding: var(--space-2xl) 0; }
.section-tight { padding: var(--space-xl) 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--bg-dark); color: #cfd5e3; }
.section-dark h1,.section-dark h2,.section-dark h3 { color: #fff; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--space-xl); }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--brand-primary-dark);
  margin-bottom: .8rem;
  padding: 6px 14px;
  background: rgba(250,158,27,.1);
  border-radius: 999px;
}
.lead { font-size: 1.1rem; color: var(--ink-500); }

.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4,minmax(0,1fr)); }
@media (max-width: 992px){
  .grid-3,.grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 600px){
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 10px 24px rgba(250,158,27,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(250,158,27,.45); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1.5px solid var(--ink-100);
}
.btn-ghost:hover { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
.btn-light {
  background: #fff; color: var(--ink-900);
  box-shadow: var(--shadow-md);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(15,23,41,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-logo {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: #fff;
  padding: 6px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(250,158,27,.25), 0 2px 6px rgba(15,23,41,.06);
  border: 1.5px solid rgba(250,158,27,.18);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand:hover .brand-logo { transform: rotate(-4deg) scale(1.05); box-shadow: 0 10px 26px rgba(250,158,27,.4); }
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.brand-name { font-size: 1.25rem; font-weight: 800; color: var(--ink-900); }
.brand-tag {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .22em;
  color: var(--brand-primary-dark); font-weight: 700;
}
.brand:hover .brand-name { color: var(--brand-primary-dark); }
@media (max-width: 480px) {
  .brand-logo { width: 54px; height: 54px; border-radius: 14px; }
  .brand-name { font-size: 1.05rem; }
  .brand-tag { font-size: .6rem; letter-spacing: .18em; }
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: .96rem;
  padding: 10px 14px;
  border-radius: 10px;
  position: relative;
}
.nav a::after {
  content:""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
  background: var(--brand-gradient); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--ink-900); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-call {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--ink-900);
  padding: 8px 14px; border-radius: 999px; background: rgba(250,158,27,.1);
  font-size: .9rem;
}
.header-call:hover { background: rgba(250,158,27,.18); color: var(--brand-primary-dark); }

.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--ink-100);
  background: #fff;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink-900); position: relative;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.burger span::before, .burger span::after {
  content:""; position:absolute; left:0; width: 22px; height: 2px; background: var(--ink-900);
  transition: transform .3s var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after  { top:  7px; }
.burger.open span { background: transparent; }
.burger.open span::before { transform: translateY(7px) rotate(45deg); }
.burger.open span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px){
  .nav, .header-call { display: none; }
  .burger { display: inline-flex; }
}

/* Mobile Drawer */
.drawer {
  position: fixed; inset: 0;
  background: rgba(15,23,41,.55);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
  z-index: 1001;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: #fff;
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-panel a {
  display: block;
  padding: 14px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--ink-900);
  font-size: 1.05rem;
}
.drawer-panel a:hover { background: var(--bg-soft); color: var(--brand-primary-dark); }
.drawer-divider { height: 1px; background: var(--line); margin: 12px 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-slider, .hero-slider .slide {
  position: absolute; inset: 0;
}
.hero-slider .slide {
  opacity: 0;
  transition: opacity 1s var(--ease);
  background-size: cover;
  background-position: center;
}
.hero-slider .slide::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,23,41,.55) 0%, rgba(15,23,41,.35) 40%, rgba(15,23,41,.75) 100%);
}
.hero-slider .slide.active { opacity: 1; animation: kenburns 12s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 760px;
  padding: 80px 0;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
  animation: fadeUp .9s var(--ease-out) both;
}
.hero p.lead {
  color: #e7eaf2;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: 28px;
  max-width: 620px;
  animation: fadeUp .9s .15s var(--ease-out) both;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .9s .3s var(--ease-out) both; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 50px;
  flex-wrap: wrap;
  animation: fadeUp .9s .45s var(--ease-out) both;
}
.hero-stats .stat strong {
  display: block;
  font-size: clamp(1.6rem,3vw,2.1rem);
  color: #fff; font-weight: 800;
}
.hero-stats .stat span { color: #cfd5e3; font-size: .9rem; letter-spacing: .04em; }

.hero-dots {
  position: absolute; bottom: 30px; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; gap: 10px;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4);
  transition: all .3s var(--ease);
}
.hero-dots button.active { background: #fff; width: 28px; border-radius: 999px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Page header (sub-pages) ---------- */
.page-header {
  position: relative;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 90px;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-header::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,23,41,.6), rgba(15,23,41,.8));
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 { color: #fff; }
.crumbs { color: #cfd5e3; font-size: .92rem; letter-spacing: .02em; }
.crumbs a { color: #fff; }
.crumbs a:hover { color: var(--brand-primary); }
.crumbs span.sep { margin: 0 10px; opacity: .6; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }
.card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--brand-gradient); color: #fff;
  padding: 6px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600;
  letter-spacing: .03em;
}
.card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.card-title { font-size: 1.2rem; margin: 0; }
.card-meta { display: flex; align-items: center; gap: 14px; font-size: .85rem; color: var(--ink-500); }
.card-meta i { color: var(--brand-primary); }
.card-text { color: var(--ink-500); font-size: .95rem; flex: 1; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line);
}
.price { font-weight: 800; color: var(--ink-900); font-size: 1.15rem; }
.price small { font-weight: 500; color: var(--ink-500); font-size: .75rem; display: block; }

/* ---------- Service / Feature cards ---------- */
.feature {
  background: #fff;
  padding: 30px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid var(--line);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: var(--brand-gradient-soft);
  color: var(--brand-primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { color: var(--ink-500); font-size: .94rem; margin: 0; }

/* ---------- Destination tile (image-heavy hero card) ---------- */
.dest-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.dest-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.dest-tile::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,23,41,.85) 100%);
  z-index: 1;
}
.dest-tile:hover img { transform: scale(1.08); }
.dest-tile .dest-body {
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2;
  color: #fff;
}
.dest-tile h3 { color: #fff; margin-bottom: 6px; font-size: 1.35rem; }
.dest-tile .dest-price {
  display: inline-flex; align-items: baseline; gap: 6px;
  color: #fff; font-weight: 700;
}
.dest-tile .dest-price small { color: #cfd5e3; font-weight: 400; font-size: .8rem; }
.dest-tile .dest-stars { color: #ffd166; letter-spacing: 2px; font-size: .9rem; }

/* ---------- Stats / Counter ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
@media (max-width: 768px){ .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  text-align: center;
  padding: 26px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
}
.stat-card .num {
  font-size: 2.2rem; font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat-card .lab { color: var(--ink-500); font-size: .92rem; margin-top: 8px; display: block; }

/* ---------- Testimonials carousel ---------- */
.t-track {
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 4px 24px;
  scroll-padding-left: 4px;
}
.t-track::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 min(420px, 88vw);
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.t-card .stars { color: #ffd166; margin-bottom: 12px; letter-spacing: 2px; }
.t-card .who {
  display: flex; align-items: center; gap: 12px; margin-top: 18px;
}
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.t-name { font-weight: 700; color: var(--ink-900); font-size: .95rem; }
.t-loc  { color: var(--ink-500); font-size: .82rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  color: #fff;
  background: var(--brand-gradient);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-banner::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(800px 300px at 80% 10%, rgba(255,255,255,.18), transparent 60%),
              radial-gradient(600px 300px at 10% 100%, rgba(0,0,0,.18), transparent 60%);
  z-index: -1;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.9); margin-bottom: 26px; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: transparent; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600; font-size: 1.02rem; color: var(--ink-900);
  text-align: left;
  gap: 16px;
}
.faq-q .ico {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-soft); color: var(--ink-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.faq-item.open .faq-q .ico {
  transform: rotate(45deg);
  background: var(--brand-gradient); color: #fff;
}
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 24px;
  color: var(--ink-500);
  transition: max-height .35s var(--ease), padding .35s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--bg-dark); color: #cfd5e3;
  padding: 38px;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.contact-info::after {
  content:""; position:absolute; bottom:-80px; right:-80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--brand-gradient);
  opacity: .25; filter: blur(20px);
}
.contact-info h3 { color: #fff; }
.info-list { display: grid; gap: 18px; margin-top: 22px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row .ic {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: var(--brand-primary);
}
.info-row a { color: #fff; word-break: break-all; }
.info-row a:hover { color: var(--brand-primary); }

.contact-form {
  background: #fff;
  padding: 38px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .88rem; color: var(--ink-700); font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--ink-100);
  border-radius: 12px;
  background: #fff;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(250,158,27,.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px){ .field-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #b9c2d4;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
}
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { color: #fff; font-weight: 800; font-size: 1.15rem; display: inline-flex; gap: 10px; align-items: center; margin-bottom: 16px; }
.footer-brand img { width: 38px; height: 38px; }
.site-footer p { color: #b9c2d4; font-size: .93rem; }
.footer-title { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 18px; letter-spacing: .02em; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #b9c2d4; font-size: .94rem; transition: color .25s, transform .25s; display: inline-block; }
.footer-links a:hover { color: var(--brand-primary); transform: translateX(4px); }
.footer-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-tags a {
  background: rgba(255,255,255,.06); color: #cfd5e3;
  padding: 6px 12px; border-radius: 999px; font-size: .8rem;
}
.footer-tags a:hover { background: var(--brand-gradient); color: #fff; }
.social {
  display: flex; gap: 10px; margin-top: 18px;
}
.social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s;
}
.social a:hover { background: var(--brand-gradient); transform: translateY(-3px); color: #fff; }
.copyright {
  margin-top: 50px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: #8b95ad; font-size: .86rem;
}
.copyright a { color: var(--brand-primary); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.45);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float::before {
  content:""; position: absolute; inset:-6px; border-radius: 50%;
  background: rgba(37,211,102,.5);
  z-index: -1;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: .8; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ---------- Map ---------- */
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 700px) { .map-wrap { aspect-ratio: 4 / 3; } }

/* ---------- Article / Blog ---------- */
.article-card {
  background:#fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid var(--line);
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.article-card .media { aspect-ratio: 16 / 10; overflow: hidden; }
.article-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.article-card:hover .media img { transform: scale(1.06); }
.article-body { padding: 22px; }
.article-tag {
  display: inline-block; padding: 4px 10px; background: var(--brand-gradient-soft);
  color: var(--brand-primary-dark); border-radius: 999px; font-size: .76rem; font-weight: 600;
  margin-bottom: 10px;
}

/* ---------- Vehicle showcase ---------- */
.showcase {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.showcase img { width: 100%; height: auto; display: block; }

/* ---------- Newsletter ---------- */
.newsletter {
  display: flex; gap: 8px; flex-wrap: wrap;
  background: rgba(255,255,255,.06);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  max-width: 460px;
}
.newsletter input {
  flex: 1; min-width: 200px;
  background: transparent; border: 0; color: #fff;
  padding: 10px 16px;
}
.newsletter input::placeholder { color: #94a3b8; }
.newsletter input:focus { outline: 0; }
.newsletter button {
  background: var(--brand-gradient); color: #fff;
  padding: 10px 20px; border-radius: 999px; font-weight: 600;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.fw-700 { font-weight: 700; }
.muted { color: var(--ink-500); }

/* ============================================================
   Mobile polish — bigger touch targets, premium drawer
   ============================================================ */
@media (max-width: 992px) {
  .header-inner { height: 78px; }
  .burger { width: 48px; height: 48px; box-shadow: var(--shadow-sm); }
}
@media (max-width: 600px) {
  .hero-content { padding: 60px 0; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero p.lead { font-size: 1rem; }
  .hero-stats { gap: 22px; margin-top: 32px; }
  .hero-stats .stat strong { font-size: 1.4rem; }
  .hero-cta .btn { width: 100%; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .feature, .card-body { padding: 22px 18px; }
  .contact-info, .contact-form { padding: 26px 22px; }
  .cta-banner { padding: 44px 26px; border-radius: var(--radius-lg); }
  .copyright { flex-direction: column; text-align: center; }
}

/* Drawer upgrade */
.drawer-panel { padding-top: 24px; }
.drawer-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-soft); color: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
}
.drawer-cta {
  margin-top: auto; padding-top: 16px;
  display: grid; gap: 10px;
}
.drawer-cta .btn { width: 100%; justify-content: center; }
.drawer-info {
  margin-top: 12px;
  padding: 14px 12px;
  border-radius: 14px;
  background: var(--bg-soft);
  font-size: .88rem;
  color: var(--ink-500);
}
.drawer-info strong { color: var(--ink-900); display: block; margin-bottom: 4px; }

/* ============================================================
   Marquee / Auto-scrolling rows (destinations, trust badges)
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-track {
  display: inline-flex;
  gap: 28px;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-rev .marquee-track { animation-direction: reverse; animation-duration: 46s; }
@keyframes marquee {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }
}
.marquee-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  color: var(--ink-700); font-weight: 600; font-size: .95rem;
  white-space: nowrap;
}
.marquee-pill i { color: var(--brand-primary); }
.marquee-card {
  flex-shrink: 0;
  width: 280px; aspect-ratio: 4 / 5;
  border-radius: 18px; overflow: hidden;
  position: relative; isolation: isolate;
  box-shadow: var(--shadow-sm);
}
.marquee-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.marquee-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg,transparent 35%,rgba(15,23,41,.85)); z-index: 1; }
.marquee-card .lbl { position: absolute; left: 16px; bottom: 14px; right: 16px; z-index: 2; color: #fff; font-weight: 700; font-size: 1.05rem; }
.marquee-card .lbl small { display: block; font-weight: 400; color: #cfd5e3; font-size: .8rem; margin-top: 2px; }

/* ============================================================
   Floating shapes / parallax decorations
   ============================================================ */
.float-shape {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(50px); opacity: .35; z-index: 0;
}
.fs-orange { background: #fa9e1b; width: 320px; height: 320px; }
.fs-purple { background: #8d4fff; width: 280px; height: 280px; }
.float-anim { animation: floatY 9s ease-in-out infinite; }
.float-anim-2 { animation: floatY 11s ease-in-out -3s infinite; }
@keyframes floatY {
  0%,100% { transform: translateY(0) translateX(0); }
  50%     { transform: translateY(-30px) translateX(15px); }
}
.section-rel { position: relative; isolation: isolate; }
.section-rel > .container { position: relative; z-index: 1; }

/* ============================================================
   WhatsApp Popup Modal
   ============================================================ */
.wa-modal {
  position: fixed; inset: 0;
  background: rgba(15,23,41,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
  padding: 20px;
}
.wa-modal.open { opacity: 1; visibility: visible; }
.wa-card {
  background: #fff;
  border-radius: 24px;
  max-width: 460px; width: 100%;
  padding: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transform: translateY(40px) scale(.96);
  transition: transform .45s var(--ease-out);
}
.wa-modal.open .wa-card { transform: translateY(0) scale(1); }
.wa-head {
  background: linear-gradient(135deg,#075E54 0%,#128C7E 60%,#25D366 100%);
  color: #fff;
  padding: 30px 28px 60px;
  position: relative;
  text-align: center;
}
.wa-head .wa-pulse {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  position: relative;
}
.wa-head .wa-pulse i { color: #25D366; font-size: 38px; }
.wa-head .wa-pulse::before {
  content:""; position:absolute; inset:-8px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.45);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { transform: scale(.8); opacity: .8; }
  100% { transform: scale(1.45); opacity: 0; }
}
.wa-head h3 { color: #fff; font-size: 1.45rem; margin: 0 0 6px; }
.wa-head p { color: rgba(255,255,255,.92); margin: 0; font-size: .96rem; }
.wa-body {
  padding: 0 28px 28px;
  margin-top: -36px;
  position: relative;
  z-index: 1;
}
.wa-bubble {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 14px 30px rgba(15,23,41,.12);
  margin-bottom: 16px;
  font-size: .95rem;
  color: var(--ink-700);
  line-height: 1.55;
  position: relative;
}
.wa-bubble::before {
  content:""; position:absolute; top: -8px; left: 24px;
  width: 14px; height: 14px;
  background: #fff; transform: rotate(45deg);
  box-shadow: -3px -3px 6px rgba(0,0,0,.04);
}
.wa-name { color: #075E54; font-weight: 700; margin-bottom: 4px; font-size: .85rem; }
.wa-cta {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.wa-cta .btn { flex: 1; justify-content: center; }
.btn-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 10px 24px rgba(37,211,102,.4);
}
.btn-wa:hover { background: #1ebd5b; color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(37,211,102,.5); }
.wa-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.25); color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; font-size: 1rem;
  transition: background .25s, transform .25s;
}
.wa-close:hover { background: rgba(255,255,255,.4); transform: rotate(90deg); }

/* ============================================================
   Newsletter / Footer enhancements
   ============================================================ */
.footer-cta {
  background: linear-gradient(135deg, rgba(250,158,27,.12), rgba(141,79,255,.12));
  border: 1px solid rgba(255,255,255,.06);
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px; align-items: center;
}
@media (max-width: 760px){ .footer-cta { grid-template-columns: 1fr; padding: 26px 22px; } }
.footer-cta h3 { color: #fff; margin: 0 0 6px; font-size: 1.35rem; }
.footer-cta p { color: #cfd5e3; margin: 0; font-size: .95rem; }
.footer-cta .newsletter { max-width: none; width: 100%; }

.footer-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: #cfd5e3; font-size: .8rem; font-weight: 500;
}
.footer-badge i { color: var(--brand-primary); }

.footer-grid { gap: 40px; }
.site-footer { padding-top: 60px; }

/* ============================================================
   Article (blog post) layout
   ============================================================ */
.post-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 70px);
  padding-bottom: 100px;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.post-hero::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,41,.55) 0%, rgba(15,23,41,.85) 100%);
}
.post-hero > .container { position: relative; z-index: 1; max-width: 880px; }
.post-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
.post-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  color: #cfd5e3; font-size: .9rem;
}
.post-meta .post-tag {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: var(--brand-gradient); color: #fff;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
}
.post-body {
  max-width: 760px; margin: 0 auto;
  padding: 60px 20px 80px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-700);
}
.post-body h2 {
  margin-top: 50px; margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: var(--ink-900);
  position: relative;
  padding-left: 18px;
}
.post-body h2::before {
  content: ""; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 5px; border-radius: 4px;
  background: var(--brand-gradient);
}
.post-body h3 {
  margin-top: 30px; margin-bottom: 12px;
  font-size: 1.2rem; color: var(--ink-900);
}
.post-body p { margin-bottom: 18px; }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 18px; }
.post-body ul li, .post-body ol li { margin-bottom: 8px; }
.post-body ul li { list-style: disc; }
.post-body ol li { list-style: decimal; }
.post-body blockquote {
  border-left: 4px solid var(--brand-primary);
  padding: 12px 22px;
  background: var(--bg-soft);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--ink-700);
  margin: 26px 0;
}
.post-body img {
  border-radius: 16px; box-shadow: var(--shadow-md);
  margin: 26px 0;
}
.post-body a { color: var(--brand-secondary-dark); border-bottom: 1px dashed; }
.post-body a:hover { color: var(--brand-primary-dark); }
.post-table {
  width: 100%; border-collapse: collapse;
  margin: 22px 0;
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.post-table th, .post-table td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--line); font-size: .95rem;
}
.post-table th { background: var(--bg-soft); font-weight: 700; color: var(--ink-900); }
.post-table tr:last-child td { border-bottom: 0; }
.callout {
  background: linear-gradient(135deg, rgba(250,158,27,.08), rgba(141,79,255,.08));
  border: 1px solid rgba(250,158,27,.2);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 26px 0;
}
.callout strong { color: var(--brand-primary-dark); }

.share-row {
  display: flex; gap: 10px; align-items: center;
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.share-row a {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-soft); color: var(--ink-700);
  transition: background .25s, color .25s, transform .25s;
}
.share-row a:hover { background: var(--brand-gradient); color: #fff; transform: translateY(-3px); }

.related-posts {
  background: var(--bg-soft);
  padding: 60px 0;
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
