/* ============================================
   Bi Mola Vize Danışmanlık — Design System
   Aydınlık & sıcak tema
   ============================================ */

:root{
  --bg: #FFFCF7;
  --bg-alt: #FFF2E3;
  --bg-alt-2: #EAF5F4;
  --surface: #FFFFFF;
  --surface-line: #F0E4D3;

  --text: #2B2420;
  --text-muted: #6E6157;
  --text-soft: #9C8F82;

  --coral: #F4771E;
  --coral-dark: #D85F0C;
  --coral-tint: #FDE7D2;

  --teal: #147A82;
  --teal-dark: #0E5C63;
  --teal-tint: #DEF2F1;

  --gold: #F2A93B;
  --gold-tint: #FDEACB;

  --border: #ECE0D0;
  --shadow-sm: 0 2px 8px rgba(60, 40, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(60, 40, 20, 0.10);
  --shadow-lg: 0 24px 60px rgba(60, 40, 20, 0.14);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 120px; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

h1,h2,h3,h4{
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}
p{ margin: 0; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
img{ max-width: 100%; display: block; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in{ opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(226, 83, 47, 0.32);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(226, 83, 47, 0.4); }
.btn-secondary{
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover{ border-color: var(--coral); color: var(--coral-dark); transform: translateY(-2px); }
.btn-ghost-teal{
  background: var(--teal-tint);
  color: var(--teal-dark);
}
.btn-ghost-teal:hover{ background: var(--teal); color: #fff; }
.btn-block{ width: 100%; justify-content: center; }
.btn-sm{ padding: 10px 18px; font-size: 14px; }

/* ---------- Eyebrow / section heading ---------- */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-dark);
  background: var(--coral-tint);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}
.eyebrow.teal{ color: var(--teal-dark); background: var(--teal-tint); }
.section-head{
  max-width: 680px;
  margin-bottom: 48px;
}
.section-head h2{ font-size: clamp(28px, 3.6vw, 40px); margin-top: 14px; }
.section-head p{ margin-top: 14px; color: var(--text-muted); font-size: 17px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

section{ padding: 96px 0; position: relative; }
.section-alt{ background: var(--bg-alt); }

/* ============================================
   Intro / Giriş Ekranı
   ============================================ */
body.intro-lock{ overflow: hidden; height: 100vh; }
.intro-screen{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  cursor: pointer;
  background: linear-gradient(150deg, var(--bg), var(--bg-alt) 70%);
  transition: opacity .6s ease, visibility .6s ease;
}
.intro-screen.hidden{ opacity: 0; visibility: hidden; pointer-events: none; }
.intro-logo{
  width: min(80vw, 620px);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(60, 40, 20, 0.16));
  animation: introPulse 2.6s ease-in-out infinite;
}
@keyframes introPulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.035); }
}
.intro-hint{
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--coral-dark);
  background: var(--coral-tint);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
}

/* ============================================
   Header
   ============================================ */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 10px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.scrolled{
  background: rgba(255, 252, 247, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.brand{ display: flex; align-items: center; gap: 12px; }
.brand-logo{ height: 108px; width: auto; display: block; transition: height .3s ease; }
.site-header.scrolled .brand-logo{ height: 68px; }

.nav-links{ display: flex; align-items: center; gap: 34px; }
.nav-links a{
  font-size: 14.5px; font-weight: 600; color: var(--text-muted);
  transition: color .2s ease;
  position: relative;
}
.nav-links a:hover{ color: var(--coral-dark); }

.header-actions{ display: flex; align-items: center; gap: 18px; }
.nav-toggle{
  display: none;
  background: none; border: none; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span{ width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* Mobile nav */
.mobile-nav{
  position: fixed; inset: 0; z-index: 600;
  background: var(--surface);
  display: flex; flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.mobile-nav.open{ transform: translateX(0); }
.mobile-nav-top{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav a{
  font-family: var(--font-head);
  font-size: 26px; font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn{ margin-top: 28px; }
.mobile-close{ background: none; border: none; font-size: 28px; color: var(--text); }

/* ============================================
   Hero
   ============================================ */
.hero{
  padding: 196px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after{
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
  opacity: .55;
}
.hero::before{
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--gold-tint), transparent 70%);
  top: -160px; right: -120px;
}
.hero::after{
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--teal-tint), transparent 70%);
  bottom: -140px; left: -140px;
}
.hero .container{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-slogan{
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  color: var(--coral-dark);
  font-size: 15.5px;
  margin-top: 12px;
}
.hero h1{
  font-size: clamp(34px, 4.6vw, 56px);
  margin-top: 20px;
}
.hero h1 .hl{
  color: var(--coral-dark);
  position: relative;
  white-space: nowrap;
}
.hero-sub{
  margin-top: 22px;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
}
.hero-cta{ display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-stats{
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 28px;
  margin-top: 56px;
}
.hero-stat b{
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--coral-dark);
}
.hero-stat span{ font-size: 12.5px; color: var(--text-soft); }

/* Boarding pass visual */
.pass-card{
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  position: relative;
  transform: rotate(2deg);
  border: 1px solid var(--surface-line);
}
.pass-card::before{
  content: "";
  position: absolute;
  left: -14px; top: 50%;
  width: 28px; height: 28px;
  background: var(--bg);
  border-radius: 50%;
  border: 1px solid var(--surface-line);
  transform: translateY(-50%);
}
.pass-card::after{
  content: "";
  position: absolute;
  right: -14px; top: 50%;
  width: 28px; height: 28px;
  background: var(--bg);
  border-radius: 50%;
  border: 1px solid var(--surface-line);
  transform: translateY(-50%);
}
.pass-top{ display: flex; justify-content: space-between; align-items: flex-start; }
.pass-eyebrow{ font-size: 11px; letter-spacing: .12em; color: var(--text-soft); font-weight: 700; text-transform: uppercase;}
.pass-code{ font-family: var(--font-head); font-weight: 800; font-size: 18px; margin-top: 4px;}
.pass-status{
  background: var(--teal-tint); color: var(--teal-dark);
  font-size: 11.5px; font-weight: 700;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.pass-route{
  display: flex; align-items: center; gap: 14px;
  margin: 26px 0;
}
.pass-city{ font-family: var(--font-head); font-weight: 800; font-size: 22px; }
.pass-city span{ display:block; font-family: var(--font-body); font-weight: 500; font-size: 11.5px; color: var(--text-soft); margin-top: 2px;}
.pass-plane{ flex: 1; position: relative; height: 2px; background: repeating-linear-gradient(90deg, var(--border) 0 6px, transparent 6px 12px); }
.pass-plane svg{ position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 20px; height: 20px; color: var(--coral); }
.pass-divider{ border-top: 1.5px dashed var(--border); margin: 22px 0; }
.pass-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pass-grid div b{ display:block; font-family: var(--font-head); font-size: 14.5px; }
.pass-grid div span{ font-size: 11px; color: var(--text-soft); }
.pass-note{ margin-top: 20px; font-size: 13px; color: var(--text-muted); background: var(--bg-alt); padding: 12px 14px; border-radius: 12px; }

/* ============================================
   Trust strip
   ============================================ */
.trust-strip{
  padding: 26px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}
.trust-item{
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 0 14px;
  position: relative;
}
.trust-item:not(:last-child)::after{
  content: "";
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 30px;
  background: var(--border);
}
.trust-item .ic{
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--coral-tint);
  color: var(--coral-dark);
  display: flex; align-items: center; justify-content: center;
}
.trust-item span{
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
@media (max-width: 700px){
  .trust-item:not(:last-child)::after{ display: none; }
}

/* ============================================
   Country Cards (Vizeler) — side-by-side
   ============================================ */
.country-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.country-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.country-head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.tab-flag{
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.tab-name{ display:block; font-family: var(--font-head); font-weight: 700; font-size: 17px; }
.tab-sub{ display:block; font-size: 12px; color: var(--text-soft); margin-top: 2px; }

.country-lead{ font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }

.mini-facts{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.mini-fact{
  background: var(--bg-alt-2);
  border-radius: 12px;
  padding: 10px 12px;
}
.mini-fact span{ display:block; font-size: 10.5px; color: var(--text-soft); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.mini-fact b{ display:block; font-family: var(--font-head); font-weight: 700; font-size: 14px; margin-top: 3px; color: var(--teal-dark); }

.country-card h5{
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-soft);
  margin: 20px 0 10px;
}

.doc-list li{
  display: flex; gap: 9px; align-items: flex-start;
  padding: 7px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.doc-list li:last-child{ border-bottom: none; }
.doc-list li svg{ flex-shrink: 0; margin-top: 3px; width: 14px; height:14px; color: var(--coral); }

.step-list{ counter-reset: step; }
.step-list li{
  counter-increment: step;
  display: flex; gap: 11px;
  align-items: flex-start;
  padding: 7px 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.step-list li::before{
  content: counter(step);
  flex-shrink: 0;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--coral-tint);
  color: var(--coral-dark);
  font-family: var(--font-head); font-weight: 700; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

.country-tip{
  margin-top: 20px;
  background: linear-gradient(135deg, var(--gold-tint), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 12.5px;
  color: #6E5218;
  line-height: 1.5;
}
.country-tip b{ color: #7A5416; }

.disclaimer{
  margin-top: 16px;
  font-size: 11.5px;
  color: var(--text-soft);
  display: flex; gap: 8px;
  background: var(--bg-alt-2);
  padding: 10px 14px;
  border-radius: 12px;
  line-height: 1.4;
}

/* ============================================
   Hakkımızda (About)
   ============================================ */
.about-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.about-grid h2{ font-size: clamp(26px, 3.2vw, 34px); margin-top: 14px; }
.about-text{ margin-top: 16px; color: var(--text-muted); font-size: 15.5px; }
.about-text + .about-text{ margin-top: 12px; }

.about-values{ display: flex; flex-direction: column; gap: 14px; }
.value-item{
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.value-ic{
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.value-item b{ display: block; font-family: var(--font-head); font-size: 15px; }
.value-item p{ font-size: 13px; color: var(--text-muted); margin-top: 5px; }

/* ============================================
   Other services grid
   ============================================ */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-tag{
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  color: var(--teal-dark); background: var(--teal-tint);
  display: inline-block; padding: 4px 10px; border-radius: var(--radius-pill);
}
.svc-card h5{ font-size: 16.5px; margin-top: 14px; }
.svc-card p{ font-size: 13.5px; color: var(--text-muted); margin-top: 8px; }
.svc-soon{
  position: absolute; top: 20px; right: 20px;
  font-size: 10.5px; font-weight: 700; color: var(--text-soft);
  background: var(--bg-alt); padding: 4px 10px; border-radius: var(--radius-pill);
}

/* ============================================
   Process (Süreç)
   ============================================ */
.process-row{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.process-row::before{
  content:"";
  position: absolute; top: 26px; left: 6%; right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step{ position: relative; z-index: 1; }
.process-num{
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--coral);
  color: var(--coral-dark);
  font-family: var(--font-head); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.process-step h5{ font-size: 15.5px; }
.process-step p{ font-size: 13.5px; color: var(--text-muted); margin-top: 8px; }

/* ============================================
   Why us
   ============================================ */
.why-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.why-card{
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.why-num{ font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--coral); opacity: .55; }
.why-card h5{ font-size: 17px; margin-top: 10px; }
.why-card p{ font-size: 14px; color: var(--text-muted); margin-top: 8px; }

.testimonial{
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.testimonial p{ font-family: var(--font-head); font-size: 22px; font-weight: 600; line-height: 1.5; }
.testimonial span{ display: block; margin-top: 18px; font-size: 13px; opacity: .8; }

/* ============================================
   FAQ
   ============================================ */
.faq-list{ max-width: 780px; }
.faq-item{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary{
  list-style: none;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 15.5px;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-plus{
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--coral-tint); color: var(--coral-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; transition: transform .25s ease;
}
.faq-item[open] .faq-plus{ transform: rotate(45deg); }
.faq-body{ padding: 0 24px 22px; color: var(--text-muted); font-size: 14.5px; }

/* ============================================
   Contact
   ============================================ */
.contact-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
}
.contact-form{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field{ display: flex; flex-direction: column; gap: 6px; }
.field label{ font-size: 13px; font-weight: 600; color: var(--text-muted); }
.field input, .field select, .field textarea{
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--coral);
}
.field.full{ grid-column: 1 / -1; margin-bottom: 16px; }
.contact-form textarea{ resize: vertical; min-height: 100px; }

.info-cards{ display: flex; flex-direction: column; gap: 14px; }
.info-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
}
.info-ic{
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--coral-tint); color: var(--coral-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-card b{ display: block; font-size: 11.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--text-soft); }
.info-card span{ display: block; font-size: 15px; font-weight: 600; margin-top: 3px; }

.boarding-cta{
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-radius: var(--radius-lg);
  padding: 26px;
  color: #fff;
}
.boarding-cta b{ font-size: 11px; letter-spacing: .1em; opacity: .85; }
.boarding-cta h5{ font-family: var(--font-head); font-size: 20px; margin: 8px 0 4px; }
.boarding-cta p{ font-size: 13px; opacity: .9; margin-bottom: 16px; }
.boarding-cta .btn{ background: #fff; color: var(--coral-dark); width: 100%; justify-content: center; }

/* ============================================
   Footer
   ============================================ */
footer{
  background: #241C16;
  color: #C9BDB1;
  padding: 44px 0 26px;
}
.footer-row{
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 20px;
}
.footer-brand{ display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-head); font-weight: 700; }
.footer-note{ font-size: 12.5px; text-align: center; color: #8B7F73; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .pass-card{ transform: none; max-width: 440px; }
  .country-grid{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .process-row{ grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .process-row::before{ display: none; }
  .why-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .nav-links{ display: none; }
  .header-actions .btn-secondary{ display: none; }
  .nav-toggle{ display: flex; }
  .brand-logo{ height: 68px; }
  .site-header.scrolled .brand-logo{ height: 52px; }
  .hero{ padding-top: 150px; }
  .hero-stats{ grid-template-columns: repeat(2, 1fr); }
  .services-grid{ grid-template-columns: 1fr; }
  .process-row{ grid-template-columns: 1fr 1fr; }
  .mini-facts{ grid-template-columns: repeat(2, 1fr); }
  .form-row{ grid-template-columns: 1fr; }
  section{ padding: 64px 0; }
  .hero{ padding-bottom: 60px; }
}
@media (max-width: 480px){
  .process-row{ grid-template-columns: 1fr 1fr; }
  .pass-grid{ grid-template-columns: 1fr 1fr; row-gap: 14px; }
}

/* Scroll-to-top */
.to-top{
  position: fixed; right: 24px; bottom: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--coral); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 400; border: none;
}
.to-top.show{ opacity: 1; pointer-events: auto; }
.to-top:hover{ transform: translateY(-3px); }
