/* ============================================================
   QAYNOQ TURLAR — Premium Stylesheet v5
   Palette extracted from company logo:
   Deep Navy · Rich Gold · Bright Gold · Ivory
   ============================================================ */

/* ---------- Design Tokens ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core brand colors — deep navy + gold from the logo */
  --navy:     #0B1930;   /* deep navy — logo background */
  --navy-d:   #071220;   /* deepest navy */
  --navy-m:   #152848;   /* medium navy */
  --gold-d:   #9A7A14;   /* dark gold */
  --gold:     #C9A027;   /* rich gold — main accent */
  --gold-l:   #E0B84A;   /* lighter gold */
  --gold-br:  #F0C840;   /* bright gold */
  --gold-lt:  #FFD96A;   /* lightest gold */

  /* Surfaces */
  --cream:    #FBF7EE;   /* warm ivory */
  --cream-d:  #F0E8D5;
  --white:    #FFFFFF;
  --dark-sec: #152848;

  /* Text */
  --text:     #1C2438;
  --text-md:  #4A5570;
  --text-lt:  #8A9BB5;
  --border:   #D4C8B0;
  --border-l: #E8E2D4;

  /* Gradient used across the site (matches logo gold arc) */
  --grad: linear-gradient(110deg, var(--gold-d) 0%, var(--gold) 55%, var(--gold-br) 100%);

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(11,25,48,.08);
  --sh:    0 6px 28px rgba(11,25,48,.14);
  --sh-lg: 0 18px 64px rgba(11,25,48,.22);

  /* Misc */
  --radius:   10px;
  --radius-lg:18px;
  --radius-xl:28px;
  --tr:       .3s cubic-bezier(.4,0,.2,1);
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
input, textarea { font-family: var(--sans); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ---------- Typography ---------- */
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -.015em;
}
.section-title.light { color: var(--white); }

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow-tag::before,
.eyebrow-tag::after {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow-tag.light { color: var(--gold-lt); }
.eyebrow-tag.light::before,
.eyebrow-tag.light::after { background: var(--gold-lt); }
.eyebrow-tag.em { color: var(--gold-l); }

.lead-text       { font-size: 1.05rem; color: var(--text-md); line-height: 1.85; margin-bottom: 28px; }
.lead-text.light { color: rgba(255,255,255,.68); }

.section        { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border-radius: 3px;
  font-size: .85rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  transition: var(--tr);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--grad);
  color: var(--navy);
  border-color: transparent;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,160,39,.35); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-m); border-color: var(--navy-m); transform: translateY(-2px); box-shadow: var(--sh); }

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

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-gold {
  background: var(--grad);
  color: var(--navy);
  border-color: transparent;
  font-weight: 700;
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,160,39,.35); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}
.btn-navy:hover { background: var(--navy-m); transform: translateY(-2px); box-shadow: var(--sh); }

.btn-lg   { padding: 16px 40px; font-size: .9rem; }
.btn-sm   { padding: 9px 20px;  font-size: .77rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px; }

/* Header CTA — gold pill */
.btn-header-cta {
  display: inline-flex; align-items: center;
  padding: 8px 22px;
  border-radius: 45px;
  background: var(--gold);
  color: var(--navy);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  border: 2px solid transparent;
  transition: var(--tr);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(201,160,39,.35);
}
.btn-header-cta:hover { background: var(--gold-br); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,160,39,.45); }

/* Hero-specific buttons */
.btn-hero-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid transparent;
  font-weight: 800;
}
.btn-hero-primary:hover { background: var(--gold-br); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,160,39,.4); }

.btn-hero-outline {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.85);
  font-weight: 700;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.18); border-color: var(--white); transform: translateY(-2px); }

/* Header lang dropdown — light background variant */
.lang-drop-btn--light {
  background: var(--cream) !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--navy) !important;
  box-shadow: 0 1px 6px rgba(201,160,39,.12) !important;
}
.lang-drop-btn--light:hover {
  background: var(--cream-d) !important;
  border-color: var(--gold-d) !important;
  box-shadow: 0 2px 10px rgba(201,160,39,.22) !important;
}
.lang-dot--dark { background: var(--gold) !important; }

/* ---------- Language Dropdown ---------- */
.lang-drop { position: relative; }
.lang-drop-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 5px 12px;
  border-radius: 4px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.75);
  font-size: .77rem; font-weight: 700; letter-spacing: .07em;
  cursor: pointer;
  transition: var(--tr);
  user-select: none;
}
.lang-drop-btn:hover { background: rgba(255,255,255,.13); }
.lang-drop-btn .fa-chevron-down { font-size: .58rem; opacity: .65; transition: transform var(--tr); }
.lang-drop.open .lang-drop-btn .fa-chevron-down { transform: rotate(180deg); }
.lang-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-br); flex-shrink: 0; }

.lang-drop-menu {
  position: absolute;
  top: calc(100% + 10px); right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--sh-lg);
  padding: 6px;
  min-width: 155px;
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .2s, transform .2s;
  border: 1px solid var(--border-l);
}
.lang-drop.open .lang-drop-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang-drop-menu li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: .87rem; font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background var(--tr);
}
.lang-drop-menu li:hover  { background: var(--cream); }
.lang-drop-menu li.active { background: var(--navy); color: var(--white); font-weight: 700; }
.lang-flag { font-size: 1rem; }
.header-lang { flex-shrink: 0; }
.lang-drop-menu--left { right: auto; left: 0; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-d);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-link {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  transition: color var(--tr);
}
.topbar-link:hover { color: var(--gold-lt); }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,.1); }
.topbar-hours { color: rgba(255,255,255,.35); font-size: .75rem; }
.topbar-clock { color: var(--gold); font-size: .75rem; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-l);
  transition: box-shadow var(--tr);
}
.header.scrolled { box-shadow: var(--sh); }
.header-inner {
  display: flex; align-items: center;
  height: 72px; gap: 20px;
}

/* LOGO */
.logo-img-wrap {
  flex-shrink: 0;
  display: flex; align-items: center;
  border-radius: 30px;
  overflow: hidden;
}
.logo-img-wrap img {
  height: 52px;
  width: auto;
  object-fit: cover;
  display: block;
}

/* Footer logo */
.footer-logo-wrap {
  display: inline-flex;
  background: transparent;
  border-radius: 30px;
  overflow: hidden;
  padding: 0;
  margin-bottom: 16px;
}
.footer-logo-wrap img {
  height: 56px;
  width: auto;
  object-fit: cover;
  display: block;
}

/* Nav */
.nav { flex: 1; }
.nav-list { display: flex; justify-content: center; }
.nav-link {
  display: block; padding: 10px 12px;
  font-size: .82rem; font-weight: 500;
  color: var(--text-md); letter-spacing: .01em;
  transition: color var(--tr);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 12px; right: 12px;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--tr);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Bot nav link — Instagram gradient pill */
.nav-link-bot {
  background: linear-gradient(135deg, #E1306C 0%, #833AB4 50%, #F77737 100%);
  color: #fff !important;
  border-radius: 30px;
  padding: 6px 18px !important;
  font-weight: 700 !important;
  font-size: .78rem !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 3px 12px rgba(225,48,108,.35);
  transition: var(--tr);
}
.nav-link-bot:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(225,48,108,.45); }
.nav-link-bot::after { display: none !important; }

.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: .84rem; font-weight: 600; color: var(--navy);
  white-space: nowrap;
}
.header-phone i { color: var(--gold); }
.header-phone:hover { color: var(--gold-d); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; flex-shrink: 0; }
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--tr); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(7,18,32,.88) 0%, rgba(11,25,48,.58) 55%, rgba(11,25,48,.22) 100%);
}

.hero-body {
  position: relative; z-index: 2;
  max-width: 740px;
  padding-bottom: 90px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-lt);
}
.eyebrow-line { flex: none; width: 36px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 700; color: var(--white);
  line-height: 1.07; margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.73);
  margin-bottom: 38px; max-width: 500px;
  font-weight: 300; line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats bar */
.hero-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(7,18,32,.92);
  backdrop-filter: blur(14px);
  border-top: 2px solid transparent;
  border-image: var(--grad) 1;
}
.hero-bottom-inner { display: flex; align-items: center; padding: 20px 28px; }
.hero-stat { flex: 1; text-align: center; }
.hero-stat strong {
  display: block;
  font-family: var(--serif); font-size: 2.1rem;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 4px;
}
.hero-stat span { font-size: .68rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .1em; }
.hero-stat-div { width: 1px; height: 42px; background: rgba(255,255,255,.08); flex-shrink: 0; }

.hero-dots { position: absolute; bottom: 100px; right: 36px; z-index: 4; display: flex; flex-direction: column; gap: 8px; }
.hero-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.28); cursor: pointer; transition: var(--tr); }
.hero-dot.active { background: var(--gold-br); height: 22px; border-radius: 3px; }

.hero-arrow {
  position: absolute; bottom: 86px; left: 50%; transform: translateX(-50%);
  z-index: 4; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.45);
  display: flex; align-items: center; justify-content: center; font-size: .78rem;
  animation: arrowBounce 2.4s infinite; transition: var(--tr);
}
.hero-arrow:hover { border-color: var(--gold-br); color: var(--gold-br); }
@keyframes arrowBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; height: 560px; }
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 76%; height: 460px;
  border-radius: var(--radius-lg); box-shadow: var(--sh-lg);
}
.about-img-side {
  position: absolute; bottom: 0; right: 0;
  width: 50%; height: 280px;
  border-radius: var(--radius-lg); box-shadow: var(--sh-lg);
  border: 6px solid var(--cream);
}
.about-pill {
  position: absolute; top: 32px; right: -12px;
  background: var(--grad);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh); z-index: 2;
}
.about-pill i { font-size: 1.3rem; opacity: .85; }
.about-pill strong { display: block; font-family: var(--serif); font-size: 1.4rem; line-height: 1; }
.about-pill span { font-size: .67rem; font-weight: 600; opacity: .8; text-transform: uppercase; letter-spacing: .08em; }

.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: .93rem; }
.check-list i {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(201,160,39,.14); color: var(--gold-d);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; flex-shrink: 0;
  transition: background var(--tr), transform var(--tr);
}
.check-list li:hover i { background: rgba(201,160,39,.26); transform: scale(1.1); }
.about-cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.about-phone-link {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600; color: var(--navy);
  border-bottom: 1px dashed var(--gold); padding-bottom: 2px;
}
.about-phone-link i { color: var(--gold); }
.about-phone-link:hover { color: var(--gold-d); }

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.svc-card {
  background: var(--white); padding: 32px 24px;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: var(--tr); position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left; transition: transform var(--tr);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { background: var(--cream); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--gold-br);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 18px;
  transition: transform var(--tr), box-shadow var(--tr);
}
.svc-card:hover .svc-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(11,25,48,.22);
}
.svc-card h3 { font-size: .93rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-card p  { font-size: .82rem; color: var(--text-lt); line-height: 1.65; }

/* ---------- Destinations (16 Countries) ---------- */
.destinations { background: var(--navy-d); }

.dest-grid-16 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.dest-card-16 {
  position: relative; height: 235px;
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
}
.dest-card-16 img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.dest-card-16:hover img { transform: scale(1.07); }
.dest-info-16 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,18,32,.92) 0%, rgba(7,18,32,.08) 58%);
  padding: 18px 16px;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 3px; color: var(--white);
  transition: background var(--tr);
}
.dest-card-16:hover .dest-info-16 {
  background: linear-gradient(to top, rgba(11,25,48,.96) 0%, rgba(11,25,48,.28) 60%);
}
.dest-country-tag {
  font-size: .62rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-br);
}
.dest-info-16 h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; line-height: 1.2; }
.dest-info-16 p  { font-size: .72rem; color: rgba(255,255,255,.5); }
.dest-link-16 {
  display: flex; align-items: center; justify-content: center;
  width: 100%; margin-top: 10px;
  padding: 8px 0;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white);
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.dest-card-16:hover .dest-link-16 {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ---------- Tours ---------- */
.tours-section { background: var(--cream); }
.tour-filters {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 48px; padding-bottom: 28px; border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 8px 22px; border-radius: 2px;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-lt); background: transparent; border: 1px solid var(--border);
  transition: var(--tr);
}
.filter-btn:hover  { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.tours-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.tour-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border-l);
  transition: var(--tr);
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.tour-img { height: 215px; position: relative; overflow: hidden; }
.tour-img img { height: 100%; transition: transform .55s ease; }
.tour-card:hover .tour-img img { transform: scale(1.05); }
.tour-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--navy); color: var(--gold-br);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}
.tour-body { padding: 22px; }
.tour-body h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px; line-height: 1.3;
}
.tour-meta {
  display: flex; gap: 18px; font-size: .78rem; color: var(--text-lt);
  margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border-l);
}
.tour-meta span { display: flex; align-items: center; gap: 6px; }
.tour-meta i { color: var(--gold); }
.tour-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.tour-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 8px; border-radius: var(--radius);
  font-size: .77rem; font-weight: 700;
  text-decoration: none; transition: var(--tr);
}
.tour-btn--call {
  background: var(--navy);
  color: var(--white);
}
.tour-btn--call:hover { background: var(--navy-m); transform: translateY(-2px); }
.tour-btn--tg {
  background: #1A7BBF;
  color: var(--white);
}
.tour-btn--tg:hover { background: #1467a6; transform: translateY(-2px); }
.tour-btn--ig {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, #E1306C, #833AB4, #F77737);
  color: var(--white);
}
.tour-btn--ig:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ---------- Why Choose Us ---------- */
.why {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.why::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(201,160,39,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 15%, rgba(201,160,39,.08) 0%, transparent 50%);
}
.why-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start; }
.why-copy .section-title { margin-bottom: 16px; }
.why-copy .lead-text { margin-bottom: 36px; }
.why-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius-lg); overflow: hidden;
}
.why-card { padding: 28px 24px; background: rgba(255,255,255,.02); transition: background var(--tr); }
.why-card:hover { background: rgba(201,160,39,.07); }
.why-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--gold-br); opacity: .8; line-height: 1; margin-bottom: 6px; }
.why-card > i {
  font-size: 1rem; color: var(--gold-br);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(240,200,64,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background var(--tr), transform var(--tr);
}
.why-card:hover > i { background: rgba(240,200,64,.18); transform: scale(1.1); }
.why-card h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p  { font-size: .82rem; color: rgba(255,255,255,.72); line-height: 1.65; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--white); }
.testi-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border-l); transition: var(--tr);
}
.testi-card:hover { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,160,39,.08), var(--sh); transform: translateY(-4px); }
.testi-quote { font-size: 1.8rem; color: var(--gold); opacity: .35; margin-bottom: 14px; line-height: 1; }
.testi-body  { font-size: .95rem; color: var(--text-md); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.testi-stars { color: var(--gold-br); font-size: .88rem; letter-spacing: 3px; margin-bottom: 18px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 44px; height: 44px; background: var(--navy); color: var(--gold-br);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; flex-shrink: 0;
}
.testi-person strong { display: block; font-size: .9rem; color: var(--navy); }
.testi-person span   { font-size: .78rem; color: var(--text-lt); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 40px; }
.testi-controls button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--text-md); transition: var(--tr);
}
.testi-controls button:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.testi-dots { display: flex; gap: 6px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--tr); }
.testi-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); overflow: hidden; transition: border-color var(--tr);
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  width: 100%; text-align: left;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: .92rem; font-weight: 600; color: var(--navy);
  transition: background var(--tr);
}
.faq-q:hover { background: var(--cream); }
.faq-q i { flex-shrink: 0; color: var(--gold); font-size: .78rem; transition: transform var(--tr); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 16px 24px 20px;
  font-size: .9rem; color: var(--text-md); line-height: 1.75;
  border-top: 1px solid var(--border-l);
}

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-left .section-title { margin-bottom: 12px; }
.contact-left .lead-text { margin-bottom: 32px; }
.contact-channels { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.channel-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius);
  color: var(--white); font-size: 1.2rem;
  transition: var(--tr);
}
.channel-card > div { display: flex; flex-direction: column; }
.channel-card strong { font-size: .9rem; }
.channel-card span   { font-size: .75rem; opacity: .78; margin-top: 2px; }
.channel-card:hover  { transform: translateX(5px); box-shadow: var(--sh); }
.phone-card { background: var(--navy); }
.tg-card    { background: #1A7BBF; }
.ig-card    { background: linear-gradient(135deg,#E1306C,#833AB4,#F77737); }

.hours-box {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px;
}
.hours-box h5 { display: flex; align-items: center; gap: 8px; font-size: .87rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.hours-box h5 i { color: var(--gold); }
.hours-box p    { font-size: .85rem; color: var(--text-md); margin-bottom: 4px; }

/* Booking Form */
.booking-form {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
}
.booking-form h3 {
  font-family: var(--serif); font-size: 1.55rem; color: var(--navy);
  margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg.full { grid-column: 1/-1; }
.fg label { font-size: .71rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text); }
.fg input, .fg textarea {
  padding: 11px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: .9rem; color: var(--text);
  background: var(--white); outline: none; transition: border-color var(--tr);
}
.fg input:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--navy-d); padding: 72px 0; border-top: 2px solid transparent; border-image: var(--grad) 1; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.newsletter-inner h3 { font-family: var(--serif); font-size: 1.9rem; color: var(--white); margin-bottom: 6px; }
.newsletter-inner p  { color: rgba(255,255,255,.4); font-size: .9rem; }
.nl-form { display: flex; gap: 8px; }
.nl-form input {
  padding: 13px 20px; border-radius: 3px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05);
  color: var(--white); font-size: .9rem; min-width: 300px; outline: none;
  transition: border-color var(--tr);
}
.nl-form input::placeholder { color: rgba(255,255,255,.28); }
.nl-form input:focus { border-color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-d); border-top: 1px solid rgba(255,255,255,.04); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 56px; padding: 72px 0 56px; }
.footer-brand p {
  font-size: .84rem; color: rgba(255,255,255,.35);
  line-height: 1.75; margin-bottom: 18px; max-width: 280px;
  margin-top: 16px;
}
.footer-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600; color: var(--gold-br);
  margin-bottom: 20px; width: fit-content;
}
.footer-phone:hover { color: var(--gold-l); }
.footer-phone i { font-size: .82rem; }
.footer-socials { display: flex; gap: 10px; }
.fsoc {
  width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--white); transition: var(--tr);
}
.fsoc:hover { transform: translateY(-3px); }
.fsoc-tg { background: #1A7BBF; }
.fsoc-ig { background: linear-gradient(135deg,#E1306C,#833AB4); }

.footer-col h4 {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-col a   { font-size: .84rem; color: rgba(255,255,255,.35); transition: color var(--tr); }
.footer-col a:hover { color: var(--white); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .84rem; color: rgba(255,255,255,.35); }
.footer-contact-list i   { color: var(--gold); width: 14px; font-size: .8rem; flex-shrink: 0; margin-top: 3px; }
.footer-contact-list a   { color: rgba(255,255,255,.35); }
.footer-contact-list a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: rgba(255,255,255,.22); }

/* ---------- Floating Buttons ---------- */
.float-social { position: fixed; bottom: 28px; right: 20px; z-index: 998; display: flex; flex-direction: column; gap: 10px; }
.float-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,.22); transition: var(--tr);
}
.float-btn:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.float-phone { background: var(--navy); }
.float-tg    { background: #1A7BBF; }
.float-ig    { background: linear-gradient(135deg,#E1306C,#833AB4,#F77737); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — Mobile-First
   ============================================================ */

/* ── 1100px: large tablet / small laptop ── */
@media (max-width: 1100px) {
  .container        { padding: 0 20px; }
  .services-grid    { grid-template-columns: repeat(2,1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-inner        { grid-template-columns: 1fr; gap: 48px; }
  .dest-grid-16     { grid-template-columns: repeat(3,1fr); }
  .tours-grid       { grid-template-columns: repeat(2,1fr); }
  .testi-track      { grid-template-columns: repeat(2,1fr); }
}

/* ── 900px: tablet ── */
@media (max-width: 900px) {
  .section          { padding: 72px 0; }
  .about-grid       { grid-template-columns: 1fr; }
  .about-visual     { height: 360px; }
  .about-img-main   { width: 80%; height: 320px; }
  .about-img-side   { width: 48%; height: 220px; }
  .testi-track      { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 40px; }
  .why-cards        { grid-template-columns: repeat(3,1fr); }
  .dest-grid-16     { grid-template-columns: repeat(3,1fr); }
}

/* ── 768px: mobile ── */
@media (max-width: 768px) {
  .topbar { display: none; }

  .header-inner     { height: 64px; gap: 10px; }
  .logo-img-wrap img{ height: 44px; }
  .header-actions   { display: none; }
  .burger           { display: flex; }

  .nav {
    display: none; position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-l);
    padding: 8px 16px 16px; box-shadow: var(--sh);
    z-index: 800;
  }
  .nav.open  { display: block; }
  .nav-list  { flex-direction: column; gap: 0; }
  .nav-link  { display: block; padding: 14px 16px; font-size: .95rem; border-bottom: 1px solid var(--border-l); }
  .nav-link::after { display: none; }
  .nav-link-bot {
    margin: 8px 16px 4px;
    display: inline-flex;
    border-radius: 30px;
    padding: 10px 20px !important;
    border-bottom: none !important;
    color: #fff !important;
  }

  .hero          { min-height: 100svh; }
  .hero-body     { padding-bottom: 100px; padding-top: 20px; }
  .hero-title    { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub      { font-size: .95rem; }
  .hero-actions  { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-hero-primary, .btn-hero-outline { padding: 14px 28px; font-size: .85rem; }

  .hero-bottom-inner { padding: 14px 16px; gap: 0; }
  .hero-stat strong  { font-size: 1.4rem; }
  .hero-stat span    { font-size: .6rem; }
  .hero-stat-div     { width: 1px; height: 32px; }

  .section-title        { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .services-grid        { grid-template-columns: repeat(2,1fr); }
  .dest-grid-16         { grid-template-columns: repeat(2,1fr); }
  .dest-card-16         { height: 190px; }
  .tours-grid           { grid-template-columns: 1fr; }
  .why-cards            { grid-template-columns: repeat(2,1fr); }
  .form-row             { grid-template-columns: 1fr; }
  .newsletter-inner     { flex-direction: column; text-align: center; }
  .nl-form              { flex-direction: column; width: 100%; }
  .nl-form input        { min-width: 0; width: 100%; }
  .nl-form .btn         { width: 100%; justify-content: center; }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section              { padding: 60px 0; }
}

/* ── 520px: small mobile ── */
@media (max-width: 520px) {
  .container        { padding: 0 16px; }
  .section          { padding: 48px 0; }

  .header-inner     { height: 58px; }
  .logo-img-wrap img{ height: 38px; }
  .lang-drop-btn    { padding: 4px 9px; font-size: .72rem; }

  .hero-title       { font-size: clamp(1.75rem, 7.5vw, 2.4rem); }
  .hero-sub         { font-size: .88rem; max-width: 100%; }
  .btn-hero-primary,
  .btn-hero-outline { padding: 12px 22px; width: 100%; justify-content: center; }
  .hero-dots        { display: none; }

  .hero-bottom-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    padding: 12px 16px; gap: 10px;
  }
  .hero-stat-div { display: none; }
  .hero-stat { text-align: center; }
  .hero-stat strong  { font-size: 1.2rem; }

  .dest-grid-16  { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .dest-card-16  { height: 160px; }
  .dest-info-16 h3 { font-size: 1rem; }

  .services-grid { grid-template-columns: 1fr; }
  .svc-card      { padding: 22px 18px; }

  .tours-grid    { grid-template-columns: 1fr; }
  .tour-filters  {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 32px;
    scrollbar-width: none;
  }
  .tour-filters::-webkit-scrollbar { display: none; }
  .filter-btn    { padding: 8px 16px; font-size: .72rem; flex-shrink: 0; white-space: nowrap; }

  .why-inner     { padding: 0; }
  .why-cards     { grid-template-columns: 1fr 1fr; }
  .why-card      { padding: 18px 14px; }
  .why-num       { font-size: 1.8rem; }

  .booking-form       { padding: 20px 16px; }
  .contact-channels   { gap: 10px; }
  .channel-card       { padding: 14px 16px; }

  .footer-grid   { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid > div:nth-child(3),
  .footer-grid > div:nth-child(4) { display: none; }
  .footer-brand p { max-width: 100%; }

  .about-visual  { height: 260px; }
  .about-img-side{ display: none; }
  .about-img-main{ width: 100%; height: 260px; }
  .about-pill    { right: 0; }

  .testi-card    { padding: 22px 18px; }
  .testi-body    { font-size: .88rem; }

  .float-btn     { width: 42px; height: 42px; font-size: 1rem; }
  .float-social  { bottom: 20px; right: 14px; gap: 8px; }
}
