/* ═══════════════════════════════════════════
   AP Travel | AirPass — style.css  v2.0
   Premium Travel Agency — Professional Edition
═══════════════════════════════════════════ */

/* ─── Reset & Variables ─────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --navy:       #061b3a;
  --navy2:      #092a59;
  --navy3:      #041225;
  --navy-light: #0d3060;
  --gold:       #c99b3d;
  --gold2:      #e6c16f;
  --gold3:      #f5d98a;
  --gold-dark:  #a07c28;
  --cream:      #fffaf1;
  --cream2:     #f7edd8;
  --ink:        #10233f;
  --muted:      #6b7fa0;
  --white:      #ffffff;

  /* Radii */
  --radius-sm:  12px;
  --radius:     20px;
  --radius-lg:  28px;
  --radius-xl:  36px;

  /* Shadows */
  --shadow-xs:  0 2px 8px rgba(6,27,58,.06);
  --shadow-sm:  0 6px 20px rgba(6,27,58,.09);
  --shadow:     0 16px 48px rgba(6,27,58,.13);
  --shadow-lg:  0 28px 72px rgba(6,27,58,.18);
  --shadow-gold:0 10px 36px rgba(201,155,61,.28);
  --shadow-gold-lg: 0 18px 52px rgba(201,155,61,.38);

  /* Transitions */
  --ease:       cubic-bezier(.4,0,.2,1);
  --ease-out:   cubic-bezier(0,.55,.45,1);
  --transition: .32s var(--ease);
  --transition-fast: .18s var(--ease);
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  font-size: 16px;
}

body {
  font-family: 'Cairo', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

/* ─── Scrollbar ─────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy3); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--gold-dark)); border-radius: 99px; }

/* ─── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,.08); }
.btn:active { transform: scale(.97) !important; }

.btn.gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 55%, var(--gold3) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
  border-color: transparent;
}
.btn.gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
}

.btn.outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn.outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold2);
  color: var(--gold2);
}

.btn.ghost-light {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
}
.btn.ghost-light:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }

.btn.navy {
  background: linear-gradient(135deg, var(--navy2), var(--navy-light));
  color: var(--white);
  border-color: rgba(201,155,61,.2);
}
.btn.navy:hover { background: linear-gradient(135deg, var(--navy-light), var(--navy2)); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn.lg { padding: 16px 38px; font-size: 1.07rem; }
.btn.sm { padding: 9px 20px; font-size: .88rem; }

/* ─── Section headings ───────────────────── */
.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 20px;
  background: rgba(201,155,61,.13);
  color: var(--gold2);
  border: 1px solid rgba(201,155,61,.28);
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .8px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.dark .sec-tag,
.why-section .sec-tag,
.turkey-section .sec-tag,
.cta-section .sec-tag {
  background: rgba(230,193,111,.1);
  color: var(--gold2);
  border-color: rgba(230,193,111,.22);
}
.sec-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.sec-head.light h2 { color: var(--white); }
.sec-head.light p  { color: rgba(255,255,255,.75); }
.sec-head p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.65;
}

/* ─── Sections ───────────────────────────── */
.section { padding: 96px 0; }
.section-light { background: var(--cream); }

/* ─── Reveal animations ──────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .62s var(--ease-out), transform .62s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .68s var(--ease-out), transform .68s var(--ease-out);
}
.reveal.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,250,241,.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(201,155,61,.12);
  transition: box-shadow .3s, background .3s;
}
.header.scrolled {
  background: rgba(255,250,241,.97);
  box-shadow: 0 2px 28px rgba(6,27,58,.1);
  border-bottom-color: rgba(201,155,61,.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  direction: ltr;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}
.brand:hover { opacity: .85; }
.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff8ea;
  border: 2px solid rgba(201,155,61,.3);
  padding: 0;
}
.brand-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.2px;
}
.brand-text span {
  display: block;
  font-size: .68rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: .96rem;
}
.nav a { color: var(--navy); transition: color var(--transition-fast); position: relative; padding-bottom: 2px; }
.nav a:not(.nav-book)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast);
  border-radius: 2px;
}
.nav a:not(.nav-book):hover { color: var(--gold); }
.nav a:not(.nav-book):hover::after { transform: scaleX(1); }

.nav-book {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy) !important;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
  transition: var(--transition) !important;
  border: 1px solid transparent;
}
.nav-book:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-gold-lg) !important;
}
.nav-book::after { display: none !important; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid rgba(201,155,61,.28);
  cursor: pointer;
  background: transparent;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.burger:hover { background: rgba(201,155,61,.08); border-color: rgba(201,155,61,.5); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 99px;
  transition: var(--transition);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(155deg, var(--navy3) 0%, var(--navy) 45%, #0d3060 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 90px 0 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  opacity: .38;
}
.orb1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(201,155,61,.55), transparent 70%);
  top: -130px; right: -130px;
  animation: orbDrift 12s ease-in-out infinite alternate;
}
.orb2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(13,48,96,.85), transparent 70%);
  bottom: -100px; left: -100px;
  animation: orbDrift 16s ease-in-out infinite alternate-reverse;
}
.orb3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,155,61,.2), transparent 70%);
  top: 50%; left: 30%;
  transform: translate(-50%,-50%);
  animation: orbDrift 10s ease-in-out infinite alternate;
}
@keyframes orbDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 20px); }
}
.orb3 { animation-name: orbDrift3; }
@keyframes orbDrift3 {
  0% { transform: translate(-50%,-50%); }
  100% { transform: translate(calc(-50% + 20px), calc(-50% - 15px)); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.stars { position: absolute; inset: 0; }
.star {
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out infinite alternate;
  opacity: 0;
}
@keyframes twinkle { 0%{opacity:0;transform:scale(.7)} 100%{opacity:.7;transform:scale(1.1)} }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content { color: var(--white); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: rgba(201,155,61,.18);
  border: 1px solid rgba(201,155,61,.38);
  border-radius: 999px;
  color: var(--gold2);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .8px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}

h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -.3px;
}
h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold2), var(--gold3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(.96rem, 1.7vw, 1.12rem);
  color: rgba(255,255,255,.8);
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-pills span {
  padding: 7px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  transition: background var(--transition-fast);
}
.hero-pills span:hover { background: rgba(255,255,255,.14); }

.hero-visual { position: relative; }

/* ── Hero Logo (replaces cover image) ── */
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}
.hero-logo-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,155,61,.22) 0%, rgba(201,155,61,.06) 50%, transparent 70%);
  animation: logoPulse 4s ease-in-out infinite alternate;
}
@keyframes logoPulse {
  0%  { transform: scale(.9);  opacity: .7; }
  100%{ transform: scale(1.08); opacity: 1; }
}
.hero-logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,155,61,.18);
  animation: ringRotate 18s linear infinite;
}
.ring1 { width: 340px; height: 340px; border-style: dashed; animation-direction: normal; }
.ring2 { width: 430px; height: 430px; border-color: rgba(255,255,255,.07); animation-direction: reverse; animation-duration: 28s; }
@keyframes ringRotate { from{ transform: rotate(0deg);} to{ transform: rotate(360deg);} }

.hero-logo-img {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  background: #fffaf1;
  border: 3px solid rgba(201,155,61,.45);
  box-shadow:
    0 0 0 10px rgba(201,155,61,.08),
    0 0 0 22px rgba(201,155,61,.04),
    0 20px 60px rgba(6,27,58,.5),
    0 4px 20px rgba(201,155,61,.3);
  animation: logoFloat 5s ease-in-out infinite alternate;
}
@keyframes logoFloat {
  0%  { transform: translateY(0px) rotate(-1deg); }
  100%{ transform: translateY(-16px) rotate(1deg); }
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,155,61,.22);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 44px rgba(6,27,58,.22), 0 2px 8px rgba(201,155,61,.12);
  animation: float 4.5s ease-in-out infinite alternate;
  z-index: 4;
}
.hero-float-card.card1 { bottom: 36px; right: -10px; }
.hero-float-card.card2 { top: 36px; left: -10px; animation-delay: 2.2s; }
.fc-icon { font-size: 1.6rem; }
.hero-float-card b { display: block; color: var(--navy); font-size: .92rem; font-weight: 800; line-height: 1.3; }
.hero-float-card small { color: var(--muted); font-size: .76rem; font-weight: 600; }
@keyframes float { 0%{transform:translateY(0)} 100%{transform:translateY(-14px)} }

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 34px;
  height: 54px;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 99px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  transition: border-color var(--transition-fast);
}
.scroll-down:hover { border-color: rgba(201,155,61,.5); }
.scroll-down span {
  width: 4px;
  height: 10px;
  background: var(--gold2);
  border-radius: 99px;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{transform:translateY(0);opacity:1} 80%{transform:translateY(14px);opacity:0} }

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy) 60%, var(--navy2) 100%);
  padding: 30px 0;
  border-top: 1px solid rgba(201,155,61,.18);
  border-bottom: 1px solid rgba(201,155,61,.18);
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,155,61,.06), transparent 65%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat {
  color: var(--white);
  padding: 16px 20px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: rgba(201,155,61,.2);
}
.stat strong {
  display: block;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat > span {
  font-size: .88rem;
  color: rgba(255,255,255,.68);
  font-weight: 700;
}

/* ══════════════════════════════════════════
   QUICK SERVICES
══════════════════════════════════════════ */
.quick-section {
  padding: 72px 0;
  background: var(--white);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.quick-item {
  background: var(--cream);
  border: 1.5px solid rgba(201,155,61,.15);
  border-radius: var(--radius);
  padding: 26px 14px 22px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.quick-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
  border-radius: 0 0 2px 2px;
}
.quick-item:hover {
  transform: translateY(-7px);
  border-color: rgba(201,155,61,.38);
  box-shadow: 0 18px 44px rgba(201,155,61,.13);
  background: linear-gradient(145deg, #fffdf7, #fff8e8);
}
.quick-item:hover::before { transform: scaleX(1); }
.qi-icon { font-size: 2.1rem; margin-bottom: 13px; }
.quick-item h3 { font-size: .93rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.quick-item p { font-size: .78rem; color: var(--muted); font-weight: 600; line-height: 1.4; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid rgba(201,155,61,.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.svc-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,155,61,.32);
  box-shadow: var(--shadow);
}
.svc-card:hover::after { transform: scaleX(1); transform-origin: left; }

.svc-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.svc-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  background: color-mix(in srgb, var(--c, #061b3a) 10%, transparent);
  border: 1.5px solid color-mix(in srgb, var(--c, #c99b3d) 22%, transparent);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.svc-card:hover .svc-ico { transform: scale(1.08); }
.svc-top h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  padding-top: 12px;
  line-height: 1.3;
}
.svc-card > p {
  color: var(--muted);
  font-weight: 600;
  font-size: .94rem;
  margin-bottom: 18px;
  line-height: 1.65;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.svc-tags span {
  padding: 5px 12px;
  background: rgba(6,27,58,.055);
  border-radius: 999px;
  font-size: .77rem;
  font-weight: 700;
  color: var(--navy);
  border: 1px solid rgba(6,27,58,.07);
}

/* ══════════════════════════════════════════
   TURKEY
══════════════════════════════════════════ */
.turkey-section {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,155,61,.1), transparent 40%),
    linear-gradient(160deg, #030d1f 0%, var(--navy) 50%, #061428 100%);
  padding: 96px 0;
  overflow: hidden;
}
.turkey-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201,155,61,.07), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(201,155,61,.05), transparent 30%);
}

.turkey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tr-card {
  background: var(--grad, linear-gradient(145deg,#1a1a2e,#16213e));
  border: 1.5px solid rgba(201,155,61,.16);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.tr-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(201,155,61,.08), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.tr-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid rgba(201,155,61,0);
  transition: border-color var(--transition);
}
.tr-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.tr-card:hover::before { opacity: 1; }
.tr-card:hover::after { border-color: rgba(201,155,61,.42); }
.tr-icon { font-size: 2.1rem; margin-bottom: 16px; }
.tr-content h3 {
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 9px;
  line-height: 1.3;
}
.tr-content p {
  font-size: .83rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.65;
}
.tr-badge {
  display: inline-block;
  padding: 5px 13px;
  background: rgba(201,155,61,.18);
  border: 1px solid rgba(201,155,61,.32);
  border-radius: 999px;
  color: var(--gold2);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .3px;
}
.turkey-cta { text-align: center; margin-top: 52px; }

/* ══════════════════════════════════════════
   DESTINATIONS
══════════════════════════════════════════ */
.dest-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.dtab {
  padding: 10px 26px;
  border-radius: 999px;
  border: 1.5px solid rgba(6,27,58,.13);
  background: var(--white);
  color: var(--navy);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.dtab:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 4px 16px rgba(201,155,61,.14); }
.dtab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  font-weight: 900;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.dest-card {
  background: var(--bg, linear-gradient(145deg, var(--navy), var(--navy2)));
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  color: var(--white);
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition), opacity .3s;
  border: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
}
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.25));
  border-radius: inherit;
}
.dest-card:hover { transform: translateY(-7px) scale(1.03); box-shadow: 0 18px 44px rgba(0,0,0,.25); }
.dc-emoji { font-size: 1.8rem; margin-bottom: 9px; }
.dc-name { font-size: 1rem; font-weight: 900; margin-bottom: 5px; line-height: 1.2; }
.dc-cities { font-size: .73rem; color: rgba(255,255,255,.68); font-weight: 600; margin-bottom: 9px; line-height: 1.4; }
.dc-badge {
  display: inline-block;
  padding: 3px 11px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  color: rgba(255,255,255,.9);
}
.egypt-card { border-color: rgba(201,155,61,.22); }

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.why-section {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,155,61,.09), transparent 50%),
    linear-gradient(135deg, var(--navy3), var(--navy));
  padding: 96px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(201,155,61,.18);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(201,155,61,.42);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.why-card:hover::before { opacity: 1; }
.why-icon { font-size: 2.4rem; margin-bottom: 18px; }
.why-card h3 { font-size: 1.07rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: .87rem; color: rgba(255,255,255,.68); font-weight: 600; line-height: 1.68; }

/* ══════════════════════════════════════════
   BRANCHES
══════════════════════════════════════════ */
.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 880px;
  margin: 0 auto;
}
.branch-card {
  background: var(--white);
  border: 1.5px solid rgba(201,155,61,.18);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.branch-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
  border-radius: 0 0 inherit inherit;
}
.branch-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(201,155,61,.38);
}
.branch-card:hover::before { transform: scaleX(1); transform-origin: left; }
.branch-flag { font-size: 3.2rem; flex-shrink: 0; }
.branch-info h3 {
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 7px;
}
.branch-info p { color: var(--muted); font-weight: 600; font-size: .91rem; margin-bottom: 13px; }
.branch-phone {
  display: block;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 900;
  direction: ltr;
  margin-bottom: 16px;
  transition: color var(--transition-fast);
}
.branch-phone:hover { color: var(--gold2); }

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
.cta-section {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,155,61,.16), transparent 50%),
    linear-gradient(135deg, #02091a, var(--navy3), #0a1c38);
  padding: 96px 0;
  overflow: hidden;
}
.cta-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,.45), transparent),
    radial-gradient(1.5px 1.5px at 30% 70%, rgba(255,255,255,.35), transparent),
    radial-gradient(1.5px 1.5px at 50% 40%, rgba(255,255,255,.45), transparent),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(255,255,255,.3), transparent),
    radial-gradient(1.5px 1.5px at 85% 25%, rgba(255,255,255,.4), transparent),
    radial-gradient(2.5px 2.5px at 20% 80%, rgba(201,155,61,.55), transparent),
    radial-gradient(2.5px 2.5px at 60% 10%, rgba(201,155,61,.45), transparent),
    radial-gradient(2.5px 2.5px at 90% 70%, rgba(201,155,61,.5), transparent);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(201,155,61,.22);
  border-radius: var(--radius-xl);
  padding: 52px 64px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 0 rgba(201,155,61,.12) inset,
              0 -1px 0 rgba(255,255,255,.05) inset;
}
.cta-text .sec-tag { margin-bottom: 14px; }
.cta-text h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  font-weight: 900;
  color: var(--white);
  margin: 10px 0 14px;
  line-height: 1.2;
}
.cta-text p { color: rgba(255,255,255,.72); font-size: 1rem; font-weight: 600; max-width: 420px; }
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-section { background: #fff8ea; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.contact-main {
  background: var(--white);
  border: 1.5px solid rgba(201,155,61,.18);
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  box-shadow: var(--shadow-sm);
}
.contact-main h3 { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 13px; }
.contact-main p { color: var(--muted); font-weight: 600; margin-bottom: 20px; line-height: 1.65; }
.contact-phone {
  display: inline-block;
  color: var(--gold);
  font-size: 1.55rem;
  font-weight: 900;
  direction: ltr;
  margin-bottom: 24px;
  transition: color var(--transition-fast);
}
.contact-phone:hover { color: var(--gold2); }
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-info {
  background: linear-gradient(145deg, var(--navy2), var(--navy));
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  color: var(--white);
  border: 1.5px solid rgba(201,155,61,.12);
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ci-item:last-child { border-bottom: none; padding-bottom: 0; }
.ci-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.ci-item strong { display: block; font-weight: 800; color: var(--gold2); margin-bottom: 4px; font-size: .95rem; }
.ci-item p { font-size: .87rem; color: rgba(255,255,255,.68); font-weight: 600; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--navy3);
  border-top: 1px solid rgba(201,155,61,.14);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  direction: ltr;
}
.footer-brand img {
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  padding: 0;
  object-fit: cover;
  border: 2px solid rgba(201,155,61,.25);
}
.footer-brand strong { display: block; color: var(--white); font-size: .95rem; font-weight: 800; }
.footer-brand span { display: block; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-weight: 700;
  font-size: .89rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--gold2); }
.footer-copy { text-align: left; }
.footer-copy p { color: rgba(255,255,255,.45); font-size: .8rem; font-weight: 600; line-height: 1.6; }

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .93rem;
  box-shadow: 0 8px 32px rgba(37,211,102,.4), 0 2px 8px rgba(37,211,102,.25);
  animation: waPulse 3s ease-in-out infinite;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 12px 44px rgba(37,211,102,.55); animation-play-state: paused; }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
@keyframes waPulse {
  0%,100%{ box-shadow: 0 8px 32px rgba(37,211,102,.4) }
  50%{ box-shadow: 0 8px 44px rgba(37,211,102,.62), 0 0 0 10px rgba(37,211,102,.1) }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Large Desktop (1200px+)
══════════════════════════════════════════ */
@media (min-width: 1200px) {
  .quick-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Medium (≤1100px)
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .quick-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .dest-grid  { grid-template-columns: repeat(4, 1fr); }
  .turkey-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Tablet (≤980px)
══════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding: 104px 0 64px; }
  .hero-visual { order: -1; }
  .hero-logo-wrap { height: 320px; }
  .hero-logo-img { width: 240px; height: 240px; }
  .hero-logo-ring.ring1 { width: 260px; height: 260px; }
  .hero-logo-ring.ring2 { width: 320px; height: 320px; }
  .hero-float-card.card1 { bottom: 10px; right: 0; }
  .hero-float-card.card2 { top: 10px; left: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }

  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .turkey-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr 1fr; max-width: 100%; }
  .branches-grid { grid-template-columns: 1fr; max-width: 520px; }
  .cta-inner { flex-direction: column; text-align: center; padding: 44px 36px; }
  .cta-text p { max-width: 100%; }
  .cta-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; max-width: 620px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile (≤700px)
══════════════════════════════════════════ */
@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1200px); }

  /* Header */
  .nav-wrap { min-height: 64px; position: relative; }
  .burger { display: flex; }
  .nav {
    position: absolute;
    top: 64px;
    right: 0; left: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255,250,241,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(201,155,61,.18);
    border-top: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 48px rgba(6,27,58,.14);
    padding: 10px 10px 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: var(--transition);
  }
  #nav-toggle:checked ~ .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
  }
  .nav a:not(.nav-book)::after { display: none; }
  .nav a:hover { background: rgba(201,155,61,.08); }
  .nav-book { margin-top: 6px; justify-content: center; }

  /* Hero */
  .hero { padding: 80px 0 56px; }
  h1 { font-size: clamp(1.85rem, 7.5vw, 2.5rem); }
  .hero-sub { font-size: .94rem; }
  .hero-btns .btn { width: 100%; }
  .hero-logo-wrap { height: 250px; }
  .hero-logo-img { width: 190px; height: 190px; }
  .hero-logo-ring.ring1 { width: 210px; height: 210px; }
  .hero-logo-ring.ring2 { width: 260px; height: 260px; }
  .hero-float-card { display: none; }
  .scroll-down { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat { padding: 18px 12px; }
  .stat:nth-child(1)::after,
  .stat:nth-child(3)::after { display: none; }
  .stat:nth-child(2)::after { display: block; }

  /* Sections */
  .section { padding: 64px 0; }
  .sec-head { margin-bottom: 36px; }

  /* Quick services */
  .quick-section { padding: 56px 0; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .quick-item { padding: 20px 12px 18px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-card { padding: 24px 22px; }

  /* Turkey */
  .turkey-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tr-card { padding: 18px 14px; }
  .tr-content h3 { font-size: .98rem; }

  /* Destinations */
  .dest-tabs { gap: 8px; }
  .dtab { padding: 9px 16px; font-size: .82rem; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 26px 18px; }

  /* Branches */
  .branch-card { flex-direction: column; text-align: center; padding: 32px 22px; gap: 16px; }
  .branch-phone { text-align: center; }
  .branch-info .btn { display: inline-flex; }

  /* CTA */
  .cta-inner { padding: 34px 22px; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Contact */
  .contact-main { padding: 28px 22px; }
  .contact-btns .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 28px 0 80px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 20px; }
  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; gap: 18px; }
  .footer-copy { text-align: center; }

  /* WA float */
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .turkey-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 1.82rem; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Very Small (≤360px)
══════════════════════════════════════════ */
@media (max-width: 360px) {
  .dest-grid { grid-template-columns: 1fr; }
  .hero-pills span { font-size: .82rem; padding: 6px 12px; }
}

/* ══════════════════════════════════════════
   STAGGERED REVEAL DELAYS
══════════════════════════════════════════ */
.quick-item:nth-child(2) { transition-delay: .07s; }
.quick-item:nth-child(3) { transition-delay: .14s; }
.quick-item:nth-child(4) { transition-delay: .21s; }
.quick-item:nth-child(5) { transition-delay: .28s; }
.quick-item:nth-child(6) { transition-delay: .35s; }

.svc-card:nth-child(2) { transition-delay: .09s; }
.svc-card:nth-child(3) { transition-delay: .18s; }
.svc-card:nth-child(4) { transition-delay: .09s; }
.svc-card:nth-child(5) { transition-delay: .18s; }
.svc-card:nth-child(6) { transition-delay: .27s; }

.tr-card:nth-child(2) { transition-delay: .07s; }
.tr-card:nth-child(3) { transition-delay: .14s; }
.tr-card:nth-child(4) { transition-delay: .21s; }
.tr-card:nth-child(5) { transition-delay: .09s; }
.tr-card:nth-child(6) { transition-delay: .16s; }
.tr-card:nth-child(7) { transition-delay: .23s; }
.tr-card:nth-child(8) { transition-delay: .30s; }

.why-card:nth-child(2) { transition-delay: .09s; }
.why-card:nth-child(3) { transition-delay: .18s; }
.why-card:nth-child(4) { transition-delay: .27s; }

.stat { transition: opacity .5s, transform .5s; }


/* ─── SEO Text Section ─────────────────── */
.seo-text {
  background: #fffaf1;
  padding: 48px 0;
  border-top: 1px solid rgba(201,155,61,.12);
}
.seo-text .container {
  max-width: 920px;
}
.seo-text h2 {
  color: var(--navy);
  font-size: clamp(1.45rem, 3.4vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.35;
}
.seo-text p {
  color: var(--muted);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.9;
}

