/* ===========================
   NOW TURİZM — Modern Design
   Inspired by keyftur.com
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ─── CSS Variables ─── */
:root {
  --primary:      #e51f2a;
  --primary-d:    #b9151f;
  --primary-soft: #fff0f1;
  --primary-glow: rgba(229, 31, 42, 0.15);
  --blue:         #c41822;
  --blue-l:       #e51f2a;
  --orange:       #e51f2a;
  --gold:         #f59e0b;
  --white:        #ffffff;
  --bg:           #fbfbfc;
  --card:         #ffffff;
  --text:         #111827;
  --muted:        #6b7280;
  --border:       #e5e7eb;
  --radius:       12px;
  --radius-lg:    18px;
  --shadow:       0 4px 20px rgba(0,0,0,.06);
  --shadow-hover: 0 12px 35px rgba(229, 31, 42, 0.12);
  --transition:   .22s ease;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { width: 100%; display: block; object-fit: cover; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

/* ─── Page Wipe Animation ─── */
.wipe {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 99999;
  transform: translateX(-100%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wipe.go {
  transform: translateX(-100%);
  animation: wipeEnter 0.42s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  pointer-events: all;
}
.wipe.leave {
  transform: translateX(0);
  animation: wipeLeave 0.42s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}
@keyframes wipeEnter {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}
@keyframes wipeLeave {
  0%   { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
.wipe-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
}
.wipe-logo {
  max-width: 260px;
  width: 65vw;
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.25));
  animation: wipeLogoPop 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes wipeLogoPop {
  0%   { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}
.wipe-tagline {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-family: 'Jost', sans-serif;
  opacity: 0.95;
}

/* ═══════════════════════════════════════
   TOPBAR
═══════════════════════════════════════ */
.topbar {
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 0 5vw;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-promo {
  background: #fff1;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  animation: blink 2.5s ease infinite alternate;
}
@keyframes blink { from { opacity:.7; } to { opacity:1; } }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-right a { color: #fff; opacity: .85; transition: opacity var(--transition); }
.topbar-right a:hover { opacity: 1; }
.topbar-right span { opacity: .4; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
  position: sticky;
  top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  font: bold italic 24px Georgia, serif;
}
.logo-text b { font-size: 22px; font-weight: 800; line-height: 1; display: block; }
.logo-text small {
  font-size: 8px; letter-spacing: .4em;
  color: var(--primary); font-weight: 700;
  display: block; margin-top: 2px;
}

/* Logo Image */
.logo-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  transition: transform var(--transition);
}
.logo:hover .logo-img {
  transform: scale(1.03);
}
.logo-img-sm {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img-footer {
  height: 58px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}
.logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.logo-card img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.logo-brand-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1.5px solid #fee2e2;
  border-radius: 40px;
  padding: 6px 18px 6px 8px;
  box-shadow: 0 4px 14px rgba(229, 31, 42, 0.08);
  margin-bottom: 16px;
}
.logo-brand-hero img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.logo-brand-hero span {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .logo-img { height: 42px; max-width: 140px; }
  .logo-img-footer { height: 48px; }
}

/* Nav */
.header-nav {
  display: flex; align-items: center; gap: 6px;
  flex: 1; justify-content: center;
}
.header-nav a {
  font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  color: var(--text); transition: var(--transition);
  white-space: nowrap;
}
.header-nav a:hover, .header-nav a.active {
  background: var(--primary-soft); color: var(--primary);
}
.header-nav .has-dropdown { position: relative; }
.header-nav .has-dropdown > a::after {
  content: ' ▾'; font-size: 10px;
}
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-hover);
  min-width: 200px; padding: 8px 0; z-index: 300;
}
.header-nav .has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 18px;
  font-size: 13px; border-radius: 0;
  color: var(--text);
}
.dropdown a:hover { background: var(--primary-soft); color: var(--primary); }

/* Header Actions */
.header-actions {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.btn-ghost {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 8px; border: 0;
  font-size: 13px; font-weight: 600;
  background: var(--bg); color: var(--text);
  cursor: pointer; transition: var(--transition);
}
.btn-ghost:hover { background: var(--primary-soft); color: var(--primary); }
.cart-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 8px; border: 0;
  font-size: 13px; font-weight: 700;
  background: var(--primary); color: var(--white);
  cursor: pointer; transition: var(--transition);
}
.cart-btn:hover { background: var(--primary-d); }
.cart-count {
  background: var(--white); color: var(--primary);
  font-size: 11px; font-weight: 800;
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-grid; place-items: center;
}

/* ─── Buttons (Red-First Design) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(229, 31, 42, 0.22);
}
.btn-primary:hover {
  background: var(--primary-d);
  border-color: var(--primary-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 31, 42, 0.32);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 8px;
}
.btn-full {
  width: 100%;
}
.btn-orange {
  background: var(--primary);
  color: #fff;
}
.btn-orange:hover {
  background: var(--primary-d);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: 0; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 16px 5vw 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0; font-size: 15px; font-weight: 600;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.mobile-nav a:last-child { border-bottom: 0; }

/* ═══════════════════════════════════════
   PROMO TICKER
═══════════════════════════════════════ */
.ticker {
  background: var(--bg);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px; font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.ticker-track {
  display: inline-flex; gap: 60px;
  animation: tickMove 28s linear infinite;
}
.ticker-item { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.ticker-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
@keyframes tickMove { to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   BUTTONS (Global)
═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); border: 0;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: var(--transition);
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(229,31,42,.35); }
.btn-blue { background: var(--blue-l); color: var(--white); }
.btn-blue:hover { background: var(--blue); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--blue-l);
  border: 2px solid var(--blue-l);
}
.btn-outline:hover { background: var(--blue-l); color: var(--white); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: #e08200; }
.btn-dark { background: var(--text); color: var(--white); }
.btn-dark:hover { background: #333; }
.btn-sm { padding: 9px 18px; font-size: 12px; border-radius: 8px; }
.btn-full { width: 100%; }

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  background: var(--white);
  padding: 56px 5vw 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-circle {
  position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  border: 60px solid #ffe8e8;
  pointer-events: none; z-index: 0;
}
.hero-bg-circle2 {
  position: absolute; bottom: -80px; right: 200px;
  width: 200px; height: 200px; border-radius: 50%;
  background: #fff0f1;
  pointer-events: none; z-index: 0;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2; max-width: 1280px; margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .2em;
  color: var(--primary); text-transform: uppercase; margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800; line-height: 1.1; color: var(--text);
  margin-bottom: 16px;
}
.hero h1 em { color: var(--primary); font-style: normal; }
.hero-sub { font-size: 15px; color: var(--muted); margin-bottom: 32px; max-width: 460px; }

/* Search Box */
.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 30px rgba(0,0,0,.12);
  overflow: hidden;
}
.search-tabs {
  display: flex; gap: 4px;
  padding: 14px 14px 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
}
.search-tabs::-webkit-scrollbar { display: none; }
.search-tab {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 14px 12px; border-radius: 10px 10px 0 0; border: 0;
  font-size: 12px; font-weight: 600; cursor: pointer;
  background: transparent; color: var(--muted);
  transition: var(--transition); white-space: nowrap;
}
.search-tab svg, .search-tab img { width: 22px; height: 22px; }
.search-tab.active { background: var(--blue-l); color: var(--white); }
.search-tab:hover:not(.active) { background: var(--bg); color: var(--blue-l); }
.search-body { padding: 18px; }
.search-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; }
.search-field {
  display: flex; flex-direction: column;
  gap: 4px;
}
.search-field label {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
}
.search-field input, .search-field select {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 11px 14px; font-size: 14px; font-weight: 500;
  background: var(--white); color: var(--text);
  transition: border-color var(--transition);
}
.search-field input:focus, .search-field select:focus {
  outline: none; border-color: var(--blue-l);
}

/* Hero Image */
.hero-img-wrap {
  position: relative; border-radius: 300px 0 0 300px;
  overflow: hidden; height: 480px;
}
.hero-img-wrap img { height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 30px; left: -20px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 14px 20px; display: flex; flex-direction: column; gap: 2px;
}
.hero-badge strong { font-size: 20px; font-weight: 800; color: var(--primary); }
.hero-badge span { font-size: 11px; color: var(--muted); font-weight: 600; }

/* ═══════════════════════════════════════
   TRUST BAND
═══════════════════════════════════════ */
.trust-band {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 5vw;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  max-width: 1280px; margin: 0 auto;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text);
}
.trust-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--white); box-shadow: var(--shadow);
  display: grid; place-items: center; font-size: 18px; flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.section { padding: 80px 5vw; max-width: 100%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--blue); color: var(--white); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 20px;
}
.section-head-left { display: flex; flex-direction: column; gap: 4px; }
.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary);
}
.section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800; line-height: 1.1;
  color: var(--text);
}
.section-dark .section-title { color: var(--white); }
.section-sub { font-size: 15px; color: var(--muted); margin-top: 8px; }
.see-all {
  font-size: 13px; font-weight: 700; color: var(--blue-l);
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap; transition: gap var(--transition);
}
.see-all:hover { gap: 8px; }

/* ═══════════════════════════════════════
   TOUR CARDS
═══════════════════════════════════════ */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tour-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex; flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.tour-card-img {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #f1f5f9;
}
.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.04); }
.tour-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 20px;
}
.tour-badge.blue { background: var(--blue-l); }
.tour-badge.orange { background: var(--orange); }
.tour-badge.green { background: #16a34a; }
.fav-btn {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: 0; cursor: pointer;
  display: grid; place-items: center; font-size: 16px;
  transition: var(--transition);
}
.fav-btn:hover { background: var(--white); transform: scale(1.1); }
.tour-card-body {
  padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px;
}
.tour-meta { font-size: 11px; color: var(--muted); font-weight: 600; }
.tour-name { font-size: 17px; font-weight: 700; line-height: 1.3; }
.tour-desc { font-size: 13px; color: var(--muted); flex: 1; }
.tour-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.tour-price { display: flex; flex-direction: column; gap: 1px; }
.tour-price small { font-size: 10px; color: var(--muted); font-weight: 600; }
.tour-price strong { font-size: 22px; font-weight: 800; color: var(--primary); }
.tour-price .old-price {
  font-size: 12px; color: var(--muted);
  text-decoration: line-through;
}
.tour-link { font-size: 12px; color: var(--blue-l); font-weight: 700; }
.tour-link:hover { text-decoration: underline; }

/* Stars */
.stars { display: flex; gap: 2px; font-size: 12px; color: var(--orange); }
.stars-row { display: flex; align-items: center; gap: 6px; }
.stars-count { font-size: 11px; color: var(--muted); }

/* ═══════════════════════════════════════
   CATEGORY CARDS (Photo Cards)
═══════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  text-decoration: none;
  background: #1e293b;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(229, 31, 42, 0.28);
  border-color: var(--primary);
}
.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
}
.cat-card:hover .cat-card-img {
  transform: scale(1.08);
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.15) 0%,
    rgba(15, 23, 42, 0.4) 45%,
    rgba(15, 23, 42, 0.92) 100%
  );
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.35s ease;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(229, 31, 42, 0.2) 0%,
    rgba(15, 23, 42, 0.5) 45%,
    rgba(15, 23, 42, 0.95) 100%
  );
}
.cat-card-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: background 0.3s ease, color 0.3s ease;
}
.cat-card:hover .cat-card-badge {
  background: var(--primary);
  color: #ffffff;
}
.cat-card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cat-card-content h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.cat-card-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}
.cat-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  transition: gap 0.25s ease, color 0.25s ease;
}
.cat-card:hover .cat-card-cta {
  gap: 10px;
  color: #ffccd0;
}

/* ═══════════════════════════════════════
   CAMPAIGN CARDS
═══════════════════════════════════════ */
.campaign-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.campaign-card {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; height: 280px; cursor: pointer;
}
.campaign-card img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.campaign-card:hover img { transform: scale(1.05); }
.campaign-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75));
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
}
.campaign-badge {
  background: var(--orange); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; align-self: flex-start; margin-bottom: 8px;
}
.campaign-overlay h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.campaign-overlay p { font-size: 13px; color: rgba(255,255,255,.8); }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-l), var(--primary));
  display: grid; place-items: center; color: var(--white);
  font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.review-author strong { font-size: 14px; font-weight: 700; display: block; }
.review-author span { font-size: 12px; color: var(--muted); }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════
   BENEFITS GRID
═══════════════════════════════════════ */
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.benefit-card {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 28px 24px;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.benefit-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: #fff5f5; display: grid; place-items: center; font-size: 30px;
}
.benefit-card h3 { font-size: 15px; font-weight: 700; }
.benefit-card p { font-size: 13px; color: var(--muted); }

/* ═══════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════ */
.newsletter {
  background: linear-gradient(135deg, #8b0f16 0%, var(--primary) 100%);
  padding: 70px 5vw;
  text-align: center; color: var(--white);
}
.newsletter h2 { font-size: clamp(26px,3.5vw,42px); font-weight: 800; margin-bottom: 12px; }
.newsletter p { font-size: 15px; opacity: .9; margin-bottom: 32px; }
.newsletter-form {
  display: flex; gap: 0; max-width: 500px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.newsletter-form input {
  flex: 1; padding: 16px 20px; border: 0; font-size: 14px;
  background: var(--white);
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  padding: 16px 24px; background: #111827; color: var(--white);
  border: 0; font-size: 14px; font-weight: 700; cursor: pointer;
  white-space: nowrap; transition: var(--transition);
}
.newsletter-form button:hover { background: #000000; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #0f1b2d; color: #b0bec5;
  padding: 60px 5vw 30px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1280px; margin: 0 auto 40px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col a {
  display: block; font-size: 13px; color: #b0bec5;
  margin-bottom: 10px; transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: #1e2d42; display: grid; place-items: center;
  font-size: 16px; color: #b0bec5; transition: var(--transition);
}
.social-btn:hover { background: var(--primary); color: var(--white); }
.footer-bottom {
  border-top: 1px solid #1e2d42; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 12px;
  max-width: 1280px; margin: 0 auto;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-icon { width: 38px; height: 38px; font-size: 20px; }
.footer-logo .logo-text b { font-size: 18px; color: var(--white); }
.footer-logo .logo-text small { color: #b0bec5; }

/* ═══════════════════════════════════════
   PAGE HEAD (inner pages)
═══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #990f17 0%, #c41822 45%, #e51f2a 100%);
  padding: 64px 5vw;
  color: var(--white);
  position: relative; overflow: hidden;
  box-shadow: inset 0 -10px 30px rgba(0,0,0,0.15);
}
.page-hero::before {
  content: '';
  position: absolute; top: -140px; right: -100px;
  width: 440px; height: 440px; border-radius: 50%;
  border: 50px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -80px; right: 200px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero .eyebrow {
  color: rgba(255,255,255,.9);
  font-weight: 800;
  letter-spacing: .22em;
}
.page-hero h1 {
  font-size: clamp(32px,5vw,56px); font-weight: 800;
  line-height: 1.1; margin: 12px 0 16px;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.22);
}
.page-hero p { font-size: 15px; color: rgba(255,255,255,.92); max-width: 540px; }
.page-hero .logo-brand-hero {
  background: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.75); margin-top: 20px;
}
.breadcrumb a { color: #ffffff; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: .6; }

/* ═══════════════════════════════════════
   TOURS LIST PAGE
═══════════════════════════════════════ */
.tours-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 32px; align-items: start;
  max-width: 1280px; margin: 0 auto;
}
.sidebar {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 88px;
}
.sidebar h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.filter-group { margin-bottom: 24px; }
.filter-group label {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  padding: 6px 0; transition: color var(--transition);
}
.filter-group label:hover { color: var(--blue-l); }
.filter-group input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--blue-l); }
.filter-group-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.filter-divider { border: 0; border-top: 1px solid var(--border); margin: 16px 0; }
.range-input { width: 100%; accent-color: var(--blue-l); }
.range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 6px; }

.tours-main-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.tours-main-head p { font-size: 14px; color: var(--muted); }
.sort-select {
  padding: 8px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 13px; font-weight: 600;
  background: var(--white); cursor: pointer;
}

/* Filter Chips */
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--border); background: var(--white);
  transition: var(--transition);
}
.chip.active, .chip:hover {
  border-color: var(--primary); background: var(--primary-soft); color: var(--primary);
}

/* ═══════════════════════════════════════
   TOUR DETAIL PAGE
═══════════════════════════════════════ */
.tour-hero {
  position: relative; width: 100%; height: 460px; overflow: hidden;
  background: #0f172a;
}
.tour-hero > img:first-child,
.tour-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; z-index: 0;
}
.tour-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,23,42,0.15) 0%, rgba(15,23,42,0.78) 100%),
              linear-gradient(90deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.3) 60%, transparent 100%);
}
.tour-hero-content {
  position: absolute; inset: 0; padding: 48px 5vw;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--white); max-width: 820px; z-index: 2;
}
.tour-hero-content .logo-brand-hero {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: fit-content !important;
  height: auto !important;
}
.tour-hero-content .logo-brand-hero img {
  position: static !important;
  width: auto !important;
  height: 24px !important;
  display: inline-block !important;
  object-fit: contain !important;
}
.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 20px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  margin-bottom: 8px;
}
.tour-hero-content h1 { font-size: clamp(32px,5vw,56px); font-weight: 800; line-height: 1.1; margin: 10px 0 12px; }
.tour-hero-content p { font-size: 15px; opacity: .85; }

/* Sticky Tabs */
.detail-tabs {
  position: sticky; top: 72px; z-index: 100;
  background: var(--white); border-bottom: 2px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.detail-tabs-inner {
  display: flex; gap: 6px; padding: 0 5vw;
  overflow-x: auto; scrollbar-width: none;
  max-width: 1280px; margin: 0 auto;
}
.detail-tabs-inner::-webkit-scrollbar { display: none; }
.detail-tab {
  padding: 18px 20px; font-size: 14px; font-weight: 700;
  color: var(--muted); border-bottom: 3px solid transparent;
  cursor: pointer; white-space: nowrap; transition: var(--transition);
  background: none; border-top: 0; border-left: 0; border-right: 0;
  display: inline-flex; align-items: center; gap: 8px;
}
.detail-tab:hover { color: var(--primary); background: var(--primary-soft); }
.detail-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--primary-soft);
  border-radius: 8px 8px 0 0;
}

/* In-Place Tab Panes (Keyftur.com Style) */
.detail-tab-pane {
  display: none;
}
.detail-tab-pane.active {
  display: block;
  animation: tabFade .24s ease-out forwards;
}
@keyframes tabFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tour Shell */
.tour-shell {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 40px; align-items: start;
  max-width: 1280px; margin: 0 auto;
  padding: 40px 5vw;
}
.booking-aside {
  position: relative;
}
@media (max-width: 1024px) {
  .tour-shell {
    display: flex;
    flex-direction: column;
  }
  .booking-aside {
    order: -1; /* Mobil görünümde sepete ekle kısmı en üst tarafta yer alır */
    width: 100%;
    margin-bottom: 28px;
  }
  .booking-card {
    position: static;
    top: 0;
    width: 100%;
  }
}

/* Instagram Showcase Section */
.instagram-section {
  padding: 70px 5vw;
  background: #ffffff;
  border-top: 1px solid var(--border);
}
.insta-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.insta-account-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 30px;
  background: #fff0f1;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  border: 1px solid #fecdd3;
  margin-bottom: 8px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.insta-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--bg);
  display: block;
}
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.insta-card:hover img {
  transform: scale(1.08);
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(229, 31, 42, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition);
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
.insta-card:hover .insta-overlay {
  opacity: 1;
}
.insta-overlay span {
  font-size: 24px;
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Fact Grid */
.fact-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-top: 28px;
}
.fact-item {
  padding: 20px; text-align: center;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.fact-item:last-child { border-right: 0; }
.fact-item span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--primary); }
.fact-item b { font-size: 16px; font-weight: 700; }

/* Booking Card */
.booking-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  position: sticky; top: 130px;
  box-shadow: var(--shadow);
}
.booking-price small { font-size: 12px; color: var(--muted); font-weight: 600; }
.booking-price strong { font-size: 36px; font-weight: 800; color: var(--primary); display: block; margin: 4px 0 20px; }
.booking-field { margin-bottom: 14px; }
.booking-field label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; display: block; margin-bottom: 6px; }
.booking-field select, .booking-field input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 14px; background: var(--bg);
  transition: border-color var(--transition);
}
.booking-field select:focus, .booking-field input:focus {
  outline: none; border-color: var(--blue-l); background: var(--white);
}
.booking-total {
  border-top: 1px solid var(--border); padding-top: 14px;
  margin: 18px 0; display: flex; justify-content: space-between;
  font-size: 15px; font-weight: 700;
}
.booking-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-num {
  font: italic bold 32px Georgia, serif; color: var(--primary);
  text-align: center; padding-top: 4px;
}
.timeline-time { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: .1em; }
.timeline-item h3 { font-size: 18px; font-weight: 700; margin: 4px 0 8px; }
.timeline-item p { font-size: 14px; color: var(--muted); }

/* Include Grid */
.include-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.include-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 28px; }
.include-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.include-card li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 13px; display: flex; align-items: center; gap: 8px; }
.include-card li:last-child { border-bottom: 0; }
.include-card li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.exclude-card li::before { content: '✕'; color: #f87171; }

/* Place Cloud */
.place-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.place-tag {
  padding: 10px 18px; border-radius: var(--radius);
  background: var(--bg); border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text);
  transition: var(--transition);
}
.place-tag:hover { border-color: var(--blue-l); color: var(--blue-l); }

/* Pickup Grid */
.pickup-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pickup-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; text-align: center;
}
.pickup-card b { display: block; font-size: 24px; font-weight: 800; color: var(--blue-l); margin-bottom: 4px; }
.pickup-card span { font-size: 13px; color: var(--muted); }

/* Date Table */
.date-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.date-row {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0;
}
.date-row + .date-row { border-top: 1px solid var(--border); }
.date-row.head { background: var(--primary); color: var(--white); font-weight: 700; font-size: 12px; }
.date-row div {
  padding: 14px 16px; font-size: 13px;
  border-right: 1px solid var(--border); display: flex; align-items: center;
}
.date-row div:last-child { border-right: 0; }
.date-row.head div { border-right-color: rgba(255,255,255,.15); }
.available { color: #16a34a; font-weight: 700; }
.limited { color: var(--orange); font-weight: 700; }
.full { color: #dc2626; font-weight: 700; }

/* FAQ Accordions */
.faq-list { display: flex; flex-direction: column; gap: 0; }
details {
  border-top: 1px solid var(--border);
}
details:last-of-type { border-bottom: 1px solid var(--border); }
summary {
  font-size: 16px; font-weight: 700; cursor: pointer;
  padding: 18px 0; display: flex; align-items: center; justify-content: space-between;
  list-style: none;
}
summary::after { content: '+'; font-size: 22px; color: var(--blue-l); font-weight: 300; }
details[open] summary::after { content: '−'; }
details p { font-size: 14px; color: var(--muted); padding-bottom: 18px; line-height: 1.7; }

/* Recommend Grid */
.recommend-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.recommend-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--card);
  transition: var(--transition); display: block;
}
.recommend-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.recommend-card img { height: 180px; }
.recommend-card-info { padding: 14px; }
.recommend-card-info b { font-size: 14px; font-weight: 700; display: block; }
.recommend-card-info span { font-size: 15px; font-weight: 800; color: var(--primary); margin-top: 4px; display: block; }

/* ═══════════════════════════════════════
   HOTELS PAGE
═══════════════════════════════════════ */
.hotel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.hotel-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.hotel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.hotel-card-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}
.hotel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease;
}
.hotel-card:hover .hotel-card-img img { transform: scale(1.04); }
.hotel-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.hotel-name { font-size: 17px; font-weight: 700; }
.hotel-location { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.hotel-stars { display: flex; gap: 2px; font-size: 14px; color: var(--orange); }
.hotel-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto; }
.hotel-price strong { font-size: 22px; font-weight: 800; color: var(--primary); }
.hotel-price small { font-size: 11px; color: var(--muted); display: block; }

/* ═══════════════════════════════════════
   CAMPAIGNS PAGE
═══════════════════════════════════════ */
.campaign-big-grid { display: grid; gap: 24px; }
.campaign-big {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; height: 360px;
}
.campaign-big img { height: 100%; object-fit: cover; width: 100%; }
.campaign-big .campaign-overlay { padding: 36px; }
.campaign-big h3 { font-size: 32px; }
.campaign-small-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.campaign-small { border-radius: var(--radius-lg); overflow: hidden; position: relative; height: 240px; }
.campaign-small img { height: 100%; object-fit: cover; width: 100%; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; max-width: 1280px; margin: 0 auto; }
.contact-info h2 { font-size: 28px; font-weight: 800; margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: #fff0f0; display: grid; place-items: center;
  font-size: 22px; flex-shrink: 0;
}
.contact-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-item p { font-size: 13px; color: var(--muted); }
.contact-form-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.wide { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 14px; background: var(--bg);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue-l); background: var(--white);
}
.form-group textarea { height: 120px; resize: vertical; }

/* ═══════════════════════════════════════
   ACCOUNT PAGE
═══════════════════════════════════════ */
.account-wrap {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  padding: 60px 5vw; background: var(--bg);
}
.account-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 44px;
  width: 100%; max-width: 480px; box-shadow: var(--shadow-hover);
}
.account-tabs { display: flex; gap: 0; margin-bottom: 32px; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.account-tab {
  flex: 1; padding: 12px; text-align: center;
  font-size: 14px; font-weight: 700; cursor: pointer;
  border: 0; background: var(--bg); color: var(--muted);
  transition: var(--transition);
}
.account-tab.active { background: var(--blue-l); color: var(--white); }

/* ═══════════════════════════════════════
   CHECKOUT PAGE
═══════════════════════════════════════ */
.checkout-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: start; max-width: 1280px; margin: 0 auto; }
.checkout-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.checkout-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: 0; }
.cart-item-img { width: 80px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cart-item-info span { font-size: 12px; color: var(--muted); }
.cart-item-price { font-size: 16px; font-weight: 800; color: var(--primary); }
.cart-remove { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 18px; padding: 4px; }
.cart-remove:hover { color: var(--primary); }
.order-summary { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 100px; }
.order-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.summary-row.total { font-size: 18px; font-weight: 800; border-top: 2px solid var(--border); padding-top: 14px; margin-top: 8px; }
.summary-row.total span:last-child { color: var(--primary); }

/* ═══════════════════════════════════════
   ADMIN PANEL
═══════════════════════════════════════ */
.admin-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.admin-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 32px; }
.metric-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px;
}
.metric-card .metric-icon { font-size: 28px; margin-bottom: 10px; }
.metric-card span { font-size: 12px; color: var(--muted); font-weight: 600; }
.metric-card b { font-size: 28px; font-weight: 800; display: block; margin-bottom: 4px; }
.metric-card .metric-change { font-size: 11px; color: #16a34a; font-weight: 600; }
.admin-table { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.admin-table-head { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 0; background: var(--bg); padding: 14px 20px; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.admin-table-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 0; padding: 16px 20px; border-top: 1px solid var(--border); font-size: 13px; align-items: center; }
.admin-table-row:hover { background: var(--bg); }
.status-badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700;
}
.status-confirmed { background: #dcfce7; color: #16a34a; }
.status-pending { background: #fef9c3; color: #ca8a04; }
.status-cancelled { background: #fee2e2; color: #dc2626; }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1280px; margin: 0 auto; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; height: 460px; }
.about-img img { height: 100%; }
.about-content .eyebrow { margin-bottom: 10px; }
.about-content h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.about-content p { font-size: 15px; color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.stats-row { display: flex; gap: 32px; margin-top: 32px; }
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-item strong { font-size: 34px; font-weight: 800; color: var(--primary); }
.stat-item span { font-size: 13px; color: var(--muted); font-weight: 600; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 60px; }
.mv-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.mv-card .icon { font-size: 40px; margin-bottom: 16px; }
.mv-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.mv-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-20 { margin-bottom: 20px; }
.d-flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.max-1280 { max-width: 1280px; margin: 0 auto; }

/* ═══════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .hero { padding: 48px 5vw 60px; }
  .tour-grid { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .tours-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .tour-shell { display: flex; flex-direction: column; }
  .booking-aside { order: -1; width: 100%; margin-bottom: 24px; }
  .booking-card { position: static; width: 100%; }
  .fact-grid { grid-template-columns: repeat(2,1fr); }
  .about-layout { grid-template-columns: 1fr; }
  .about-img { display: none; }
  .checkout-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .admin-metrics { grid-template-columns: repeat(2,1fr); }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .topbar { padding: 0 18px; font-size: 11px; }
  .topbar-promo { display: none; }
  .header-inner { padding: 0 18px; height: 64px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 18px; }
  .hero { padding: 36px 18px 52px; }
  .tour-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .campaign-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .include-grid { grid-template-columns: 1fr; }
  .pickup-grid { grid-template-columns: 1fr 1fr; }
  .recommend-grid { grid-template-columns: 1fr; }
  .hotel-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-items { gap: 20px; justify-content: flex-start; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .search-row { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.wide { grid-column: auto; }
  .stats-row { flex-direction: column; gap: 20px; }
  .mv-grid { grid-template-columns: 1fr; }
  .date-row { grid-template-columns: 1fr 1fr; }
  .date-row div:nth-child(3), .date-row div:nth-child(4) { display: none; }
  .admin-table-head, .admin-table-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .admin-table-head > *:nth-child(n+4), .admin-table-row > *:nth-child(n+4) { display: none; }
  .admin-metrics { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); }
  .newsletter-form input, .newsletter-form button { border-radius: 0; }
  .campaign-small-grid { grid-template-columns: 1fr; }
  .cat-card { height: 240px; }
  .cat-card-content h3 { font-size: 18px; }
  .cat-card-overlay { padding: 18px; }
  .tour-hero { height: 360px; }
  .tour-hero-content { padding: 30px 18px; }
  .page-hero { padding: 40px 18px; }
}

@media (max-width: 480px) {
  .topbar { display: none; }
  .header-inner { height: 60px; }
  .logo-text { display: none; }
  .cat-grid { grid-template-columns: 1fr; gap: 14px; }
  .cat-card { height: 210px; }
  .cat-card-content h3 { font-size: 20px; }
  .pickup-grid { grid-template-columns: 1fr; }
  .account-card { padding: 28px 20px; }
}

/* ═══════════════════════════════════════
   BUTTONS: INSTAGRAM DM & PHONE CALL HOVER FIX
═══════════════════════════════════════ */
.btn-ig-dm {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  border: 1.5px solid #e51f2a !important;
  background: transparent !important;
  color: #e51f2a !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}
.btn-ig-dm:hover {
  background: #e51f2a !important;
  color: #ffffff !important;
  border-color: #e51f2a !important;
  box-shadow: 0 4px 12px rgba(229, 31, 42, 0.28) !important;
}

.btn-phone-call {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  border: 1.5px solid var(--border) !important;
  background: transparent !important;
  color: var(--text) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}
.btn-phone-call:hover {
  background: #16a34a !important;
  color: #ffffff !important;
  border-color: #16a34a !important;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.28) !important;
}

/* Tour Link */
.tour-link {
  display: inline-block;
  font-size: 13px;
  color: var(--primary) !important;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.tour-link:hover {
  color: #b91520 !important;
  text-decoration: underline !important;
  transform: translateX(2px);
}

/* ═══════════════════════════════════════
   CTA BANNER (Group & Corporate Requests)
═══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #8b0f16 0%, #c41822 50%, #e51f2a 100%);
  padding: 64px 5vw;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 5%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.cta-banner-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-banner h2 {
  font-size: clamp(24px, 3.8vw, 36px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.cta-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin: 0 0 14px 0;
  line-height: 1.6;
}
.cta-banner-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn-white {
  background: #ffffff !important;
  color: #111827 !important;
  font-weight: 700 !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}
.btn-white:hover {
  background: #f8fafc !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22) !important;
}

.btn-whatsapp-solid {
  background: #25d366 !important;
  color: #ffffff !important;
  border: 2px solid #25d366 !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35) !important;
}
.btn-whatsapp-solid:hover {
  background: #20bd5a !important;
  border-color: #20bd5a !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45) !important;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(6px);
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  font-weight: 700 !important;
}
.btn-outline-white:hover {
  background: #ffffff !important;
  color: var(--primary) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
}