/* ============================================================
   Khobraat Travels — style.css
   Brand: Cerulean #1A7DC8 · Gold #F8B800 | Cairo + Tajawal
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --primary:      #1A7DC8;
  --primary-dark: #0E5A9A;
  --secondary:    #0C4F8A;
  --accent:       #F8B800;
  --accent-light: #FBCA30;
  --primary-ok:   oklch(0.60 0.17 228);
  --accent-ok:    oklch(0.83 0.16 80);
  --bg-light:     oklch(97.5% 0.006 228);
  --bg-white:     oklch(99.2% 0.004 228);
  --text-dark:    #1E2532;
  --text-body:    #3D4455;
  --text-muted:   #6C7589;
  --text-light:   #FFFFFF;
  --success:      #25D366;
  --border:       #E2E6EF;
  --shadow-sm:    0 2px 12px rgba(26,43,74,.08);
  --shadow-md:    0 8px 32px rgba(26,43,74,.14);
  --shadow-lg:    0 20px 60px rgba(26,43,74,.18);
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Cairo', 'Segoe UI', sans-serif;
  --font-body:    'Tajawal', 'Segoe UI', sans-serif;
  --section-gap:  clamp(56px, 8vw, 96px);
  --space-xs:     clamp(8px,  1vw,  12px);
  --space-sm:     clamp(14px, 2vw,  20px);
  --space-md:     clamp(20px, 3vw,  32px);
  --space-lg:     clamp(32px, 4.5vw, 56px);
  --space-xl:     clamp(48px, 6vw,  72px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-white);
  direction: rtl;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}
.section { padding-block: var(--section-gap); }
.section--dark { background: var(--secondary); color: var(--text-light); }
.section--light { background: var(--bg-light); }

.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(26,125,200,.1);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section--dark .tag { color: var(--accent); background: rgba(248,184,0,.15); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section--dark .section-title { color: var(--text-light); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.section--dark .section-subtitle { color: rgba(255,255,255,.7); }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #1A1A1A;
  box-shadow: 0 4px 20px rgba(248,184,0,.35);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(248,184,0,.45);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.btn-whatsapp {
  background: var(--success);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: #1eba58;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-sm { padding: 10px 22px; font-size: .9rem; }
.btn-lg { padding: 18px 42px; font-size: 1.1rem; }

/* ── Scroll Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ═══════════════════════════════════════
   HEADER / NAVBAR
═══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.header.scrolled {
  background: rgba(26,43,74,.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.header.scrolled .nav-link { color: rgba(255,255,255,.85); }
.header.scrolled .nav-link:hover { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.header.scrolled .nav-logo { color: #fff; }
.nav-logo img { width: 48px; height: 48px; object-fit: contain; border-radius: var(--radius-sm); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: rgba(248,184,0,.12);
}
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav overlay */
.mobile-nav {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--primary-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav .nav-link {
  font-size: 1.2rem;
  padding: 14px 32px;
  width: 100%;
  text-align: center;
  border-radius: var(--radius-md);
}
.mobile-nav .nav-link:hover { background: rgba(248,184,0,.15); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 16px; }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  inset-inline-start: 20px;
  color: rgba(255,255,255,.7);
  font-size: 1.8rem;
  line-height: 1;
  padding: 8px;
}
/* Staggered entrance for nav items */
.mobile-nav > .nav-link,
.mobile-nav > .btn {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease;
}
.mobile-nav.open > .nav-link,
.mobile-nav.open > .btn {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.open > :nth-child(2) { transition-delay: .08s; }
.mobile-nav.open > :nth-child(3) { transition-delay: .14s; }
.mobile-nav.open > :nth-child(4) { transition-delay: .20s; }
.mobile-nav.open > :nth-child(5) { transition-delay: .26s; }
.mobile-nav.open > :nth-child(6) { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .mobile-nav { transition: none; }
  .mobile-nav > .nav-link,
  .mobile-nav > .btn { transition: none; transition-delay: 0s !important; }
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6,32,64,.82) 0%, rgba(14,90,154,.65) 45%, rgba(8,48,96,.80) 100%),
    url('../imgs/c5727a64fed69922398009c813eab3fb.jpg') center/cover no-repeat;
  z-index: 0;
}

/* Animated floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(72px);
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(26,125,200,.28) 0%, transparent 70%);
  top: -120px; right: -80px;
  animation: orb-drift 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(248,184,0,.20) 0%, transparent 70%);
  bottom: -60px; left: -60px;
  animation: orb-drift 9s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(26,125,200,.15) 0%, transparent 70%);
  top: 40%; left: 55%;
  animation: orb-drift 15s ease-in-out infinite 3s;
}
@keyframes orb-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(24px,-20px) scale(1.05); }
  66%      { transform: translate(-18px,16px) scale(.96); }
}
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #062040 0%, #0E5A9A 50%, #083060 100%);
  z-index: -1;
}
/* Decorative pattern */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9963B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(88px, 14vh, 140px);
  padding-bottom: clamp(48px, 8vh, 80px);
}
.hero-inner {
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248,184,0,.18);
  border: 1px solid rgba(248,184,0,.4);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  font-kerning: normal;
  letter-spacing: -.01em;
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 620px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(248,184,0,.15);
  border: 1px solid rgba(248,184,0,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.trust-text { color: rgba(255,255,255,.9); }
.trust-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.trust-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  animation: bounce 2s infinite;
}
.hero-scroll span { font-size: 1.4rem; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════
   DESTINATIONS GRID
═══════════════════════════════════════ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card--large { grid-column: span 2; aspect-ratio: 3/2; }
.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.dest-card:hover .dest-img { transform: scale(1.06); }
.dest-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform .6s ease;
}
.dest-card:hover .dest-img-placeholder { transform: scale(1.06); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,35,.9) 0%, rgba(10,18,35,.3) 50%, transparent 100%);
}
.dest-info {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 24px 20px 20px;
}
.dest-flag { font-size: 1.4rem; margin-bottom: 6px; }
.dest-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.dest-card--large .dest-name { font-size: 1.5rem; }
.dest-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dest-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent-light);
  transition: gap var(--transition);
}
.dest-btn:hover { gap: 10px; }

/* ═══════════════════════════════════════
   DESTINATION FILTER TABS
═══════════════════════════════════════ */
.dest-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.filter-tab:hover:not(.is-active) {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(26,125,200,.05);
}
.filter-tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,125,200,.28);
}
.filter-tab i { font-size: .75rem; }

@keyframes filter-reveal {
  from { opacity: 0; transform: scale(0.95) translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.dest-card.filter-in {
  animation: filter-reveal .25s ease forwards;
}
@media (prefers-reduced-motion: reduce) {
  .dest-card.filter-in { animation: none; }
}

/* ═══════════════════════════════════════
   WHY US
═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
}
.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(248,184,0,.12), rgba(248,184,0,.06));
  border: 1.5px solid rgba(248,184,0,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.why-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why-desc {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  inset-inline-start: 16.5%;
  inset-inline-end: 16.5%;
  height: 2px;
  background: linear-gradient(to left, transparent, var(--accent), transparent);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 20px 24px 40px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  position: relative;
}
.step-icon-wrap {
  position: absolute;
  bottom: -10px;
  inset-inline-end: -8px;
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}
.step-desc {
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
}
.testi-quote {
  font-size: 3.5rem;
  color: var(--accent);
  line-height: .6;
  font-family: Georgia, serif;
  margin-bottom: 20px;
  opacity: .4;
}
.testi-text {
  font-size: .98rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-rating { color: var(--accent); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  font-size: .95rem;
}
.testi-city { font-size: .82rem; color: var(--text-muted); margin-top: 2px; }

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.slider-btn:hover { background: var(--accent); }
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.slider-dot::after {
  content: '';
  position: absolute;
  inset: -18px;
}
.slider-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════
   LEAD FORM
═══════════════════════════════════════ */
.form-section {
  background: linear-gradient(135deg, #062040 0%, var(--secondary) 60%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: -80px; inset-inline-end: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(248,184,0,.12) 0%, transparent 70%);
  pointer-events: none;
}
.form-section::after {
  content: '';
  position: absolute;
  bottom: -80px; inset-inline-start: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(248,184,0,.08) 0%, transparent 70%);
  pointer-events: none;
}
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.form-left .section-title { color: #fff; }
.form-left .section-subtitle { text-align: start; margin-inline: 0; color: rgba(255,255,255,.7); }
.form-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.form-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.form-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(248,184,0,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.lead-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-subtitle { font-size: .9rem; color: var(--text-muted); margin-bottom: 28px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-label span { color: var(--accent); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,125,200,.15);
}
.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid,
.was-validated .form-input:invalid,
.was-validated .form-select:invalid,
.was-validated .form-textarea:invalid {
  border-color: #D92D20;
  box-shadow: 0 0 0 3px rgba(217,45,32,.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-submit {
  grid-column: 1 / -1;
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
}
.form-privacy {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}
.form-success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-success-text { color: var(--text-muted); font-size: .95rem; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  text-align: right;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.8);
  padding-top: 72px;
  padding-bottom: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo img { width: 42px; height: 42px; object-fit: contain; border-radius: var(--radius-sm); }
.footer-desc {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
  color: rgba(255,255,255,.7);
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition), padding-right var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-link:hover { color: var(--accent); padding-inline-end: 6px; }
.footer-link::before {
  content: '‹';
  font-size: .7rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.footer-link:hover::before { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(248,184,0,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-icon i { color: var(--accent); font-size: 1rem; }
.footer-link i { color: rgba(255,255,255,.5); font-size: .8rem; flex-shrink: 0; }
.footer-contact-text a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact-text a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.6); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-bottom-link:hover { color: var(--accent); }

/* ═══════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════ */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  inset-inline-start: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-wa-btn {
  width: 58px;
  height: 58px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  color: #fff;
}
.float-wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.float-wa-label {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.float-whatsapp:hover .float-wa-label { opacity: 1; transform: translateX(0); }

.float-call {
  position: fixed;
  bottom: 28px;
  inset-inline-end: 28px;
  z-index: 900;
  display: none;
}
.float-call-btn {
  width: 58px;
  height: 58px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(248,184,0,.45);
  transition: transform var(--transition);
}
.float-call-btn:hover { transform: scale(1.1); }

/* Pulse ring animation */
.float-wa-btn::before, .float-call-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: .5;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #062040 0%, var(--secondary) 50%, var(--primary) 100%);
  padding-top: 120px;
  padding-bottom: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9963B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--accent); }

/* ═══════════════════════════════════════
   ABOUT PAGE SPECIFICS
═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.about-badge {
  position: absolute;
  bottom: 24px;
  inset-inline-end: 24px;
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
}
.about-badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.about-badge-label { font-size: .8rem; color: rgba(255,255,255,.85); margin-top: 4px; }

.about-text .tag { display: block; }
.about-text .section-title { text-align: start; }
.about-body {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.about-stat-label { font-size: .82rem; color: var(--text-muted); margin-top: 6px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.value-icon { font-size: 2.2rem; margin-bottom: 14px; }
.value-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.value-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}
.team-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 4px;
}
.team-role { font-size: .82rem; color: var(--accent); font-weight: 600; }
.team-bio { font-size: .82rem; color: var(--text-muted); margin-top: 10px; line-height: 1.6; }

/* ═══════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════ */
.service-section {
  padding-block: 72px;
  border-bottom: 1px solid var(--border);
}
.service-section:last-child { border-bottom: none; }
.service-section:nth-child(even) .service-layout { flex-direction: row-reverse; }
.service-layout {
  display: flex;
  gap: 64px;
  align-items: center;
}
.service-img-wrap {
  flex: 0 0 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.service-section:hover .service-img-wrap img { transform: scale(1.04); }
.service-content { flex: 1; }
.service-country {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.service-tagline { font-size: 1rem; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.service-desc { color: var(--text-body); line-height: 1.8; margin-bottom: 24px; }
.service-highlights { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--text-body);
}
.service-highlight::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(248,184,0,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.service-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin-bottom: 24px;
}
.service-price-from { font-size: .85rem; color: var(--text-muted); }
.service-price-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.service-price-note { font-size: .8rem; color: var(--text-muted); }
.service-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info {}
.contact-info .section-title { text-align: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.contact-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(248,184,0,.12), rgba(248,184,0,.06));
  border: 1.5px solid rgba(248,184,0,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card-label {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-card-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.contact-card-value a { transition: color var(--transition); }
.contact-card-value a:hover { color: var(--accent); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 32px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 20px;
}
.hours-item { font-size: .88rem; color: var(--text-body); }
.hours-day { color: var(--text-dark); font-weight: 600; }
.hours-time { color: var(--accent); }

.contact-form-wrap .lead-form { box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-banner .section-title { color: #fff; margin-bottom: 12px; }
.cta-banner-subtitle {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.cta-banner .btn-outline { border-color: rgba(255,255,255,.6); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,.15); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* Tablet 768px–1199px */
@media (max-width: 1199px) {
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-card--large { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .form-left { max-width: 540px; }
  .service-layout { gap: 40px; }
}

@media (max-width: 1023px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 500px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .testi-card { flex: 0 0 calc(50% - 12px); }
  .service-layout { flex-direction: column !important; }
  .service-img-wrap { flex: none; width: 100%; max-width: 500px; }
}

/* Mobile <768px */
@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .float-call { display: block; }

  .hero { min-height: 100svh; }
  .hero-orb { display: none; }
  .hero-title { font-size: 1.9rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-trust { justify-content: center; }

  .dest-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
    scrollbar-width: none;
    margin-inline: -4px;
    padding-inline: 4px;
  }
  .dest-filter::-webkit-scrollbar { display: none; }
  .filter-tab { flex-shrink: 0; }
  .destinations-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .dest-card--large { grid-column: span 2; aspect-ratio: 3/2; }
  .dest-btn { padding-block: 10px; }

  .why-grid { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .steps-grid::before { display: none; }
  .step { padding: 20px; }
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }
  .steps-cta { flex-direction: column; }
  .steps-cta .btn { width: 100%; justify-content: center; }

  .testi-card { flex: 0 0 calc(100%); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .form-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 28px 20px; }
  .form-input, .form-select, .form-textarea { font-size: 1rem; }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .about-stats { grid-template-columns: 1fr; gap: 16px; }

  .section-title { text-align: center; }
  .tag { display: block; text-align: center; }
  .about-text .section-title { text-align: center; }

  .float-whatsapp { bottom: 20px; inset-inline-start: 16px; }
  .float-call { bottom: 20px; inset-inline-end: 16px; }
  .float-wa-btn, .float-call-btn { width: 52px; height: 52px; font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card--large { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; }
}

/* ═══════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════ */
.progress-bar {
  position: fixed;
  top: 0; inset-inline: 0;
  height: 3px;
  background: linear-gradient(to left, var(--accent-light), var(--accent));
  width: 0%;
  z-index: 9999;
  transition: width .1s linear;
}

/* ═══════════════════════════════════════
   BACK TO TOP BUTTON
═══════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  inset-inline-end: 28px;
  z-index: 850;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  border: none;
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--accent); color: #1a1a1a; }

/* ═══════════════════════════════════════
   DESTINATION PLACEHOLDER — PER COUNTRY
═══════════════════════════════════════ */
.dest-card[data-dest="البوسنة والهرسك"] .dest-img-placeholder {
  background: linear-gradient(145deg, #0f5132 0%, #1a7a4a 50%, #0a3d24 100%);
}
.dest-card[data-dest="تركيا"] .dest-img-placeholder {
  background: linear-gradient(145deg, #8b0000 0%, #c0392b 50%, #641e1e 100%);
}
.dest-card[data-dest="تايلاند"] .dest-img-placeholder {
  background: linear-gradient(145deg, #4a0080 0%, #7b2fbe 50%, #2d0050 100%);
}

/* ═══════════════════════════════════════
   WHY-US CARD ENHANCEMENTS
═══════════════════════════════════════ */
.why-card { background: linear-gradient(160deg, #ffffff 0%, var(--bg-light) 100%); }
.why-icon { transition: transform var(--transition), background var(--transition), border-color var(--transition); }
.why-card:hover .why-icon {
  background: linear-gradient(135deg, rgba(248,184,0,.22), rgba(248,184,0,.1));
  border-color: rgba(248,184,0,.45);
  transform: scale(1.1) rotate(-4deg);
}

/* First why-card: featured wide layout to break identical-grid ban */
.why-grid .why-card:first-child {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  text-align: start;
  padding: 40px 36px;
  background: linear-gradient(135deg, #fff 0%, rgba(26,125,200,.04) 100%);
  border-color: rgba(26,125,200,.18);
}
.why-grid .why-card:first-child .why-icon { margin: 0; flex-shrink: 0; width: 80px; height: 80px; font-size: 2.2rem; }
.why-grid .why-card:first-child .why-title { font-size: 1.2rem; margin-bottom: 12px; }
.why-grid .why-card:first-child .why-desc { font-size: .95rem; line-height: 1.7; }
@media (max-width: 1199px) {
  .why-grid .why-card:first-child { grid-column: span 2; }
}
@media (max-width: 767px) {
  .why-grid .why-card:first-child {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }
  .why-grid .why-card:first-child .why-icon { margin: 0 auto 20px; }
}

/* ═══════════════════════════════════════
   TESTIMONIAL CARD ENHANCEMENTS
   (hover handled by ::before block below)
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   HERO BADGE PULSE
═══════════════════════════════════════ */
.hero-badge { animation: badge-glow 3s ease-in-out infinite; }
@keyframes badge-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(248,184,0,0); }
  50%      { box-shadow: 0 0 18px 4px rgba(248,184,0,.25); }
}

/* ═══════════════════════════════════════
   BUTTON RIPPLE
═══════════════════════════════════════ */
.btn { position: relative; overflow: hidden; }
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: scale(0);
  animation: ripple-expand .55s linear;
  pointer-events: none;
}
@keyframes ripple-expand { to { transform: scale(4); opacity: 0; } }

/* ═══════════════════════════════════════
   STEP HOVER
═══════════════════════════════════════ */
.step:hover .step-number {
  background: var(--accent);
  color: #1a1a1a;
  border-color: var(--accent-light);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .back-to-top { bottom: 90px; inset-inline-end: 16px; width: 40px; height: 40px; font-size: 1rem; }
}

/* ═══════════════════════════════════════
   FONT AWESOME ICON SIZES
═══════════════════════════════════════ */
.service-photo { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.why-icon i { font-size: 2rem; color: var(--accent); }
.step-icon-wrap i { font-size: 2.5rem; color: var(--accent); }
.trust-icon i { font-size: 1.8rem; color: var(--accent); }
.social-btn i { font-size: 1.2rem; }
.value-icon i, .values-card i { font-size: 2rem; color: var(--accent); }

/* ═══════════════════════════════════════
   LOGO SWAP — COLOR ↔ WHITE
═══════════════════════════════════════ */
.nav-logo .logo-white { display: none; }
.header.scrolled .nav-logo .logo-color { display: none; }
.header.scrolled .nav-logo .logo-white { display: block; }

/* ═══════════════════════════════════════
   PREMIUM STYLE LAYER
═══════════════════════════════════════ */

/* ── Section titles: gradient underline ── */
.section-title { position: relative; }
.text-center .section-title { padding-bottom: 22px; }
.text-center .section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 3px;
}
.section--dark .text-center .section-title::after {
  background: linear-gradient(to right, var(--accent-light), var(--accent));
}

/* ── Hero title: bold gold emphasis ── */
.hero-title span {
  color: var(--accent);
  font-weight: 900;
}

/* ── Hero trust: credential pills (no glassmorphism, no metric template) ── */
.hero-trust { gap: 14px; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  transition: background var(--transition), border-color var(--transition);
}
.trust-item:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(248,184,0,.5);
}
.trust-item i { color: var(--accent); font-size: .95rem; }

/* ── Destination card: pill CTA + deeper overlay ── */
.dest-overlay {
  background: linear-gradient(
    to top,
    rgba(4,10,24,.97) 0%,
    rgba(4,10,24,.55) 40%,
    rgba(4,10,24,.06) 72%,
    transparent 100%
  );
}
.dest-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(248,184,0,.14);
  border: 1px solid rgba(248,184,0,.40);
  border-radius: 24px;
  padding: 6px 16px;
  font-size: .85rem;
  transition: background var(--transition), border-color var(--transition),
              gap var(--transition), box-shadow var(--transition);
}
.dest-btn:hover {
  background: rgba(248,184,0,.28);
  border-color: var(--accent);
  gap: 10px;
  box-shadow: 0 4px 16px rgba(248,184,0,.3);
}
.dest-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 28px 64px rgba(4,10,24,.30);
}

/* ── Why card: gradient border on hover ── */
.why-card {
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
    linear-gradient(135deg, var(--border), var(--border)) border-box;
}
.why-card:hover {
  border-color: transparent;
  background:
    linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
    linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) border-box;
  box-shadow: 0 14px 42px rgba(26,125,200,.15);
  transform: translateY(-6px);
}

/* ── Step numbers: gradient bg in default state ── */
.step-number {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  box-shadow: 0 8px 28px rgba(14,90,154,.45);
  border-color: rgba(248,184,0,.6);
}

/* ── Testimonial: gradient top bar via ::before ── */
.testi-card {
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; inset-inline: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  opacity: .75;
  transition: opacity var(--transition);
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,43,74,.18);
}
.testi-card:hover::before { opacity: 1; }

/* ── Lead form: animated shimmer top bar ── */
.lead-form {
  position: relative;
  overflow: hidden;
}
.lead-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  background-size: 300% auto;
  animation: form-shimmer 3s linear infinite;
}
@keyframes form-shimmer {
  0%   { background-position: 0%   center; }
  100% { background-position: 300% center; }
}

/* ── FAQ open: tint + gold border (no side stripe) ── */
.faq-item.open {
  background: rgba(248,184,0,.04);
  border-color: rgba(248,184,0,.4);
  box-shadow: var(--shadow-sm);
}
.faq-item.open .faq-question { font-weight: 700; }

/* ── Tag: subtle border + glow ── */
.tag {
  border: 1px solid rgba(26,125,200,.22);
  box-shadow: 0 2px 12px rgba(26,125,200,.08);
}
.section--dark .tag {
  border-color: rgba(248,184,0,.32);
  box-shadow: 0 2px 12px rgba(248,184,0,.1);
}

/* ── Primary button: slide gradient ── */
.btn-primary {
  background: linear-gradient(90deg, var(--accent) 0%, #FFE040 50%, var(--accent) 100%);
  background-size: 200% auto;
  transition: background-position .4s ease, transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(248,184,0,.52);
}

/* ── Progress bar: animated shimmer ── */
.progress-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 300% auto;
  animation: form-shimmer 2s linear infinite;
}

/* ── Back to top: brand gradient ── */
.back-to-top {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 4px 20px rgba(26,125,200,.35);
}
.back-to-top:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  box-shadow: 0 8px 32px rgba(248,184,0,.45);
  color: #1a1a1a;
}

/* ── Social buttons: scale + lift ── */
.social-btn:hover {
  transform: translateY(-3px) scale(1.15);
}

/* ── Testimonials: warm gold-whisper surface for emotional differentiation ── */
#testimonials { background: oklch(98.8% 0.004 80); }

/* ── Footer link: RTL-correct arrow ── */
.footer-link::before { content: '›'; }

/* ── Section transition accent line ── */
.section--dark + .section,
.section--dark + .form-section {
  box-shadow: inset 0 4px 0 rgba(26,125,200,.10);
}

/* ── Section CTA row: removes inline style="margin-top:*" ── */
.destinations-grid + .text-center { margin-top: 40px; }
.steps-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ── Contact card: gradient icon border ── */
.contact-card-icon {
  transition: transform var(--transition), background var(--transition);
}
.contact-card:hover .contact-card-icon {
  transform: scale(1.12) rotate(-5deg);
  background: linear-gradient(135deg, rgba(248,184,0,.22), rgba(248,184,0,.1));
}

/* ── About stat: accent underline ── */
.about-stat-number {
  position: relative;
  display: inline-block;
}
.about-stat-number::after {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 6px;
}

/* ── Service highlight check: gold circle ── */
.service-highlight::before {
  background: rgba(248,184,0,.18);
  border: 1px solid rgba(248,184,0,.4);
}

/* ═══════════════════════════════════════
   FOCUS VISIBLE — keyboard accessibility
═══════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
/* Buttons clip outline via overflow:hidden — use box-shadow instead */
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248,184,0,.55);
}
.slider-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.slider-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* ═══════════════════════════════════════
   REDUCED MOTION — accessibility P0
═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in, .fade-in-left, .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
  .testimonials-track { transition: none !important; }
}
