/* ════════════════════════════════════════════════════
   JM TRAVEL CONSULTANT — Main Stylesheet v3
   Theme: Red · Blue · White | jmtravel.in
   Load: <link rel="stylesheet" href="css/style.css">
════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

/* ── VARIABLES ─────────────────────────────────── */
:root {
  --blue:    #003580;
  --blue-m:  #0057B8;
  --blue-bg: #EBF2FF;
  --red:     #C8102E;
  --red-d:   #9B0B22;
  --red-bg:  #FFF2F4;
  --white:   #FFFFFF;
  --off:     #F7F9FC;
  --g1:      #F1F5F9;
  --g2:      #E2E8F0;
  --g5:      #64748B;
  --g8:      #1E293B;
  --green:   #25D366;
  --sh-s:    0 2px 12px rgba(0,53,128,.08);
  --sh-m:    0 8px 32px rgba(0,53,128,.14);
  --sh-l:    0 24px 64px rgba(0,53,128,.18);
  --r1: 8px; --r2: 14px; --r3: 20px;
}

/* ── RESET ─────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--g8); line-height: 1.65; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all .2s; }
ul { list-style: none; }
button { cursor: pointer; font-family: 'Poppins', sans-serif; border: none; outline: none; }
input, select, textarea { font-family: 'Poppins', sans-serif; outline: none; }

/* ── NAVBAR ────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--blue-bg);
  box-shadow: var(--sh-s);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--sh-m); }
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { height: 60px; width: auto; object-fit: contain; border-radius: 6px; }
.nav-logo-fb {
  height: 60px; width: 60px;
  background: linear-gradient(135deg, var(--blue), var(--blue-m));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 800; color: #fff;
}
/* Hamburger */
.hamburger {
  width: 42px; height: 42px; border-radius: var(--r1);
  background: var(--blue-bg); border: 1.5px solid #BFDBFE;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; transition: all .2s; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--blue); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Dropdown nav menu */
.nav-menu {
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); border-bottom: 2px solid var(--blue-bg);
  box-shadow: var(--sh-m); padding: 12px 24px 20px;
  display: none; flex-direction: column; gap: 4px; z-index: 999;
}
.nav-menu.open { display: flex; }
.nav-menu a {
  display: block; padding: 12px 18px; border-radius: var(--r1);
  font-size: 15px; font-weight: 500; color: var(--g8);
  border: 1.5px solid transparent; transition: all .2s;
}
.nav-menu a:hover, .nav-menu a.active {
  background: var(--blue-bg); color: var(--blue);
  border-color: #BFDBFE;
}
.nav-menu .nav-login {
  background: var(--red); color: var(--white) !important;
  border-color: var(--red); font-weight: 700; margin-top: 8px;
  text-align: center;
}
.nav-menu .nav-login:hover { background: var(--red-d); border-color: var(--red-d); }
/* Desktop nav (1100px+): show inline */
@media (min-width: 1100px) {
  .nav-menu {
    position: static; display: flex !important; flex-direction: row;
    background: none; border: none; box-shadow: none;
    padding: 0; gap: 2px; align-items: center;
  }
  .nav-menu a { font-size: 13px; padding: 8px 14px; }
  .nav-menu .nav-login {
    padding: 9px 20px; margin-top: 0; border-radius: var(--r1);
  }
  .hamburger { display: none; }
}

/* ── HERO ──────────────────────────────────────── */
.hero {
  position: relative; min-height: 68vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--blue);
  margin-top: 72px;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-slide video, .hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-slide video { opacity: 0.4; }
.hero-slide img  { opacity: 0.35; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(0,53,128,.72) 0%, rgba(0,53,128,.55) 50%, rgba(0,10,40,.65) 100%);
}
.hero-body {
  position: relative; z-index: 2;
  width: 100%; max-width: 960px;
  padding: 36px 24px 52px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px); color: #fff;
  padding: 7px 18px; border-radius: 99px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 22px;
}
.hero-tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 6vw, 68px);
  font-weight: 800; color: #fff; line-height: 1.1;
  margin-bottom: 18px;
}
.hero-h1 em { font-style: normal; color: #FFD54F; }
.hero-p { font-size: 17px; color: rgba(255,255,255,.82); max-width: 520px; margin-bottom: 28px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;
  margin-bottom: 36px;
}
.trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500; }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* Deals bar — sits between trust badges and search */
.hero-deals {
  width: 100%; max-width: 880px;
  background: rgba(200,16,46,.88);
  border-radius: var(--r1) var(--r1) 0 0;
  height: 40px; overflow: hidden;
  display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,.2); border-bottom: none;
}
.hd-label {
  background: var(--red-d); color: #fff;
  padding: 0 14px; height: 100%; display: flex; align-items: center;
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  white-space: nowrap; flex-shrink: 0;
}
.hd-track { flex: 1; overflow: hidden; height: 100%; display: flex; align-items: center; }
.hd-inner { display: flex; gap: 0; animation: hd-scroll 28s linear infinite; white-space: nowrap; }
.hd-inner:hover { animation-play-state: paused; cursor: pointer; }
.hd-item {
  padding: 0 24px; color: #fff; font-size: 12px; font-weight: 600;
  border-right: 1px solid rgba(255,255,255,.2); height: 40px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hd-badge {
  background: rgba(255,255,255,.2); padding: 1px 8px;
  border-radius: 99px; font-size: 9px; font-weight: 800; letter-spacing: 1px;
}
@keyframes hd-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* Search card — attaches to bottom of deals bar */
.search-card {
  background: var(--white); width: 100%; max-width: 880px;
  border-radius: 0 0 var(--r3) var(--r3);
  padding: 26px 28px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
}
.search-row { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
.sf label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 7px; }
.sf-wrap { position: relative; }
.sf-wrap select, .sf-wrap input {
  width: 100%; border: 1.5px solid var(--g2); border-radius: var(--r1);
  padding: 13px 14px 13px 14px; font-size: 14px; font-weight: 500;
  color: var(--g8); background: var(--white); appearance: none; transition: border-color .2s;
}
.sf-wrap select:focus, .sf-wrap input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-bg); }
.sf-wrap select option { background: var(--white); }
.sf-wrap input[type=date]::-webkit-calendar-picker-indicator { opacity: .5; cursor: pointer; }
.btn-search {
  background: linear-gradient(135deg, var(--red-d), var(--red));
  color: var(--white); border-radius: var(--r1);
  padding: 14px 26px; font-size: 15px; font-weight: 700;
  white-space: nowrap; transition: all .2s;
}
.btn-search:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,16,46,.4); }

/* ── STATS BAR ─────────────────────────────────── */
.stats-bar { background: var(--blue); padding: 18px 24px; }
.stats-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 8px 16px; border-right: 1px solid rgba(255,255,255,.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 800; color: #FFD54F; line-height: 1; }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 5px; }

/* ── SEARCH RESULTS ────────────────────────────── */
.results-sec { background: var(--off); padding: 44px 24px; display: none; }
.results-sec.show { display: block; }
.results-top { max-width: 980px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.results-title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--g8); }
.results-cnt { background: var(--blue); color: var(--white); padding: 5px 14px; border-radius: 99px; font-size: 12px; font-weight: 600; }
.results-list { max-width: 980px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.r-empty { text-align: center; padding: 56px 20px; color: var(--g5); }
.r-empty .r-ei { font-size: 44px; opacity: .25; margin-bottom: 12px; }

/* Flight card */
.fc {
  background: var(--white); border-radius: var(--r2);
  border: 1.5px solid var(--g2); padding: 20px 22px;
  box-shadow: var(--sh-s); transition: all .22s;
}
.fc:hover { box-shadow: var(--sh-m); border-color: #BFDBFE; transform: translateY(-2px); }
.fc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.fc-al { display: flex; align-items: center; gap: 12px; }
.fc-logo { width: 44px; height: 44px; border-radius: 9px; border: 1.5px solid var(--g2); padding: 4px; object-fit: contain; background: var(--white); }
.fc-logo-fb { width: 44px; height: 44px; border-radius: 9px; background: linear-gradient(135deg,var(--blue),var(--blue-m)); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: var(--white); letter-spacing: .5px; }
.fc-al-name { font-weight: 700; font-size: 14px; color: var(--g8); }
.fc-al-sub  { font-size: 11px; color: var(--g5); margin-top: 2px; }
.fc-badges  { display: flex; gap: 6px; flex-wrap: wrap; }
.bdg { display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: 10px; font-weight: 700; }
.bdg-ns  { background: #DCFCE7; color: #15803D; border: 1px solid #BBF7D0; }
.bdg-cl  { background: var(--blue-bg); color: var(--blue); border: 1px solid #BFDBFE; }
.bdg-ref { background: #DCFCE7; color: #15803D; border: 1px solid #BBF7D0; }
.bdg-nr  { background: #FEE2E2; color: #B91C1C; border: 1px solid #FECACA; }
.fc-mid {
  display: flex; align-items: center; gap: 14px;
  background: var(--blue-bg); border-radius: var(--r1); padding: 14px 16px;
  margin-bottom: 16px;
}
.fc-ap { min-width: 80px; text-align: center; }
.fc-time { font-size: 26px; font-weight: 800; color: var(--blue); line-height: 1; }
.fc-iata { font-size: 11px; font-weight: 700; color: var(--blue-m); margin-top: 3px; letter-spacing: 1px; }
.fc-city { font-size: 10px; color: var(--g5); margin-top: 1px; }
.fc-route { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.fc-line  { display: flex; align-items: center; width: 100%; }
.fc-dot   { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.fc-track { flex: 1; height: 2px; background: linear-gradient(90deg,var(--blue),var(--g2),var(--blue)); position: relative; }
.fc-plane { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); font-size: 16px; color: var(--blue-m); }
.fc-dur   { font-size: 11px; font-weight: 600; color: var(--blue-m); }
.fc-bot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1.5px dashed var(--g2); padding-top: 14px;
  flex-wrap: wrap; gap: 12px;
}
.fc-info  { display: flex; gap: 14px; flex-wrap: wrap; }
.fc-info span { font-size: 12px; color: var(--g5); }
.fc-fare-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.fc-fare  { font-size: 26px; font-weight: 800; color: #16A34A; }
.fc-pp    { font-size: 10px; color: var(--g5); margin-top: 2px; }
.fc-hidden-fare { font-size: 13px; font-weight: 600; color: var(--red); background: var(--red-bg); padding: 8px 14px; border-radius: var(--r1); border: 1.5px solid #FECACA; }
.btn-wa {
  background: var(--green); color: var(--white); border-radius: var(--r1);
  padding: 11px 18px; font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 7px; transition: all .2s;
}
.btn-wa:hover { background: #1da851; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,.4); }
.btn-ask {
  background: var(--red-bg); border: 1.5px solid #FECACA; color: var(--red);
  border-radius: var(--r1); padding: 10px 14px; font-size: 12px; font-weight: 700; transition: all .2s;
}
.btn-ask:hover { background: var(--red); color: var(--white); }

/* ── SECTIONS SHARED ───────────────────────────── */
.sec { padding: 44px 24px; }
.sec-light { background: var(--off); }
.sec-blue  { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-m) 100%); }
.container { max-width: 1320px; margin: 0 auto; }
.sec-hdr { text-align: center; margin-bottom: 32px; }
.sec-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); background: var(--red-bg); padding: 5px 14px; border-radius: 99px; margin-bottom: 12px; border: 1px solid #FECACA; }
.sec-tag.blue { color: var(--blue); background: var(--blue-bg); border-color: #BFDBFE; }
.sec-tag.white { color: rgba(255,255,255,.8); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
.sec-title { font-family: 'Playfair Display', serif; font-size: clamp(24px, 4vw, 40px); font-weight: 700; color: var(--g8); margin-bottom: 14px; }
.sec-title.white { color: #fff; }
.sec-line { width: 56px; height: 4px; background: linear-gradient(90deg, var(--red), var(--blue)); border-radius: 2px; margin: 0 auto 14px; }
.sec-desc { font-size: 16px; color: var(--g5); max-width: 560px; margin: 0 auto; line-height: 1.75; }
.sec-desc.white { color: rgba(255,255,255,.72); }

/* ── DEALS SECTION ─────────────────────────────── */
.deals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.deal-card { background: var(--white); border-radius: var(--r2); overflow: hidden; border: 1.5px solid var(--g2); box-shadow: var(--sh-s); transition: all .25s; cursor: pointer; }
.deal-card:hover { transform: translateY(-6px); box-shadow: var(--sh-m); border-color: var(--red); }
.dc-top { background: linear-gradient(135deg, var(--red-d), var(--red)); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; }
.dc-badge { font-size: 9px; font-weight: 800; letter-spacing: 2px; background: rgba(255,255,255,.2); color: #fff; padding: 2px 8px; border-radius: 99px; }
.dc-type  { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.85); }
.dc-body  { padding: 16px; }
.dc-route { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--blue); letter-spacing: 1px; }
.dc-date  { font-size: 12px; color: var(--g5); margin-top: 5px; }
.dc-desc  { font-size: 13px; color: var(--g5); margin-top: 8px; line-height: 1.55; }
.dc-bot   { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--g2); display: flex; align-items: center; justify-content: space-between; }
.dc-fare  { font-size: 22px; font-weight: 800; color: #16A34A; }
.dc-fare-lbl { font-size: 10px; color: var(--g5); }
.dc-wa    { background: var(--green); color: var(--white); border-radius: var(--r1); padding: 8px 14px; font-size: 12px; font-weight: 700; transition: all .2s; white-space: nowrap; }
.dc-wa:hover { background: #1da851; }
.deals-empty { text-align: center; padding: 44px; color: var(--g5); font-size: 15px; grid-column: 1/-1; }

/* ── ROUTE CARDS ───────────────────────────────── */
.routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }
.route-card { border-radius: var(--r2); overflow: hidden; aspect-ratio: 3/4; position: relative; cursor: pointer; box-shadow: var(--sh-m); transition: all .3s; }
.route-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--sh-l); }
.rc-bg   { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s; }
.route-card:hover .rc-bg { transform: scale(1.07); }
.rc-ov   { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,53,128,.9) 0%, rgba(0,53,128,.3) 55%, transparent 100%); }
.rc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 16px; }
.rc-country { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.65); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.rc-city  { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; line-height: 1.1; }
.rc-code  { font-size: 11px; color: rgba(255,255,255,.65); letter-spacing: 1.5px; margin-top: 4px; }
.rc-cta   { display: inline-block; margin-top: 10px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(6px); color: #fff; padding: 6px 14px; border-radius: 99px; font-size: 11px; font-weight: 600; transition: all .2s; }
.route-card:hover .rc-cta { background: var(--white); color: var(--blue); }

/* ── PACKAGES ──────────────────────────────────── */
.pkgs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.pkg-card { background: var(--white); border-radius: var(--r2); overflow: hidden; border: 1.5px solid var(--g2); box-shadow: var(--sh-s); transition: all .25s; }
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--sh-m); border-color: var(--blue); }
.pkg-img { height: 180px; background-size: cover; background-position: center; position: relative; background-color: var(--blue); }
.pkg-img-ov { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,53,128,.65), transparent); }
.pkg-img-tag { position: absolute; top: 12px; right: 12px; background: var(--red); color: #fff; padding: 4px 12px; border-radius: 99px; font-size: 10px; font-weight: 700; }
.pkg-body { padding: 18px; }
.pkg-title { font-size: 16px; font-weight: 700; color: var(--g8); margin-bottom: 6px; }
.pkg-desc  { font-size: 13px; color: var(--g5); line-height: 1.65; margin-bottom: 14px; }
.pkg-bot   { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--g2); }
.pkg-fare  { font-size: 20px; font-weight: 800; color: var(--blue); }
.pkg-fare small { font-size: 10px; color: var(--g5); font-weight: 400; display: block; }
.pkg-empty { text-align: center; padding: 50px; color: var(--g5); grid-column: 1/-1; }

/* ── SERVICES ──────────────────────────────────── */
.svcs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.svc-card { background: var(--white); border: 1.5px solid var(--g2); border-radius: var(--r2); padding: 28px 22px; text-align: center; transition: all .3s; }
.svc-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: var(--sh-m); }
.svc-ico { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, var(--blue-bg), #E0EEFF); border: 1.5px solid #BFDBFE; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; transition: all .3s; }
.svc-card:hover .svc-ico { background: linear-gradient(135deg, var(--blue), var(--blue-m)); border-color: var(--blue); }
.svc-title { font-size: 16px; font-weight: 700; color: var(--g8); margin-bottom: 8px; }
.svc-desc  { font-size: 14px; color: var(--g5); line-height: 1.7; }

/* ── WHY US ────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 26px; }
.why-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r2); padding: 30px 22px; text-align: center; transition: all .3s; }
.why-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.why-num  { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 800; color: #FFD54F; line-height: 1; margin-bottom: 8px; }
.why-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-desc  { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.7; }

/* ── TESTIMONIALS ──────────────────────────────── */
.testi-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 22px; animation: testi-scroll 32s linear infinite; }
.testi-track:hover { animation-play-state: paused; }
@keyframes testi-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.testi-card { flex-shrink: 0; width: 310px; background: var(--white); border-radius: var(--r2); padding: 22px; border: 1.5px solid var(--g2); box-shadow: var(--sh-s); }
.testi-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text  { font-size: 13px; color: var(--g8); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-auth  { display: flex; align-items: center; gap: 10px; }
.testi-av    { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name  { font-size: 13px; font-weight: 700; color: var(--g8); }
.testi-dest  { font-size: 11px; color: var(--g5); margin-top: 1px; }

/* ── CTA BANNER ────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--red-d) 0%, var(--red) 40%, var(--blue-m) 100%); padding: 56px 24px; text-align: center; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(22px, 4vw, 40px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-sub   { font-size: 16px; color: rgba(255,255,255,.78); max-width: 460px; margin: 0 auto 30px; }
.cta-btns  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-wa {
  background: var(--green); color: var(--white);
  padding: 14px 28px; border-radius: var(--r1); font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px; transition: all .2s;
}
.btn-cta-wa:hover { background: #1da851; transform: translateY(-2px); }
.btn-cta-wh {
  background: var(--white); color: var(--blue);
  padding: 14px 28px; border-radius: var(--r1); font-size: 14px; font-weight: 700; transition: all .2s;
}
.btn-cta-wh:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }

/* ── FOOTER ────────────────────────────────────── */
footer { background: var(--g8); }
.footer-main { max-width: 1320px; margin: 0 auto; padding: 52px 24px 36px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-wrap img { height: 44px; width: auto; border-radius: 6px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 18px; color: #fff; font-weight: 700; }
.footer-brand-tag  { font-size: 10px; color: rgba(255,255,255,.45); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-about { font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.8; margin-bottom: 18px; }
.footer-ci { font-size: 12px; color: rgba(255,255,255,.65); margin-bottom: 7px; display: flex; align-items: flex-start; gap: 6px; }
.footer-ci a { color: rgba(255,255,255,.8); }
.footer-ci a:hover { color: #FFD54F; }
.footer-col-h { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.6); transition: all .2s; }
.footer-links a:hover { color: #FFD54F; padding-left: 3px; }
.footer-bot { max-width: 1320px; margin: 0 auto; padding: 18px 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy  { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-legal { font-size: 11px; color: rgba(255,255,255,.35); }

/* ── WA FLOAT ──────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 998;
  background: var(--green); color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: all .2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(37,211,102,.6); }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
  .search-row { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-h1 { font-size: 32px; }
  .hero-p  { font-size: 15px; }
  .search-row { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .fc-mid { flex-direction: column; }
  .fc-bot { flex-direction: column; align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}