/* ==========================================================================
   AIR CONNECT — Visa & Travel Agency
   Design tokens pulled from the logo: crimson ring, charcoal serif wordmark,
   clean paper ground. Signature motif: the flight-route line + ring frame.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --red: #C31F30;
  --red-dark: #971725;
  --red-tint: #FBEAEB;
  --charcoal: #262128;
  --charcoal-soft: #5B5660;
  --paper: #FCFBF8;
  --paper-alt: #F4EFE9;
  --line: #E7E1D8;
  --white: #FFFFFF;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 28px;
  --shadow-card: 0 12px 30px -14px rgba(38,33,40,0.22);
  --shadow-lift: 0 20px 44px -18px rgba(38,33,40,0.30);
  --container: 1160px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }

h1,h2,h3,h4{ font-family: var(--font-display); font-weight:600; line-height:1.15; margin:0 0 0.5em; color: var(--charcoal); }
p{ margin:0 0 1em; }

.container{ max-width: var(--container); margin:0 auto; padding: 0 24px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-body); font-weight:600; font-size:0.72rem;
  letter-spacing:0.16em; text-transform:uppercase; color: var(--red);
}
.eyebrow::before{ content:""; width:18px; height:1px; background: var(--red); display:inline-block; }

.section{ padding: 96px 0; }
.section--tight{ padding: 64px 0; }
.section--alt{ background: var(--paper-alt); }
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head p{ color: var(--charcoal-soft); font-size:1.05rem; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 28px; border-radius: 999px; font-weight:600; font-size:0.95rem;
  border: 1.5px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary{ background: var(--red); color:var(--white); box-shadow: 0 10px 24px -10px rgba(195,31,48,0.55); }
.btn-primary:hover{ background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost{ background: transparent; color: var(--charcoal); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--charcoal); transform: translateY(-2px); }
.btn-on-dark{ background: var(--white); color: var(--red); }
.btn-on-dark:hover{ background: var(--red-tint); transform: translateY(-2px); }
.btn-sm{ padding: 10px 20px; font-size:0.85rem; }

/* ==========================================================================
   TOPBAR + HEADER
   ========================================================================== */
.topbar{
  background: var(--charcoal); color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
}
.topbar .container{ display:flex; align-items:center; justify-content:space-between; padding-top:9px; padding-bottom:9px; }
.topbar-left{ display:flex; align-items:center; gap:22px; }
.topbar-item{ display:flex; align-items:center; gap:7px; }
.topbar-item svg{ width:14px; height:14px; flex:none; opacity:.85; }
.topbar-right{ display:flex; align-items:center; gap:16px; }
.topbar-social{ display:flex; gap:12px; }
.topbar-social a{ width:26px; height:26px; border-radius:50%; border:1px solid rgba(255,255,255,0.25); display:flex; align-items:center; justify-content:center; transition: background .18s, border-color .18s; }
.topbar-social a:hover{ background: var(--red); border-color: var(--red); }
.topbar-social svg{ width:13px; height:13px; }

.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(252,251,248,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row{ display:flex; align-items:center; justify-content:space-between; padding: 14px 0; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:46px; width:auto; }
.brand-word{ font-family: var(--font-display); font-size:1.28rem; font-weight:600; color:var(--charcoal); }
.brand-word span{ color: var(--red); }
.brand-tag{ font-size:0.62rem; letter-spacing:0.18em; color: var(--charcoal-soft); text-transform:uppercase; display:block; margin-top:1px; }

.main-nav{ display:flex; align-items:center; gap:2px; }
.main-nav > li{ position:relative; }
.main-nav > li > a, .main-nav > li > button.nav-link{
  display:flex; align-items:center; gap:6px; padding: 12px 16px; font-weight:600; font-size:0.94rem;
  color: var(--charcoal); border:none; background:none; border-radius: 999px; transition: background .18s, color .18s;
}
.main-nav > li > a:hover, .main-nav > li > button.nav-link:hover, .main-nav > li > a.active{ background: var(--red-tint); color: var(--red-dark); }
.main-nav > li > button.nav-link svg{ width:11px; height:11px; transition: transform .18s; }
.main-nav > li:hover > button.nav-link svg{ transform: rotate(180deg); }

.dropdown{
  position:absolute; top:calc(100% + 8px); left:0; min-width:220px;
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius-m);
  box-shadow: var(--shadow-lift); padding:8px; opacity:0; visibility:hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.main-nav > li:hover .dropdown{ opacity:1; visibility:visible; transform: translateY(0); }
.dropdown a{ display:flex; align-items:center; justify-content:space-between; padding:10px 14px; border-radius: var(--radius-s); font-weight:500; font-size:0.92rem; }
.dropdown a:hover{ background: var(--paper-alt); }
.dropdown .tag-china{ background: var(--red); color:var(--white); font-size:0.62rem; font-weight:700; letter-spacing:.06em; padding:2px 7px; border-radius:999px; }

.nav-cta{ display:flex; align-items:center; gap:10px; }
.hamburger{ display:none; background:none; border:none; padding:8px; }
.hamburger span{ display:block; width:24px; height:2px; background: var(--charcoal); margin:5px 0; transition: transform .2s, opacity .2s; }

/* mobile nav */
@media (max-width: 940px){
  .main-nav{
    position:fixed; inset: 0 0 0 auto; width: min(320px, 84vw); height:100vh;
    background: var(--white); flex-direction:column; align-items:stretch; gap:0;
    padding: 90px 20px 20px; transform: translateX(100%); transition: transform .28s ease;
    box-shadow: -20px 0 40px -20px rgba(0,0,0,0.2); overflow-y:auto;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav > li > a, .main-nav > li > button.nav-link{ width:100%; justify-content:space-between; padding:14px 12px; border-bottom:1px solid var(--line); border-radius:0; }
  .dropdown{ position:static; box-shadow:none; border:none; opacity:1; visibility:visible; transform:none; display:none; padding:0 0 0 12px; }
  .main-nav > li.mobile-open .dropdown{ display:block; }
  .nav-cta{ display:none; }
  .hamburger{ display:block; }
  .nav-scrim{ position:fixed; inset:0; background:rgba(38,33,40,.4); opacity:0; visibility:hidden; transition:opacity .2s; z-index:90; }
  .nav-scrim.open{ opacity:1; visibility:visible; }
}
@media (min-width: 941px){ .mobile-only{ display:none; } }
@media (max-width: 700px){ .mobile-only-hide{ display:none; } }

/* ==========================================================================
   ROUTE MOTIF (signature element)
   ========================================================================== */
.route-divider{ position:relative; height:64px; overflow:hidden; }
.route-divider svg{ position:absolute; left:50%; top:0; transform: translateX(-50%); width:min(1160px, 92%); height:100%; }
.route-path{ fill:none; stroke: var(--line); stroke-width:2; stroke-dasharray: 6 8; }
.route-dot{ fill: var(--red); }
.route-plane{ transform-box: fill-box; transform-origin:center; }
@media (min-width: 400px){
  .route-plane{ offset-path: path("M10,32 C 300,-10 860,74 1150,32"); animation: fly 9s linear infinite; }
}
@keyframes fly{ from{ offset-distance:0%; } to{ offset-distance:100%; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{ position:relative; padding: 88px 0 110px; overflow:hidden; background: var(--paper); }
.hero::before{
  content:""; position:absolute; right:-180px; top:-180px; width:560px; height:560px; border-radius:50%;
  border: 46px solid var(--red-tint); z-index:0;
}
.hero::after{
  content:""; position:absolute; right:-40px; top:120px; width:300px; height:300px; border-radius:50%;
  border: 3px solid var(--red); opacity:0.18; z-index:0;
}
.hero-grid{ position:relative; z-index:1; display:grid; grid-template-columns: 1.1fr 0.9fr; gap:56px; align-items:center; }
.hero h1{ font-size: clamp(2.4rem, 4.6vw, 3.6rem); margin: 14px 0 18px; }
.hero h1 em{ font-style:normal; color: var(--red); }
.hero-lede{ font-size:1.12rem; color: var(--charcoal-soft); max-width:520px; }
.hero-actions{ display:flex; gap:14px; margin: 32px 0 40px; flex-wrap:wrap; }
.hero-trust{ display:flex; gap:28px; flex-wrap:wrap; }
.hero-trust div{ font-family: var(--font-display); font-size:1.5rem; font-weight:700; color:var(--red); }
.hero-trust span{ display:block; font-family: var(--font-body); font-size:0.78rem; color: var(--charcoal-soft); font-weight:500; margin-top:2px; }

.hero-visual{ position:relative; }
.ring-frame{ position:relative; border-radius: var(--radius-l); overflow:hidden; box-shadow: var(--shadow-lift); }
.ring-frame img{ height:460px; object-fit:cover; width:100%; }
.ring-frame::after{
  content:""; position:absolute; inset:0; border-radius: var(--radius-l);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.ring-badge{
  position:absolute; left:-28px; bottom:-28px; width:132px; height:132px; border-radius:50%;
  background: var(--white); border: 6px solid var(--red); display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow: var(--shadow-card); text-align:center;
}
.ring-badge strong{ font-family: var(--font-display); font-size:1.5rem; color:var(--red); line-height:1; }
.ring-badge span{ font-size:0.62rem; letter-spacing:.04em; color: var(--charcoal-soft); margin-top:4px; }

/* ==========================================================================
   WHY / SERVICES CARDS
   ========================================================================== */
.grid-4{ display:grid; grid-template-columns: repeat(4, 1fr); gap:24px; }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap:24px; }

.feature-card{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius-m); padding:30px 26px; transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); }
.icon-ring{ width:52px; height:52px; border-radius:50%; border:2px solid var(--red); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.icon-ring svg{ width:24px; height:24px; stroke: var(--red); }
.feature-card h3{ font-size:1.12rem; }
.feature-card p{ color: var(--charcoal-soft); font-size:0.95rem; margin:0; }

.service-card{ background: var(--charcoal); color:var(--white); border-radius: var(--radius-m); padding:30px 26px; position:relative; overflow:hidden; }
.service-card::before{ content:""; position:absolute; right:-30px; bottom:-30px; width:120px; height:120px; border-radius:50%; border:2px solid rgba(255,255,255,0.12); }
.service-card h3{ color:var(--white); font-size:1.12rem; }
.service-card p{ color: rgba(255,255,255,0.72); font-size:0.92rem; }
.service-card .icon-ring{ border-color: var(--red); }
.service-card .icon-ring svg{ stroke: var(--red); }

/* Destinations strip */
.dest-strip{ display:grid; grid-template-columns: repeat(6,1fr); gap:16px; }
.dest-chip{ position:relative; border-radius: var(--radius-m); overflow:hidden; aspect-ratio: 3/4; }
.dest-chip img{ width:100%; height:100%; object-fit:cover; transition: transform .35s ease; }
.dest-chip:hover img{ transform: scale(1.08); }
.dest-chip::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(38,33,40,0) 40%, rgba(38,33,40,0.82) 100%); }
.dest-chip span{ position:absolute; left:12px; bottom:12px; z-index:2; color:var(--white); font-weight:600; font-size:0.92rem; }

/* Stats */
.stats-bar{ background: var(--red); border-radius: var(--radius-l); padding: 44px 40px; display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; color:var(--white); }
.stat{ text-align:center; }
.stat strong{ font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); display:block; }
.stat span{ font-size:0.82rem; opacity:0.88; }

/* Testimonials */
.testi-wrap{ position:relative; max-width:760px; margin:0 auto; text-align:center; }
.testi-slide{ display:none; }
.testi-slide.active{ display:block; animation: fadeUp .5s ease; }
@keyframes fadeUp{ from{ opacity:0; transform: translateY(10px);} to{ opacity:1; transform:none; } }
.testi-quote{ font-family: var(--font-display); font-size:1.4rem; color:var(--charcoal); margin-bottom:20px; }
.testi-person{ display:flex; align-items:center; justify-content:center; gap:12px; }
.testi-person img{ width:44px; height:44px; border-radius:50%; object-fit:cover; border:2px solid var(--red); }
.testi-person strong{ display:block; font-size:0.92rem; }
.testi-person span{ font-size:0.8rem; color:var(--charcoal-soft); }
.testi-dots{ display:flex; gap:8px; justify-content:center; margin-top:26px; }
.testi-dots button{ width:8px; height:8px; border-radius:50%; background: var(--line); border:none; padding:0; }
.testi-dots button.active{ background: var(--red); width:22px; border-radius:999px; transition: width .2s; }

/* CTA banner */
.cta-banner{ background: var(--charcoal); border-radius: var(--radius-l); padding:56px; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; position:relative; overflow:hidden; }
.cta-banner::before{ content:""; position:absolute; left:-60px; top:-60px; width:200px; height:200px; border-radius:50%; border:40px solid rgba(195,31,48,0.28); }
.cta-banner h2{ color:var(--white); margin:0; font-size:1.9rem; position:relative; z-index:1; }
.cta-banner p{ color:rgba(255,255,255,0.7); margin:8px 0 0; position:relative; z-index:1; }
.cta-banner .actions{ position:relative; z-index:1; display:flex; gap:12px; flex-wrap:wrap; }

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero{ background: var(--charcoal); color:var(--white); padding: 64px 0 56px; position:relative; overflow:hidden; }
.page-hero::after{ content:""; position:absolute; right:-120px; bottom:-140px; width:320px; height:320px; border-radius:50%; border:3px solid rgba(195,31,48,0.5); }
.page-hero h1{ color:var(--white); font-size: clamp(2rem, 3.6vw, 2.8rem); }
.page-hero .eyebrow{ color: #FF8F98; }
.page-hero .eyebrow::before{ background: #FF8F98; }
.breadcrumb{ font-size:0.85rem; color: rgba(255,255,255,0.6); margin-bottom:16px; }
.breadcrumb .sep{ margin:0 6px; }

/* ==========================================================================
   PRICING PAGE
   ========================================================================== */
.tabs{ display:flex; gap:10px; margin-bottom:36px; flex-wrap:wrap; }
.tab-btn{
  background: var(--white); border:1.5px solid var(--line); border-radius:999px; padding:12px 24px; font-weight:600; font-size:0.94rem;
  display:flex; align-items:center; gap:8px; transition: all .18s ease;
}
.tab-btn:hover{ border-color: var(--red); color: var(--red-dark); }
.tab-btn.active{ background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.tab-btn.china-tab.active{ background: var(--red); border-color: var(--red); }
.tab-btn .flag-badge{ background: var(--red); color:#fff; font-size:0.6rem; font-weight:700; padding:2px 7px; border-radius:999px; letter-spacing:.04em; }
.tab-btn.active .flag-badge{ background: rgba(255,255,255,0.25); }

.tab-panel{ display:none; }
.tab-panel.active{ display:block; animation: fadeUp .4s ease; }

.price-table-wrap{ overflow-x:auto; border:1px solid var(--line); border-radius: var(--radius-m); background:var(--white); }
table.price-table{ width:100%; border-collapse:collapse; min-width:640px; }
table.price-table th{ text-align:left; font-size:0.78rem; letter-spacing:.05em; text-transform:uppercase; color:var(--charcoal-soft); background:var(--paper-alt); padding:14px 18px; border-bottom:1px solid var(--line); }
table.price-table td{ padding:16px 18px; border-bottom:1px solid var(--line); font-size:0.95rem; }
table.price-table tr:last-child td{ border-bottom:none; }
table.price-table td.total{ font-weight:700; color:var(--red-dark); }
table.price-table tr:hover td{ background: var(--paper-alt); }

.china-hero{ background: var(--red-tint); border:1px solid #F0CBCE; border-radius: var(--radius-m); padding:28px 30px; display:flex; gap:20px; align-items:flex-start; margin-bottom:32px; }
.china-hero svg{ width:38px; height:38px; stroke:var(--red); flex:none; }
.china-hero h3{ font-size:1.15rem; margin-bottom:6px; }
.china-hero p{ color: var(--charcoal-soft); margin:0; font-size:0.95rem; }

.visa-type-cards{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; margin-bottom:40px; }
.visa-type-card{ border:1px solid var(--line); border-radius: var(--radius-m); padding:24px; background:var(--white); }
.visa-type-card .badge{ display:inline-block; font-size:0.68rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; background: var(--paper-alt); color:var(--charcoal-soft); padding:4px 10px; border-radius:999px; margin-bottom:12px; }
.visa-type-card h4{ font-size:1.05rem; margin-bottom:6px; }
.visa-type-card p{ font-size:0.9rem; color:var(--charcoal-soft); margin:0; }

.doc-checklist{ display:grid; grid-template-columns: repeat(2,1fr); gap:12px 24px; }
.doc-checklist li{ display:flex; gap:10px; align-items:flex-start; font-size:0.95rem; }
.doc-checklist svg{ width:18px; height:18px; stroke:var(--red); flex:none; margin-top:2px; }

.note-card{ border-left:3px solid var(--red); background: var(--paper-alt); padding:18px 22px; border-radius: 0 var(--radius-s) var(--radius-s) 0; font-size:0.92rem; color:var(--charcoal-soft); }

/* FAQ accordion */
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; background:none; border:none; display:flex; align-items:center; justify-content:space-between; padding:20px 4px; font-family: var(--font-display); font-size:1.05rem; text-align:left; color:var(--charcoal); }
.faq-q .plus{ width:24px; height:24px; border-radius:50%; border:1.5px solid var(--red); flex:none; position:relative; }
.faq-q .plus::before, .faq-q .plus::after{ content:""; position:absolute; background: var(--red); left:50%; top:50%; transform: translate(-50%,-50%); }
.faq-q .plus::before{ width:10px; height:1.6px; }
.faq-q .plus::after{ width:1.6px; height:10px; transition: transform .2s ease, opacity .2s ease; }
.faq-item.open .faq-q .plus::after{ transform: translate(-50%,-50%) rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq-a-inner{ padding: 0 4px 20px; color: var(--charcoal-soft); font-size:0.95rem; max-width:760px; }
.faq-item.open .faq-a{ max-height: 400px; }

.disclaimer{ margin-top:36px; font-size:0.85rem; color: var(--charcoal-soft); background: var(--paper-alt); padding:16px 20px; border-radius: var(--radius-s); }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.value-card{ text-align:center; padding:28px 20px; }
.value-card .icon-ring{ margin:0 auto 16px; }

.team-card{ text-align:center; }
.team-photo{ position:relative; border-radius: var(--radius-m); overflow:hidden; margin-bottom:14px; }
.team-photo img{ height:260px; object-fit:cover; width:100%; }
.team-card h4{ margin-bottom:2px; font-size:1.02rem; }
.team-card span{ font-size:0.85rem; color:var(--red); font-weight:600; }

.timeline{ position:relative; padding-left:32px; border-left:2px dashed var(--line); }
.timeline-item{ position:relative; padding-bottom:36px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{ content:""; position:absolute; left:-39px; top:2px; width:16px; height:16px; border-radius:50%; background: var(--red); border:3px solid var(--paper); box-shadow:0 0 0 2px var(--red); }
.timeline-item strong{ display:block; font-family: var(--font-display); color:var(--red); font-size:1.1rem; margin-bottom:4px; }
.timeline-item p{ margin:0; color:var(--charcoal-soft); font-size:0.94rem; }

.badge-row{ display:flex; gap:28px; flex-wrap:wrap; align-items:center; justify-content:center; }
.badge-pill{ display:flex; align-items:center; gap:10px; border:1px solid var(--line); border-radius:999px; padding:12px 22px; font-weight:600; font-size:0.9rem; color:var(--charcoal-soft); background:var(--white); }
.badge-pill svg{ width:20px; height:20px; stroke:var(--red); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:flex-start; }
.contact-info-card{ background: var(--charcoal); color:var(--white); border-radius: var(--radius-l); padding:38px; }
.contact-info-card h3{ color:var(--white); }
.contact-row{ display:flex; gap:14px; align-items:flex-start; margin-bottom:22px; }
.contact-row svg{ width:20px; height:20px; stroke: var(--red); flex:none; margin-top:2px; }
.contact-row strong{ display:block; font-size:0.95rem; }
.contact-row span{ font-size:0.88rem; color:rgba(255,255,255,0.66); }
.contact-social{ display:flex; gap:10px; margin-top:26px; }
.contact-social a{ width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,0.25); display:flex; align-items:center; justify-content:center; transition: background .18s; }
.contact-social a:hover{ background: var(--red); }
.contact-social svg{ width:15px; height:15px; }

.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-size:0.85rem; font-weight:600; margin-bottom:6px; }
.form-field input, .form-field textarea{
  width:100%; padding:13px 16px; border:1.5px solid var(--line); border-radius: var(--radius-s);
  font-family: inherit; font-size:0.95rem; background: var(--white); transition: border-color .18s;
}
.form-field input:focus, .form-field textarea:focus{ outline:none; border-color: var(--red); }
.form-row-2{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-note{ font-size:0.82rem; color: var(--charcoal-soft); margin-top:6px; }
.form-success{ display:none; background:#EAF6EE; border:1px solid #B9E4C6; color:#256B3B; padding:14px 18px; border-radius: var(--radius-s); margin-bottom:18px; font-size:0.9rem; }
.form-success.show{ display:block; }

.map-embed{ border-radius: var(--radius-m); overflow:hidden; border:1px solid var(--line); margin-top:32px; }
.map-embed iframe{ width:100%; height:320px; border:0; display:block; }

.whatsapp-fab{
  position:fixed; right:22px; bottom:22px; width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-lift); z-index: 80;
  transition: transform .2s ease;
}
.whatsapp-fab:hover{ transform: scale(1.08); }
.whatsapp-fab svg{ width:28px; height:28px; fill:#fff; }

/* ==========================================================================
   GALLERY / TOURS PAGE
   ========================================================================== */
.filter-row{ display:flex; gap:10px; margin-bottom:48px; }
.filter-btn{ background:var(--white); border:1.5px solid var(--line); border-radius:999px; padding:10px 22px; font-weight:600; font-size:0.9rem; }
.filter-btn.active{ background:var(--charcoal); border-color:var(--charcoal); color:var(--white); }

.tour-block{ display:grid; grid-template-columns: 1fr 1fr; gap:52px; align-items:center; padding: 46px 0; border-bottom:1px solid var(--line); }
.tour-block:first-child{ padding-top:0; }
.tour-block:last-child{ border-bottom:none; }
.tour-block.reverse{ direction: rtl; }
.tour-block.reverse > *{ direction: ltr; }
.tour-photo{ position:relative; border-radius: var(--radius-l); overflow:hidden; box-shadow: var(--shadow-card); }
.tour-photo img{ height:320px; width:100%; object-fit:cover; }
.tour-date-chip{
  position:absolute; top:16px; left:16px; background: var(--white); border-radius: var(--radius-s); padding:8px 14px;
  text-align:center; box-shadow: var(--shadow-card); border-left:3px solid var(--red);
}
.tour-date-chip strong{ display:block; font-family: var(--font-display); font-size:1.05rem; line-height:1; color:var(--red); }
.tour-date-chip span{ font-size:0.68rem; text-transform:uppercase; letter-spacing:.05em; color:var(--charcoal-soft); }
.tour-status{ position:absolute; top:16px; right:16px; font-size:0.68rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; padding:5px 12px; border-radius:999px; }
.tour-status.upcoming{ background: var(--red); color:#fff; }
.tour-status.past{ background: rgba(38,33,40,0.7); color:#fff; }
.tour-meta{ display:flex; gap:16px; margin:16px 0 12px; flex-wrap:wrap; }
.tour-meta span{ font-size:0.82rem; color:var(--charcoal-soft); display:flex; align-items:center; gap:6px; }
.tour-meta svg{ width:15px; height:15px; stroke: var(--red); }
.tour-block h3{ font-size:1.5rem; }
.tour-block p.desc{ color:var(--charcoal-soft); }
.price-hint{ font-family: var(--font-display); font-size:1.2rem; color:var(--red-dark); font-weight:600; margin:14px 0 18px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: var(--charcoal); color: rgba(255,255,255,0.72); padding: 64px 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.12); }
.footer-brand .brand-word{ color:var(--white); }
.footer-brand .brand-tag{ color: rgba(255,255,255,0.5); }
.footer-brand p{ margin-top:16px; font-size:0.9rem; max-width:280px; }
.footer-col h4{ color:var(--white); font-size:0.95rem; margin-bottom:18px; font-family: var(--font-body); font-weight:700; }
.footer-col ul li{ margin-bottom:10px; }
.footer-col a{ font-size:0.9rem; color: rgba(255,255,255,0.66); transition:color .15s; }
.footer-col a:hover{ color: var(--white); }
.footer-social{ display:flex; gap:10px; margin-top:6px; }
.footer-social a{ width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,0.2); display:flex; align-items:center; justify-content:center; }
.footer-social a:hover{ background:var(--red); border-color:var(--red); }
.footer-social svg{ width:14px; height:14px; }
.newsletter{ display:flex; gap:8px; margin-top:14px; }
.newsletter input{ flex:1; padding:11px 14px; border-radius: var(--radius-s); border:1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color:#fff; font-size:0.88rem; }
.newsletter input::placeholder{ color: rgba(255,255,255,0.45); }
.newsletter button{ background:var(--red); color:#fff; border:none; border-radius: var(--radius-s); padding:0 18px; font-weight:600; font-size:0.85rem; }
.footer-bottom{ padding:22px 0; display:flex; justify-content:space-between; align-items:center; font-size:0.82rem; color: rgba(255,255,255,0.5); flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color: rgba(255,255,255,0.7); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1000px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; }
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .dest-strip{ grid-template-columns: repeat(3,1fr); }
  .stats-bar{ grid-template-columns: repeat(2,1fr); }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .visa-type-cards{ grid-template-columns:1fr; }
  .doc-checklist{ grid-template-columns:1fr; }
}
@media (max-width: 720px){
  .grid-4, .grid-3, .grid-2{ grid-template-columns:1fr; }
  .dest-strip{ grid-template-columns: repeat(2,1fr); }
  .stats-bar{ grid-template-columns: repeat(2,1fr); padding:32px 22px; }
  .cta-banner{ padding:36px 24px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .tour-block, .tour-block.reverse{ grid-template-columns:1fr; direction:ltr; }
  .section{ padding: 64px 0; }
  .form-row-2{ grid-template-columns:1fr; }
}
