/* =========================================================
   Akademi Global — ana səhifə üslubu
   Brend: bordo #87304E · narıncı #FF4F0F
   ========================================================= */

/* ---------- tokenlər ---------- */
:root {
  --maroon: #87304E;
  --maroon-700: #8A3355;
  --maroon-800: #72274A;
  --maroon-900: #4E1B31;
  --night: #5A1E39;
  --orange: #FF4F0F;
  --orange-2: #FF7A3D;
  --cream: #FFF7F3;
  --paper: #FFFFFF;
  --ink: #2F1A24;
  --muted: #7B616C;
  --line: rgba(135, 48, 78, .14);
  --shadow-sm: 0 2px 8px rgba(95, 35, 58, .06);
  --shadow-md: 0 14px 34px rgba(95, 35, 58, .09);
  --shadow-lg: 0 26px 60px rgba(95, 35, 58, .13);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --wrap: 1200px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- əsas ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--maroon-900);
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.35rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.12rem; }
p { margin: 0; }

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

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 999;
  background: var(--orange); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 16px; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

/* ---------- düymələr ---------- */
.btn {
  --btn-bg: var(--orange);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: .96rem;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-primary {
  background: var(--btn-bg); color: #fff;
  box-shadow: 0 10px 24px rgba(255, 79, 15, .28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(255, 79, 15, .34); }
.btn-ghost {
  background: rgba(255, 255, 255, .06); color: #fff;
  border-color: rgba(255, 255, 255, .32); backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .14); transform: translateY(-2px); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: .88rem; }
.btn-block { width: 100%; }

/* ---------- başlıq ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 220;
  padding: 14px 0;
  transition: background .28s ease, box-shadow .28s ease, padding .28s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .93);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 6px 26px rgba(55, 16, 31, .09);
  padding: 9px 0;
}
.header-inner { display: flex; align-items: center; gap: 26px; }

.brand { display: block; flex: none; }
.brand img { height: 34px; width: auto; transition: opacity .25s ease; }
.brand .brand-dark { display: none; }
.site-header.scrolled .brand-light { display: none; }
.site-header.scrolled .brand-dark { display: block; }

.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font); font-weight: 600; font-size: .93rem;
  color: rgba(255, 255, 255, .88); text-decoration: none;
  padding: 9px 13px; border-radius: 10px; background: none; border: 0; cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.nav-link svg { width: 10px; height: 7px; transition: transform .2s ease; }
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, .1); }
.site-header.scrolled .nav-link { color: var(--maroon-800); }
.site-header.scrolled .nav-link:hover { background: rgba(135, 48, 78, .08); color: var(--maroon); }

.has-sub { position: relative; }
.has-sub.open > .nav-link svg { transform: rotate(180deg); }
.sub {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-sub.open .sub, .has-sub:hover .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 9px; text-decoration: none;
  font-size: .92rem; font-weight: 500; color: var(--ink);
}
.sub a:hover { background: var(--cream); color: var(--maroon); }

.burger { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.burger span {
  display: block; width: 24px; height: 2px; border-radius: 2px;
  background: #fff; transition: transform .25s ease, opacity .2s ease, background .25s ease;
}
.burger span + span { margin-top: 5px; }
.site-header.scrolled .burger span { background: var(--maroon-800); }
body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- bayraq ---------- */
.flag {
  display: inline-block; width: 26px; height: 17.5px; flex: none;
  border-radius: 3px; overflow: hidden; background: #eee;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}
.flag svg { width: 100%; height: 100%; display: block; }
.flag-lg { width: 44px; height: 29px; border-radius: 5px; }

/* ================= HERO ================= */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #7C2F4E 0%, #5E2039 48%, #7E3252 100%);
  color: #fff;
  padding: 118px 0 0;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.orb-1 { width: 520px; height: 520px; right: -120px; top: -160px; background: radial-gradient(circle, rgba(255, 79, 15, .55), transparent 68%); }
.orb-2 { width: 460px; height: 460px; left: -160px; bottom: -180px; background: radial-gradient(circle, rgba(135, 48, 78, .85), transparent 70%); }
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.02fr .98fr; align-items: center;
  gap: 40px; padding-bottom: 34px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font); font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  color: rgba(255, 236, 228, .9);
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .16);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 79, 15, .6); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 79, 15, .55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 79, 15, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 79, 15, 0); }
}

.hero h1 { color: #fff; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--orange) 10%, #FFA46A 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead {
  max-width: 520px; margin-top: 18px;
  font-size: 1.06rem; color: rgba(255, 233, 224, .82);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 34px; list-style: none; margin: 34px 0 0; padding: 0;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats b {
  font-family: var(--font); font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1.1;
}
.hero-stats span { font-size: .84rem; color: rgba(255, 226, 215, .62); }

/* --- kürə --- */
.hero-globe { position: relative; display: flex; justify-content: center; }
.globe-stage {
  position: relative; width: min(100%, 505px); aspect-ratio: 1 / 1;
  cursor: grab; outline: none;
  /* şaquli sürüşdürmə səhifəyə qalır, üfüqi hərəkət kürəni fırladır */
  touch-action: pan-y;
}
.globe-stage.grabbing { cursor: grabbing; }
.globe-stage::after {
  content: ""; position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 15, .22), transparent 62%);
  filter: blur(38px); z-index: -1;
}
.globe-stage canvas { width: 100%; height: 100%; display: block; }

.pins { position: absolute; inset: 0; }
.pin {
  position: absolute; top: 0; left: 0;
  display: flex; align-items: center; gap: 8px;
  background: rgba(78, 27, 49, .74); border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px; padding: 4px; cursor: pointer;
  backdrop-filter: blur(4px);
  transition: opacity .18s linear, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  will-change: transform, opacity;
}
.pin .pin-flag {
  width: 26px; height: 17.5px; border-radius: 3px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
}
.pin .pin-label {
  font-family: var(--font); font-size: .78rem; font-weight: 700; color: #fff;
  max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0;
  transition: max-width .28s ease, opacity .22s ease, padding .28s ease;
}
.pin:hover, .pin:focus-visible, .pin.active {
  background: rgba(255, 79, 15, .92); border-color: rgba(255, 255, 255, .6);
  box-shadow: 0 8px 22px rgba(255, 79, 15, .4);
}
.pin:hover .pin-label, .pin:focus-visible .pin-label, .pin.active .pin-label {
  max-width: 140px; opacity: 1; padding-right: 8px;
}

.globe-hint {
  position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255, 231, 222, .6); white-space: nowrap;
  transition: opacity .3s ease;
}
.globe-hint svg { width: 15px; height: 15px; }
.globe-hint.faded { opacity: 0; }

/* --- seçilən ölkənin kartı --- */
.country-card {
  position: absolute; left: -6px; bottom: 4px; width: 306px; z-index: 300;
  background: rgba(80, 28, 50, .84);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-lg); padding: 18px 18px 16px;
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .42);
  opacity: 0; transform: translateY(14px) scale(.97);
  transition: opacity .28s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
}
.country-card.show { opacity: 1; transform: translateY(0) scale(1); }
.cc-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: 0; color: rgba(255, 255, 255, .5);
  font-size: 1.35rem; line-height: 1; cursor: pointer; padding: 4px;
}
.cc-close:hover { color: #fff; }
.cc-head { display: flex; gap: 12px; align-items: center; }
.cc-head h3 { color: #fff; font-size: 1.16rem; }
.cc-head p { font-size: .8rem; color: var(--orange-2); font-weight: 600; }
.cc-facts { list-style: none; margin: 14px 0 16px; padding: 0; display: grid; gap: 8px; }
.cc-facts li {
  position: relative; padding-left: 22px;
  font-size: .875rem; line-height: 1.45; color: rgba(255, 234, 226, .8);
}
.cc-facts li::before {
  content: ""; position: absolute; left: 4px; top: .5em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 0 3px rgba(255, 79, 15, .18);
}
.cc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: .92rem;
  color: #fff; text-decoration: none;
  background: var(--orange); padding: 10px 18px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cc-link svg { width: 15px; height: 15px; }
.cc-link:hover { transform: translateX(3px); box-shadow: 0 10px 22px rgba(255, 79, 15, .35); }

/* --- axan lent --- */
.hero-marquee {
  position: relative; border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .10); overflow: hidden; padding: 13px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 18px; width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: var(--font); font-size: .84rem; font-weight: 600; letter-spacing: .01em;
  color: rgba(255, 232, 223, .62); white-space: nowrap;
}
.marquee-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); opacity: .75; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ================= ÜMUMİ BÖLMƏ ================= */
.section { padding: 84px 0; }
.section-alt { background: var(--cream); }

.section-head { max-width: 660px; margin: 0 auto 42px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.kicker {
  display: inline-block;
  font-family: var(--font); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--orange);
  margin-bottom: 12px;
}
.kicker.light { color: var(--orange-2); }
.section-sub { margin-top: 14px; color: var(--muted); font-size: 1.02rem; }
.section-sub a { color: var(--maroon); font-weight: 600; }

/* açılma animasiyası */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.22, 1, .36, 1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ================= İSTİQAMƏTLƏR ================= */
.dest-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.dest-card {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 24px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .26s cubic-bezier(.22, 1, .36, 1), box-shadow .26s ease, border-color .26s ease;
  overflow: hidden;
}
.dest-card::after {
  content: ""; position: absolute; inset: auto -30% -60% auto; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255, 79, 15, .12), transparent 70%);
  opacity: 0; transition: opacity .3s ease;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(255, 79, 15, .3); }
.dest-card:hover::after { opacity: 1; }
.dest-card h3 { font-size: 1.14rem; }
.dest-card p { font-size: .92rem; color: var(--muted); }
.dest-card .go {
  margin-top: auto; padding-top: 12px;
  font-family: var(--font); font-weight: 700; font-size: .88rem; color: var(--orange);
  display: inline-flex; align-items: center; gap: 6px;
}
.dest-card .go::after {
  content: "→"; transition: transform .22s ease; display: inline-block;
}
.dest-card:hover .go::after { transform: translateX(4px); }

.dest-card.featured {
  grid-column: span 2;
  background: linear-gradient(140deg, #8B3557 0%, #5E2139 100%);
  border-color: rgba(255, 255, 255, .1);
}
.dest-card.featured h3 { color: #fff; font-size: 1.5rem; }
.dest-card.featured p { color: rgba(255, 232, 223, .78); max-width: 460px; }
.dest-card.featured .tags {
  display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 6px 0 0; padding: 0;
}
.dest-card.featured .tags li {
  font-size: .78rem; font-weight: 600; font-family: var(--font);
  color: rgba(255, 236, 228, .9);
  border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .06);
  padding: 5px 11px; border-radius: 999px;
}
.dest-card.all {
  grid-column: span 4; flex-direction: row; align-items: center; gap: 22px;
  background: var(--cream); border-style: dashed; border-color: rgba(135, 48, 78, .28);
  padding: 22px 28px;
}
.dest-card.all h3 { flex: none; }
.dest-card.all p { flex: 1; margin: 0; }
.dest-card.all .go { margin: 0; padding: 0; flex: none; }
.all-icon { color: var(--maroon); }
.all-icon svg { width: 40px; height: 40px; }

/* ================= ÜSTÜNLÜKLƏR ================= */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .26s ease, box-shadow .26s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 15px; margin-bottom: 16px;
  background: linear-gradient(140deg, rgba(255, 79, 15, .16), rgba(135, 48, 78, .14));
  color: var(--maroon);
}
.feat-ico svg {
  width: 25px; height: 25px; fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.feat h3 { margin-bottom: 8px; }
.feat p { font-size: .93rem; color: var(--muted); }

/* ================= PROSES ================= */
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  list-style: none; margin: 0; padding: 0; counter-reset: step;
}
.steps li {
  position: relative; padding: 26px 20px 22px;
  border-radius: var(--r-md); background: var(--cream); border: 1px solid var(--line);
}
.steps li::before {
  content: ""; position: absolute; left: 26px; right: -18px; top: 42px; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(135, 48, 78, .28) 0 6px, transparent 6px 12px);
}
.steps li:last-child::before { display: none; }
.steps .num {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--maroon); color: #fff;
  font-family: var(--font); font-weight: 800; font-size: .95rem;
  margin-bottom: 14px; box-shadow: 0 0 0 6px var(--cream);
}
.steps li:first-child .num { background: var(--orange); }
.steps h3 { font-size: 1.02rem; margin-bottom: 7px; }
.steps p { font-size: .89rem; color: var(--muted); }

/* ================= UNİVERSİTET ZOLAĞI ================= */
.band {
  background: linear-gradient(140deg, #7E2E4E 0%, #632340 60%, #7A2C4C 100%);
  color: #fff; padding: 72px 0;
}
.band-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.band-copy h2 { color: #fff; }
.band-copy p { margin: 16px 0 26px; color: rgba(255, 233, 224, .8); max-width: 480px; }
.band-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.band-stats div {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-md); padding: 20px 22px;
}
.band-stats b {
  display: block; font-family: var(--font); font-size: 2rem; font-weight: 800; color: var(--orange-2);
}
.band-stats span { font-size: .86rem; color: rgba(255, 230, 220, .7); }

/* ================= RƏYLƏR ================= */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev {
  margin: 0; padding: 26px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.stars { color: var(--orange); letter-spacing: 2px; font-size: .95rem; }
.rev blockquote { margin: 0; font-size: .98rem; color: #3A2029; }
.rev figcaption { display: flex; flex-direction: column; margin-top: auto; padding-top: 6px; }
.rev figcaption b { font-family: var(--font); color: var(--maroon-900); }
.rev figcaption span { font-size: .84rem; color: var(--muted); }

/* ================= FAQ ================= */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.faq-wrap .section-head { margin: 0; }
.faq { display: grid; gap: 10px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 4px 20px; transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: rgba(255, 79, 15, .32); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 30px 16px 0; position: relative;
  font-family: var(--font); font-weight: 700; font-size: 1rem; color: var(--maroon-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { padding: 0 0 18px; font-size: .95rem; color: var(--muted); }

/* ================= KONSULTASİYA ================= */
.consult {
  background:
    radial-gradient(ellipse 60% 80% at 12% 30%, rgba(255, 79, 15, .22), transparent 70%),
    linear-gradient(150deg, #7B2E4C 0%, #5A1E39 70%);
  color: #fff; padding: 80px 0;
}
.consult-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.consult-copy h2 { color: #fff; }
.consult-copy > p { margin: 16px 0 22px; color: rgba(255, 233, 224, .8); max-width: 460px; }
.consult-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.consult-list li {
  position: relative; padding-left: 30px; color: rgba(255, 236, 228, .9); font-size: .97rem;
}
.consult-list li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255, 79, 15, .18); border: 1px solid rgba(255, 79, 15, .55);
}
.consult-list li::after {
  content: ""; position: absolute; left: 6px; top: .62em;
  width: 6px; height: 3px; border-left: 2px solid var(--orange-2); border-bottom: 2px solid var(--orange-2);
  transform: rotate(-45deg);
}

.consult-form {
  background: rgba(255, 255, 255, .97); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-lg); display: grid; gap: 14px;
}
.field { display: grid; gap: 6px; }
.field label {
  font-family: var(--font); font-size: .85rem; font-weight: 700; color: var(--maroon-900);
}
.field label span { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  padding: 12px 14px; border-radius: var(--r-sm);
  border: 1px solid rgba(135, 48, 78, .22); background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255, 79, 15, .13);
}
.field .invalid { border-color: #D93025; box-shadow: 0 0 0 4px rgba(217, 48, 37, .12); }
.form-note { font-size: .8rem; color: var(--muted); text-align: center; }
.form-ok {
  font-size: .9rem; font-weight: 600; color: #1E7B34; text-align: center;
  background: rgba(30, 123, 52, .09); padding: 10px; border-radius: var(--r-sm);
}

/* ================= FOOTER ================= */
.site-footer { background: #4A1830; color: rgba(255, 236, 229, .78); padding: 62px 0 24px; }
.foot-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 40px;
}
.foot-brand img { height: 32px; margin-bottom: 16px; }
.foot-brand p { font-size: .92rem; max-width: 300px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255, 255, 255, .07); color: rgba(255, 236, 228, .85);
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.socials a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linejoin: round; }
.socials svg path[fill="currentColor"] { stroke: none; }

.foot-col { display: flex; flex-direction: column; gap: 9px; }
.foot-col h4 {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .12em;
  color: #fff; margin-bottom: 6px;
}
.foot-col a { font-size: .92rem; text-decoration: none; transition: color .18s ease; width: fit-content; }
.foot-col a:hover { color: var(--orange-2); }
.foot-col .addr { font-size: .9rem; color: rgba(255, 232, 223, .55); }
.foot-col .btn { margin-top: 6px; }

.foot-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .09); padding-top: 20px;
  font-size: .84rem; color: rgba(255, 232, 223, .5);
}

/* ================= ADAPTİVLİK ================= */
@media (max-width: 1080px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps li::before { display: none; }
  .rev-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  /* ⛔ backdrop-filter elementi `position: fixed` uşaqları üçün
     «containing block»-a çevirir — bu üzdən mobil menyu paneli
     başlığın hündürlüyündə kəsilirdi. Mobildə blur söndürülür. */
  .site-header,
  .site-header.scrolled,
  body.inner .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header.scrolled { background: #fff; }
  body.inner .site-header { background: #FFFAF7; }

  .burger { display: block; margin-left: auto; position: relative; z-index: 230; }
  body.nav-open .burger span { background: var(--maroon-800); }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 8px;
    background: #fff; padding: 92px 22px 28px; margin: 0;
    transform: translateX(100%); transition: transform .3s cubic-bezier(.22, 1, .36, 1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, .18); overflow-y: auto; z-index: 210;
  }
  body.nav-open .nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link { color: var(--maroon-900) !important; justify-content: space-between; font-size: 1rem; padding: 12px 10px; }
  /* Mobildə alt menyu HƏMİŞƏ açıqdır — istifadəçi ölkələri
     bir toxunuşla görsün deyə açıb-bağlamaq tələb olunmur. */
  .sub,
  .has-sub.open .sub,
  .has-sub:hover .sub,
  .has-sub.open:hover .sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0;
    padding: 0 0 0 10px; margin: 2px 0 10px 10px; display: block;
  }
  .sub a { padding: 11px 12px; font-size: .95rem; }
  /* Alt menyunun başlığı düymə yox, bölmə adı kimi görünür */
  .has-sub > .nav-link {
    pointer-events: none;
    font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted) !important; font-weight: 700;
    padding-bottom: 4px; margin-top: 6px;
  }
  .has-sub > .nav-link svg { display: none; }
  .nav-cta { margin-top: 10px; }

  .hero { padding-top: 108px; }
  .hero-inner { grid-template-columns: 1fr; gap: 8px; }
  .hero-copy { text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-globe { order: 2; margin-top: 8px; }
  .globe-stage { width: min(100%, 420px); }
  .country-card { position: static; width: 100%; max-width: 420px; margin: 4px auto 0; }
  .globe-hint { bottom: 2px; }

  .band-inner, .consult-inner, .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .section-head.left { text-align: center; margin: 0 auto 8px; }
  .dest-card.featured { grid-column: span 2; }
  .dest-card.all { grid-column: span 2; }
}

@media (max-width: 620px) {
  .section { padding: 62px 0; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card.featured { grid-column: span 1; }
  .dest-card.all { grid-column: span 1; flex-direction: column; align-items: flex-start; gap: 10px; padding: 24px; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .band-stats { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .hero { padding-top: 96px; }
  .hero h1 { font-size: 1.95rem; }
  .hero .lead { font-size: .98rem; }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .hero-actions .btn { flex: 1 1 100%; padding: 13px 24px; }
  .hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    margin-top: 22px; text-align: center;
  }
  .hero-stats li { align-items: center; }
  .hero-stats b { font-size: 1.3rem; }
  .hero-stats span { font-size: .74rem; line-height: 1.3; }
  .globe-stage { width: min(100%, 350px); }
  .eyebrow { font-size: .76rem; margin-bottom: 16px; }
  .consult-form { padding: 22px; }
}
