/* ==========================================================================
   ANHAA — MODERN DESIGN SYSTEM & STYLESHEET
   Bilingual RTL / LTR using standard Logical Properties
   ========================================================================== */

:root {
  --color-primary: #0f766e;
  --color-primary-dark: #0c4a3e;
  --color-primary-light: #14b8a6;
  --color-primary-subtle: #f0fdfa;
  --color-accent: #f59e0b;
  --color-accent-dark: #d97706;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-surface: #ffffff;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-danger: #ef4444;
  --color-danger-bg: #fef2f2;
  --color-success: #10b981;
  --color-success-bg: #ecfdf5;

  --font-arabic: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-latin: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(15, 118, 110, 0.25);

  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base reset & typography */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-latin);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[lang="ar"] body {
  font-family: var(--font-arabic);
}

#main-content {
  padding-block-start: 2.5rem;
}

/* Logical container setup */
.container {
  width: 100%;
  max-width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.container.narrow {
  max-width: min(100%, 720px);
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.3;
  margin-block-start: 0;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
  margin-block: 2rem 1rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-block: 0 1rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

.visually-hidden {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
  max-width: 1440px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
}

img.brand-icon,
.brand-logo {
  display: inline-block;
  height: 46px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  background: none;
  border-radius: 0;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.brand:hover img.brand-icon,
.brand:hover .brand-logo {
  transform: scale(1.03);
}

@media (max-width: 768px) {

  img.brand-icon,
  .brand-logo {
    height: 38px;
    max-width: 110px;
  }
}

.header-nav-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-width: 0;
  margin-inline-start: auto;
  justify-content: flex-end;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}

.main-nav a {
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  text-decoration: none;
}

.main-nav a:focus-visible,
.language-switcher a:focus-visible,
.brand:focus-visible,
.mobile-menu-toggle:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.35);
  outline-offset: 2px;
}

.header-search input {
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  color: var(--color-text);
  outline: none;
  width: 150px;
  transition: var(--transition);
}

.header-search {
  flex: 0 0 auto;
}

.header-search input:focus {
  width: 200px;
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.language-switcher {
  display: inline-flex;
  background: var(--color-bg-alt);
  padding: 3px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  gap: 2px;
}

.language-switcher a {
  padding: 0.2rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
}

.language-switcher a.active {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  background: linear-gradient(145deg, #0c4a3e 0%, #0f766e 60%, #14b8a6 100%);
  color: #ffffff;
  padding-block: 5rem 6rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-block-end: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin-inline: auto;
  margin-block-end: 2rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.4);
}

.btn-accent {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}

.btn-danger {
  background: var(--color-danger-bg);
  border-color: var(--color-danger);
  color: var(--color-danger);
}

.btn-danger:hover {
  background: var(--color-danger);
  color: #ffffff;
}

.btn-small {
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   CARDS & GRIDS
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-block: 1.5rem 3rem;
}

.tour-card,
.destination-card,
.blog-card,
.campaign-card,
.team-card,
.service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover,
.destination-card:hover,
.blog-card:hover,
.campaign-card:hover,
.team-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.3);
}

.tour-card a,
.destination-card a,
.blog-card a,
.campaign-card a {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card img,
.destination-card img,
.blog-card img,
.campaign-card img,
.service-card img {
  inline-size: 100%;
  block-size: 190px;
  object-fit: cover;
  background: var(--color-bg-alt);
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 0.4s ease;
}

/* Destination detail: an editorial travel page with a strong sense of place. */
.destination-detail-page {
  background: #fbfaf7;
}

.destination-hero {
  --destination-cover: none;
  min-height: 570px;
  position: relative;
  isolation: isolate;
  color: #fff;
  background-color: #173f3b;
}

.destination-hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.destination-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 28, 32, .82) 0%, rgba(8, 28, 32, .45) 48%, rgba(8, 28, 32, .15) 100%), linear-gradient(0deg, rgba(8, 28, 32, .45), transparent 42%);
}

[dir="rtl"] .destination-hero-shade {
  background: linear-gradient(270deg, rgba(8, 28, 32, .82) 0%, rgba(8, 28, 32, .45) 48%, rgba(8, 28, 32, .15) 100%), linear-gradient(0deg, rgba(8, 28, 32, .45), transparent 42%);
}

.destination-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 1.5rem 5rem;
}

nav.destination-breadcrumbs {
  color: #fff;
  margin: 0;
}

nav.destination-breadcrumbs a {
  color: #fff;
}

nav.destination-breadcrumbs span {
  color: #fff;
}

.destination-hero-copy {
  max-width: 680px;
  animation: destination-rise .7s ease both;
}
.destination-kicker,

.section-eyebrow {
  color: #b78b4b;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.destination-kicker {
  color: #f6c667;
  display: block;
  margin-block-end: 1rem;
}

.destination-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.125rem);
  line-height: .98;
  letter-spacing: -.04em;
  margin: 0 0 1.3rem;
}

.destination-hero-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.25rem;
  margin: 0 0 2rem;
  line-height: 1.7;
  text-align: inherit;
}

[dir="rtl"] .destination-hero-copy p {
  text-align: right;
}

.destination-hero-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .65);
  padding-block-end: .55rem;
}

.destination-hero-link span {
  color: #f6c667;
  font-size: 1.3rem;
  transition: transform .2s ease;
}

.destination-hero-link:hover {
  color: #f6c667;
}

.destination-hero-link:hover span {
  transform: translateY(3px);
}

.destination-content {
  padding-block: 5.5rem 7rem;
}

.destination-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .8fr);
  gap: 5rem;
  align-items: start;
}

.destination-story h2,
.destination-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin: .55rem 0 1.25rem;
}

.destination-story .prose {
  color: #5d6766;
  font-size: 1.08rem;
  max-width: 600px;
  line-height: 1.9;
}

.destination-facts {
  border-top: 1px solid #d9d4c8;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid #d9d4c8;
}

.fact-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid #d9d4c8;
  border-radius: 50%;
  color: #b78b4b;
  font-size: 1.2rem;
}

.fact-item strong,
.fact-item span {
  display: block;
}

.fact-item strong {
  font-size: .92rem;
  color: #203b38;
}

.fact-item div span {
  color: #7a8280;
  font-size: .82rem;
}

.destination-cities {
  margin-block: 6rem 5.5rem;
}

.destination-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-block-end: 1.5rem;
}

.destination-section-heading h2 {
  margin-block-end: 0;
}

.destination-section-heading p {
  color: #64748b;
  max-width: 560px;
  margin: .5rem 0 0;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.7;
  text-align: start;
}

.section-count {
  color: #b78b4b;
  font-size: 1.25rem;
  font-weight: 800;
  border-bottom: 2px solid #b78b4b;
  padding-block-end: .25rem;
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.city-pill {
  min-height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .7rem 1rem;
  color: #fff;
  background: linear-gradient(135deg, #1d514c, #102f32);
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  box-shadow: 0 5px 14px rgba(21, 61, 57, .12);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.city-pill:nth-child(2) {
  background: linear-gradient(135deg, #a56b3d, #5e3c2b);
}

.city-pill:nth-child(3) {
  background: linear-gradient(135deg, #3f706c, #1b3d40);
}

.city-pill span:last-child {
  color: #f6c667;
  font-size: 1.25rem;
}

.city-pill:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(21, 61, 57, .2);
  background: linear-gradient(135deg, #28756d, #174945);
}

.destination-tours {
  border-top: 1px solid #d9d4c8;
  padding-block-start: 4rem;
}

.heading-dot {
  color: #b78b4b;
}

.destination-tour-grid {
  margin-block-start: 2rem;
}

/* City detail pages use the same travel palette with a more intimate scale. */
.city-detail-page {
  background: #fbfaf7;
}

.city-hero {
  --city-cover: none;
  min-height: 540px;
  position: relative;
  isolation: isolate;
  color: #fff;
  background-color: #173f3b;
  background-image: var(--city-cover);
  background-size: cover;
  background-position: center;
}

.city-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 28, 32, .84), rgba(8, 28, 32, .38) 58%, rgba(8, 28, 32, .08)), linear-gradient(0deg, rgba(8, 28, 32, .5), transparent 45%);
}

[dir="rtl"] .city-hero-shade {
  background: linear-gradient(270deg, rgba(8, 28, 32, .84), rgba(8, 28, 32, .38) 58%, rgba(8, 28, 32, .08)), linear-gradient(0deg, rgba(8, 28, 32, .5), transparent 45%);
}

.city-hero-inner {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 1.5rem 4.5rem;
}

nav.city-breadcrumbs {
  color: #fff;
  margin: 0;
}

nav.city-breadcrumbs a {
  color: #fff;
}

nav.city-breadcrumbs span {
  color: #fff;
}

.city-hero-copy {
  max-width: 640px;
  animation: destination-rise .7s ease both;
}

.city-kicker {
  display: block;
  color: #f6c667;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-block-end: 1rem;
}

.city-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.125rem);
  line-height: 1;
  letter-spacing: -.04em;
  margin: 0 0 1.2rem;
}

.city-hero-copy p {
  color: rgba(255, 255, 255, .9);
  font-size: 1.15rem;
  margin: 0 0 1.8rem;
}

.city-hero-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .65);
  padding-block-end: .5rem;
}

.city-hero-link span {
  color: #f6c667;
  font-size: 1.3rem;
  transition: transform .2s ease;
}

.city-hero-link:hover {
  color: #f6c667;
}

.city-hero-link:hover span {
  transform: translateY(3px);
}

.city-content {
  padding-block: 5rem 7rem;
}

.city-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 5rem;
  align-items: center;
  padding-block-end: 5rem;
  border-bottom: 1px solid #d9d4c8;
}

.city-overview h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin: .55rem 0 1rem;
}

.city-overview p {
  max-width: 570px;
  color: #68716f;
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 0;
}

.city-highlights {
  border-top: 1px solid #d9d4c8;
}

.city-highlights div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #d9d4c8;
}

.city-highlight-number {
  color: #b78b4b;
  font-size: .78rem;
  font-weight: 800;
}

.city-highlights strong {
  color: #203b38;
  font-size: .98rem;
}

.city-tours {
  padding-block-start: 4.5rem;
}

@media (max-width: 700px) {

  .city-hero,
  .city-hero-inner {
    min-height: 500px;
  }

  .city-hero-inner {
    padding-block-end: 3.5rem;
  }

  .city-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .city-hero-copy p {
    font-size: 1rem;
  }

  .city-content {
    padding-block: 3.5rem 4.5rem;
  }

  .city-overview {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    padding-block-end: 3.5rem;
  }
}

/* Booking page: warm, focused layout for a high-intent travel form. */
.booking-page {
  background: #fbfaf7;
}

.booking-hero {
  --booking-cover: none;
  min-height: 470px;
  position: relative;
  isolation: isolate;
  color: #fff;
  background: #173f3b;
}

.booking-hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.booking-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 28, 32, .86), rgba(8, 28, 32, .38) 62%, rgba(8, 28, 32, .12)), linear-gradient(0deg, rgba(8, 28, 32, .62), transparent 48%);
}

[dir="rtl"] .booking-hero-shade {
  background: linear-gradient(270deg, rgba(8, 28, 32, .86), rgba(8, 28, 32, .38) 62%, rgba(8, 28, 32, .12)), linear-gradient(0deg, rgba(8, 28, 32, .62), transparent 48%);
}

.booking-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 1.5rem 4rem;
}

nav.booking-breadcrumbs {
  color: #fff;
  margin: 0;
}

nav.booking-breadcrumbs a {
  color: #fff;
}

nav.booking-breadcrumbs span {
  color: #fff;
}

.booking-hero-copy {
  max-width: 620px;
  animation: destination-rise .7s ease both;
}

.booking-kicker {
  display: block;
  color: #f6c667;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-block-end: 1rem;
}

.booking-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.125rem);
  line-height: 1;
  letter-spacing: -.04em;
  margin: 0 0 .75rem;
}

.booking-hero-copy p {
  color: rgba(255, 255, 255, .9);
  font-size: 1.2rem;
  margin: 0 0 1.25rem;
}

.booking-hero-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #f6c667;
  font-weight: 700;
  font-size: .9rem;
}

.booking-content {
  padding-block: 5rem 7rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 4rem;
  align-items: start;
  max-width: 1040px;
  margin-inline: auto;
}

.booking-summary-card {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 110px;
  overflow: hidden;
  border: 1px solid #d9d4c8;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(35, 59, 56, .08);
}

.summary-image {
  aspect-ratio: 4 / 2.45;
  background-position: center;
  background-size: cover;
}

.summary-body {
  padding: 1.35rem;
}

.summary-label {
  color: #b78b4b;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.summary-body h2 {
  color: #203b38;
  font-size: 1.3rem;
  line-height: 1.35;
  margin: .55rem 0 .9rem;
}

.summary-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding-block-end: 1rem;
  border-bottom: 1px solid #eeeae2;
  color: #697672;
  font-size: .8rem;
}

.summary-body ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.summary-body li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: #697672;
  font-size: .82rem;
  line-height: 1.55;
  padding-block: .4rem;
}

.summary-body li span {
  color: #b78b4b;
  font-weight: 800;
}

.booking-form {
  grid-column: 1;
  grid-row: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
}

.booking-form-heading {
  border-bottom: 1px solid #f1f5f9;
  padding-block-end: .75rem;
  margin-block-end: .75rem;
}

.booking-form-heading h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: .25rem 0 .4rem;
  color: #0f172a;
}

.booking-form-heading p {
  color: #64748b;
  font-size: .85rem;
  line-height: 1.55;
  margin: 0;
}

.booking-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.booking-form label {
  color: #334155;
  font-weight: 600;
  font-size: .85rem;
  display: block;
  margin-block-end: .25rem;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  margin-block-start: .2rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  padding: .5rem .75rem;
  font-size: .9rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  border-color: #0f766e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.booking-form input:user-invalid,
.booking-form textarea:user-invalid,
.booking-form select:user-invalid {
  border-color: #ef4444;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.booking-form input:user-valid,
.booking-form textarea:user-valid,
.booking-form select:user-valid {
  border-color: #22c55e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.booking-form textarea {
  resize: vertical;
  min-block-size: 80px;
}

.phone-input-wrap {
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.phone-input-wrap:focus-within {
  border-color: #0f766e;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.booking-form .accommodation-fieldset {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1rem;
  background: #f8fafc;
  margin-block: 1rem;
}

.booking-form .accommodation-fieldset legend {
  padding-inline: .5rem;
  color: #0f172a;
  font-size: .95rem;
  font-weight: 700;
  margin-block-end: .3rem;
}

.booking-form .field-help {
  color: #64748b;
  font-size: .8rem;
  margin-block: 0 .6rem;
}

.booking-form .phone-length-hint,
.contact-form-v2 .phone-length-hint {
  color: #64748b;
  font-size: .8rem;
  margin-block: 0 .6rem;
  display: none;
}

.booking-form .phone-length-hint.show,
.contact-form-v2 .phone-length-hint.show {
  display: inline-block;
}

.booking-form .accommodation-type-options label,
.booking-form .subgroup-options label {
  display: flex;
  flex: 1;
  min-inline-size: 140px;
  align-items: center;
  gap: .5rem;
  padding: .65rem .9rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  font-weight: 600;
  color: #334155;
}

.booking-form .accommodation-type-options label:hover,
.booking-form .subgroup-options label:hover {
  border-color: #0f766e !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.08);
}

.booking-form .accommodation-type-options input,
.booking-form .subgroup-options input {
  width: auto;
  margin: 0;
  accent-color: #0f766e;
}

.booking-form .accommodation-subgroup {
  display: none;
  padding: .6rem;
  margin-block-start: .6rem;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
}

.booking-form .subgroup-title {
  display: block;
  color: #334155;
  font-size: .85rem;
  font-weight: 700;
  margin-block-end: .4rem;
}

.booking-form .booking-submit {
  width: 100%;
  justify-content: space-between;
  padding: .75rem 1.1rem;
  border-radius: 12px;
  background: #173f3b;
  border-color: #173f3b;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 25px -8px rgba(23, 63, 59, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form .booking-submit:hover {
  background: #0f766e;
  border-color: #0f766e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -10px rgba(15, 118, 110, 0.45);
}

.booking-form .booking-submit span {
  font-size: 1.1rem;
}

.booking-form .honeypot {
  display: none;
}

@media (max-width: 850px) {
  .booking-layout {
    grid-template-columns: 1fr;
    max-width: 680px;
    gap: 2rem;
  }

  .booking-summary-card {
    grid-column: 1;
    grid-row: 1;
    position: static;
    display: grid;
    grid-template-columns: 140px 1fr;
  }

  .booking-form {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 600px) {
  .booking-hero,
  .booking-hero-inner {
    min-height: 430px;
  }

  .booking-hero-inner {
    padding-block-end: 3rem;
  }

  .booking-hero h1 {
    font-size: 2.8rem;
  }

  .booking-hero-copy p {
    font-size: 1rem;
  }

  .booking-content {
    padding-block: 3rem 4.5rem;
  }

  .booking-form {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .booking-summary-card {
    grid-template-columns: 1fr;
  }

  .summary-image {
    aspect-ratio: 16 / 7;
  }

  .booking-fields-grid {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .booking-form .accommodation-type-options label,
  .booking-form .subgroup-options label {
    min-inline-size: 100%;
  }
}

.confirmation-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgba(255, 255, 255, .72), transparent 48%), repeating-linear-gradient(135deg, rgba(15, 118, 110, .035) 0, rgba(15, 118, 110, .035) 1px, transparent 1px, transparent 12px);
}

.confirmation-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(183, 139, 75, .32);
  border-radius: 50%;
  pointer-events: none;
}

.confirmation-orbit-one {
  width: 430px;
  height: 430px;
  inset-inline-start: -220px;
  top: 12%;
}

.confirmation-orbit-two {
  width: 300px;
  height: 300px;
  inset-inline-end: -150px;
  bottom: 8%;
  border-color: rgba(15, 118, 110, .16);
}

.confirmation-shell {
  display: grid;
  place-items: center;
  padding-block: 5rem 7rem;
}

.confirmation-card {
  width: min(100%, 680px);
  padding: 3.2rem 3.5rem;
  text-align: center;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(217, 212, 200, .92);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(23, 63, 59, .14);
  animation: destination-rise .65s ease both;
}

.confirmation-check {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: #173f3b;
  color: #f6c667;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 0 0 10px rgba(23, 63, 59, .08);
}

.confirmation-kicker {
  color: #b78b4b;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.confirmation-card h1 {
  color: #203b38;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  margin: .6rem 0 1rem;
}

.confirmation-intro {
  max-width: 470px;
  margin: 0 auto 1.8rem;
  color: #68716f;
  line-height: 1.8;
}

.confirmation-reference {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem 1rem;
  margin-block-end: 2rem;
  border: 1px dashed #b78b4b;
  border-radius: 3px;
  background: #fffaf0;
}

.confirmation-reference span {
  color: #7b8581;
  font-size: .76rem;
}

.confirmation-reference strong {
  color: #173f3b;
  letter-spacing: .1em;
  font-size: 1.05rem;
}

.confirmation-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  text-align: start;
  padding-block: 1.5rem;
  border-block: 1px solid #e4dfd5;
}

.confirmation-detail {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .65rem;
}

.detail-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: #e7f2ed;
  color: #0f766e;
  font-size: .85rem;
}

.confirmation-detail small,
.confirmation-detail strong {
  display: block;
}

.confirmation-detail small {
  color: #8a918e;
  font-size: .72rem;
  margin-block-end: .2rem;
}

.confirmation-detail strong {
  color: #203b38;
  font-size: .84rem;
  line-height: 1.4;
}

.confirmation-next {
  padding-block: 1.8rem 1.5rem;
  text-align: start;
}

.confirmation-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-block-start: .8rem;
}

.confirmation-steps div {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.confirmation-steps span {
  color: #b78b4b;
  font-size: .72rem;
  font-weight: 800;
}

.confirmation-steps strong {
  color: #51615d;
  font-size: .78rem;
  line-height: 1.45;
}

.confirmation-home {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: #fff;
  background: #173f3b;
  padding: .85rem 1.25rem;
  border-radius: 2.1rem;
  font-size: .88rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.confirmation-home:hover {
  color: #fff;
  background: #b78b4b;
  transform: translateY(-2px);
}

.confirmation-home span {
  color: #f6c667;
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .confirmation-shell {
    padding-block: 3rem 4.5rem;
  }

  .confirmation-card {
    padding: 2.3rem 1.15rem;
  }

  .confirmation-details {
    grid-template-columns: 1fr;
  }

  .confirmation-steps {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .confirmation-steps div {
    flex-direction: row;
    align-items: center;
    gap: .7rem;
  }
}

@media (max-width: 850px) {
  .booking-layout {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .booking-summary-card {
    grid-column: 1;
    grid-row: 1;
    position: static;
    display: grid;
    grid-template-columns: 140px 1fr;
  }

  .booking-form {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 600px) {

  .booking-hero,
  .booking-hero-inner {
    min-height: 430px;
  }

  .booking-hero-inner {
    padding-block-end: 3rem;
  }

  .booking-hero h1 {
    font-size: 2.8rem;
  }

  .booking-hero-copy p {
    font-size: 1rem;
  }

  .booking-content {
    padding-block: 3rem 4.5rem;
  }

  .booking-form {
    padding: 1.25rem;
  }

  .booking-summary-card {
    grid-template-columns: 1fr;
  }

  .summary-image {
    aspect-ratio: 16 / 7;
  }

  .booking-fields-grid {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .accommodation-type-options label,
  .subgroup-options label {
    min-inline-size: 100%;
  }
}

/* Tour detail: an immersive editorial layout for the booking journey. */
.tour-detail-page {
  background: #fbfaf7;
}

.tour-hero {
  --tour-cover: none;
  min-height: 610px;
  position: relative;
  isolation: isolate;
  color: #fff;
  background: #173f3b;
}

.tour-hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.tour-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 28, 32, .86), rgba(8, 28, 32, .38) 62%, rgba(8, 28, 32, .12)), linear-gradient(0deg, rgba(8, 28, 32, .62), transparent 48%);
}

[dir="rtl"] .tour-hero-shade {
  background: linear-gradient(270deg, rgba(8, 28, 32, .86), rgba(8, 28, 32, .38) 62%, rgba(8, 28, 32, .12)), linear-gradient(0deg, rgba(8, 28, 32, .62), transparent 48%);
}

.tour-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 1.5rem 5rem;
}

nav.tour-breadcrumbs {
  color: #fff;
  margin: 0;
}

nav.tour-breadcrumbs a {
  color: #fff;
}

nav.tour-breadcrumbs span {
  color: #fff;
}

.tour-hero-copy {
  max-width: 760px;
  animation: destination-rise .7s ease both;
}

.tour-kicker {
  display: block;
  color: #f6c667;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-block-end: 1rem;
}

.tour-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.125rem);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 0 0 1.3rem;
  max-width: 800px;
}

.tour-hero-copy p {
  color: rgba(255, 255, 255, .9);
  font-size: 1.18rem;
  max-width: 600px;
  margin: 0 0 1.5rem;
}

.tour-hero-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #f6c667;
  font-size: .9rem;
  font-weight: 700;
}

.tour-detail-content {
  padding-block: 5.5rem 7rem;
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 5rem;
  align-items: start;
}

.tour-main-column {
  min-width: 0;
}

.tour-introduction {
  padding-block-end: 3.5rem;
}

.tour-introduction h2,
.tour-section-heading h2,
.tour-reviews-section>h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin: .55rem 0 1.2rem;
}

.tour-introduction .prose {
  color: #68716f;
  font-size: 1.06rem;
  line-height: 1.9;
  max-width: 680px;
}

/* Tour gallery: a modern auto-advancing carousel with dot pagination. */
.tour-gallery {
  margin-block-end: 5rem;
}

.tour-gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0f172a;
  box-shadow: 0 24px 48px -18px rgba(15, 23, 42, .28);
}

.tour-gallery-track {
  display: flex;
  transition: transform .7s cubic-bezier(.65, 0, .35, 1);
  will-change: transform;
}

[dir="rtl"] .tour-gallery-track {
  direction: ltr;
}

.tour-gallery-slide {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
}

.tour-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1e293b;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, .45);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .2s ease, transform .2s ease;
  z-index: 2;
}

.gallery-arrow:hover {
  background: rgba(15, 23, 42, .75);
  transform: translateY(-50%) scale(1.06);
}

/* Physical left/right on purpose: the arrows should stay on the same
   visual side and keep pointing the same way in both ar and en. */
.gallery-arrow-prev {
  left: .9rem;
}

.gallery-arrow-next {
  right: .9rem;
}

.gallery-counter {
  position: absolute;
  top: .9rem;
  inset-inline-end: .9rem;
  padding: .35rem .75rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, .55);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.tour-gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-block-start: 1rem;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--color-border);
  cursor: pointer;
  transition: background .25s ease, width .25s ease, transform .2s ease;
}

.gallery-dot:hover {
  background: var(--color-primary-light);
}

.gallery-dot.is-active {
  width: 26px;
  background: var(--color-primary);
}

.tour-booking-card {
  position: sticky;
  top: 110px;
  padding: 2rem;
  background: #173f3b;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(21, 61, 57, .18);
}

.booking-card-label {
  color: #f6c667;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tour-booking-card h2 {
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.25;
  margin: .75rem 0 1rem;
}

.tour-booking-card p {
  color: rgba(255, 255, 255, .75);
  font-size: .92rem;
  line-height: 1.7;
  margin-block-end: 1.5rem;
}

.tour-book-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 1.1rem;
  background: #f6c667;
  color: #173f3b;
  font-weight: 800;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}

.tour-book-button:hover {
  color: #173f3b;
  background: #fff;
  transform: translateY(-2px);
}

.tour-book-button span {
  font-size: 1.2rem;
}

.booking-trust {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
  margin-block-start: 1.2rem;
}

.booking-trust span {
  color: #f6c667;
}

.tour-itinerary {
  border-top: 1px solid #d9d4c8;
  padding-block: 4rem 1rem;
}

.tour-section-heading {
  margin-block-end: 2rem;
}

.tour-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tour-timeline li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1.25rem;
  position: relative;
  padding-block-end: 2.1rem;
}

.tour-timeline li:not(:last-child)::after {
  content: '';
  position: absolute;
  inset-inline-start: 26px;
  top: 42px;
  bottom: 0;
  width: 1px;
  background: #d9d4c8;
}

.timeline-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid #b78b4b;
  border-radius: 50%;
  color: #b78b4b;
  background: #fbfaf7;
  font-weight: 800;
  font-size: .85rem;
  z-index: 1;
}

.tour-timeline h3 {
  color: #203b38;
  font-size: 1.15rem;
  margin: .35rem 0 .45rem;
}

.tour-timeline p {
  color: #727b79;
  font-size: .93rem;
  line-height: 1.75;
  margin: 0;
}

.tour-inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-block: 2.5rem 5rem;
}

.tour-inclusion-box {
  padding: 1.4rem;
  border: 1px solid #d9d4c8;
  border-radius: 4px;
  background: #fff;
}

.tour-inclusion-box h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  font-size: 1rem;
}

.tour-inclusion-box h3 span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dff3e9;
  color: #1d7954;
}

.tour-inclusion-box.excluded h3 span {
  background: #f8e4d8;
  color: #a45738;
}

.tour-inclusion-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tour-inclusion-box li {
  padding-block: .45rem;
  border-bottom: 1px solid #eeeae2;
  color: #68716f;
  font-size: .88rem;
}

.tour-inclusion-box li:last-child {
  border-bottom: 0;
}

.tour-reviews-section {
  border-top: 1px solid var(--color-border-light);
  padding-block-start: 3.5rem;
}

.tour-reviews-section>h2 {
  margin-block-end: 1.75rem;
  font-size: 1.6rem;
}

.related-tours-title {
  margin-top: 4rem;
}

@media (max-width: 850px) {
  .tour-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tour-booking-card {
    position: static;
    order: -1;
  }
}

@media (max-width: 700px) {

  .tour-hero,
  .tour-hero-inner {
    min-height: 520px;
  }

  .tour-hero-inner {
    padding-block-end: 3.5rem;
  }

  .tour-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .tour-hero-copy p {
    font-size: 1rem;
  }

  .tour-detail-content {
    padding-block: 3.5rem 4.5rem;
  }

  .tour-gallery {
    margin-block-end: 3.5rem;
  }

  .tour-gallery-slide {
    aspect-ratio: 4 / 3;
  }

  .gallery-arrow {
    width: 36px;
    height: 36px;
  }

  .tour-inclusions {
    grid-template-columns: 1fr;
    margin-block-end: 3.5rem;
  }

  .tour-timeline li {
    grid-template-columns: 44px 1fr;
    gap: .9rem;
  }

  .timeline-number {
    width: 44px;
    height: 44px;
  }

  .tour-timeline li:not(:last-child)::after {
    inset-inline-start: 21px;
    top: 42px;
  }
}

@keyframes destination-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {

  .destination-hero,
  .destination-hero-inner {
    min-height: 520px;
  }

  .destination-hero-inner {
    padding-block-end: 3.5rem;
  }

  .destination-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .destination-hero-copy p {
    font-size: 1rem;
  }

  .destination-content {
    padding-block: 3.5rem 4.5rem;
  }

  .destination-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .destination-cities {
    margin-block: 4rem;
  }

  .city-pills {
    grid-template-columns: 1fr;
  }

  .city-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-pill {
    width: 100%;
  }

  .destination-section-heading {
    align-items: start;
    flex-direction: column;
    gap: .75rem;
  }

  .destination-section-heading p {
    text-align: start;
  }
}

.tour-card:hover img,
.destination-card:hover img {
  transform: scale(1.04);
}

.tour-card h3,
.destination-card h3,
.blog-card h3,
.campaign-card h3 {
  padding-inline: 1.25rem;
  margin-block: 1rem 0.5rem;
  font-size: 1.15rem;
  transition: var(--transition);
}

.tour-card:hover h3,
.destination-card:hover h3 {
  color: var(--color-primary);
}

/* Home blog cards */
#blog .blog-card {
  background: linear-gradient(145deg, #ffffff 0%, #f2fbfa 100%);
  border: 1px solid #d8e9e7;
  border-radius: 18px;
  box-shadow: 0 8px 24px -16px rgba(15, 118, 110, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#blog .blog-card>img {
  display: block;
  width: calc(100% - 1.25rem);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f1f5f9;
  border-radius: 14px;
  margin: 1rem 0.625rem 0.625rem;
  transition: transform 0.5s ease, filter 0.3s ease;
}

#blog .blog-card:hover>img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

#blog .blog-card-visual-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  margin: 1rem 0.625rem 0.625rem;
  width: calc(100% - 1.25rem);
  background:
    radial-gradient(circle at 72% 28%, rgba(245, 158, 11, 0.6) 0 2px, transparent 3px),
    radial-gradient(circle at 24% 68%, rgba(255, 255, 255, 0.35) 0 1px, transparent 2px),
    linear-gradient(135deg, #0f766e 0%, #134e4a 58%, #0f172a 100%);
}

#blog .blog-card-visual-placeholder span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fbbf24;
  font-size: 1.8rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

#blog .blog-card::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 4px;
  background: linear-gradient(180deg, #0f766e, #2dd4bf 65%, #f59e0b);
}

#blog .blog-card::after {
  content: "";
  position: absolute;
  inset-block-start: -52px;
  inset-inline-end: -42px;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(245, 158, 11, 0.62);
  background: rgba(245, 158, 11, 0.08);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.4s ease, border-color 0.3s ease;
}

#blog .blog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 118, 110, 0.38);
  box-shadow: 0 20px 34px -18px rgba(15, 118, 110, 0.35);
}

#blog .blog-card:hover::after {
  border-color: rgba(217, 119, 6, 0.82);
  background: rgba(245, 158, 11, 0.14);
  transform: scale(1.12);
}

#blog .blog-card a {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.75rem 0.75rem 1.1rem;
  text-align: center;
  gap: 0.5rem;
}

#blog .blog-card>a>img:first-child,
#blog .blog-card>a>.blog-card-visual-placeholder:first-child {
  margin: 0;
  width: 100%;
  max-width: none;
  border-radius: 14px;
}

#blog .blog-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 230px;
  padding: 1.25rem 0.5rem 0.5rem;
}

#blog .blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 1.25rem;
}

#blog .blog-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  background: rgba(204, 251, 241, 0.65);
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 700;
}

#blog .blog-card h3 {
  margin: 0 0 0.7rem;
  color: #0f172a;
  font-size: 1.18rem;
  line-height: 1.55;
  transition: color 0.25s ease;
}

#blog .blog-card:hover h3 {
  color: #0f766e;
}

#blog .blog-card p {
  margin: 0 0 1.25rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.75;
}

#blog .blog-card-read {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-block-start: auto;
  padding-block-start: 1.25rem;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  box-shadow: 0 6px 18px -6px rgba(15, 118, 110, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: center;
  text-decoration: none;
}

#blog .blog-card:hover .blog-card-read {
  gap: 0.75rem;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(15, 118, 110, 0.55);
}

.tour-card p,
.blog-card p,
.service-card p {
  padding-inline: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-block-end: 1rem;
  line-height: 1.65;
}

/* --- Services Hero --- */
.services-hero {
  position: relative;
  background: linear-gradient(135deg, #0f766e 0%, #134e4a 60%, #0f172a 100%);
  color: #ffffff;
  padding-block: 5rem;
  overflow: hidden;
  text-align: center;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset-block-start: -180px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.services-hero::after {
  content: "";
  position: absolute;
  inset-block-end: -120px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.services-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.services-hero-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ccfbf1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-block-end: 1.25rem;
  backdrop-filter: blur(8px);
}

.services-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: 0 0 1.25rem;
}

.services-hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: 0;
  max-width: 560px;
  margin-inline: auto;
}

[dir="rtl"] .services-hero {
  direction: rtl;
}

/* --- Services Page --- */
.services-page {
  padding-block: 5rem 6rem;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -16px rgba(15, 118, 110, 0.25);
  border-color: rgba(15, 118, 110, 0.35);
}

.service-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0f766e, #2dd4bf);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-image {
  position: relative;
  inline-size: 100%;
  block-size: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 100%);
}

.service-card-image img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  background: #f1f5f9;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-icon {
  display: grid;
  place-items: center;
  block-size: 200px;
  background: linear-gradient(135deg, #ccfbf1 0%, #f0fdfa 100%);
  color: #0f766e;
}

.service-card-icon svg {
  inline-size: 64px;
  block-size: 64px;
  opacity: 0.7;
}

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  align-items: center;
}

.service-card-body::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #0f766e, #2dd4bf);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover .service-card-body::before {
  opacity: 1;
}

.service-card-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.6rem;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.service-card-body p {
  color: #64748b;
  margin: 0 0 1.25rem;
  white-space: pre-line;
  font-size: 0.95rem;
  line-height: 1.65;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
  margin-block-start: auto;
}

.service-card-link::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

[dir="rtl"] .service-card-link::after {
  content: "←";
}

.service-card:hover .service-card-link {
  gap: 0.75rem;
  color: #134e4a;
}

.service-card:hover .service-card-link::after {
  transform: translateX(3px);
}

[dir="rtl"] .service-card:hover .service-card-link::after {
  transform: translateX(-3px);
}

.services-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: #64748b;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-hero {
    padding-block: 3.5rem;
  }

  .services-hero h1 {
    font-size: 2rem;
  }

  .services-page {
    padding-block: 3rem 4rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.admin-service-thumb {
  width: 64px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
}

.admin-service-image {
  width: min(320px, 100%);
  max-height: 220px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-block-end: 1rem;
}

.tour-duration {
  position: absolute;
  z-index: 2;
  inset-block-end: 1rem;
  inset-inline-start: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
  white-space: nowrap;
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */

.admin-form,
.booking-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-inline-size: 680px;
}

.admin-form.inline-form {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem;
  max-inline-size: none;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
}

input,
select,
textarea {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: #ffffff;
  outline: none;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

fieldset {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-block: 0.5rem;
  background: var(--color-bg-alt);
}

legend {
  padding-inline: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary-dark);
}

.checkbox-row {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.honeypot {
  position: absolute;
  inset-inline-start: -9999px;
}

/* ==========================================================================
   ITINERARY & DETAILS
   ========================================================================== */

.itinerary {
  list-style: none;
  padding: 0;
  margin-block: 1.5rem;
  position: relative;
}

.itinerary li {
  position: relative;
  padding-inline-start: 2.5rem;
  margin-block-end: 2rem;
}

.itinerary li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0.6rem;
  top: 1.8rem;
  bottom: -1.5rem;
  width: 2px;
  background: var(--color-border);
}

.itinerary li:last-child::before {
  display: none;
}

.itinerary li::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.25rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-sm);
}

.itinerary h3 {
  margin-block: 0 0.4rem;
  color: var(--color-primary-dark);
}

.inclusions-exclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-block: 2rem;
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.inclusions-exclusions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inclusions-exclusions li {
  padding-block: 0.4rem;
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-block: 1.5rem;
}

.gallery img {
  inline-size: 100%;
  block-size: 140px;
  object-fit: contain;
  background: #f1f5f9;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery img:hover {
  transform: scale(1.03);
}

/* Reviews */
.tour-reviews-section {
  border-top: 1px solid var(--color-border-light);
  padding-block-start: 3.5rem;
}

.tour-reviews-section>h2 {
  margin-block-end: 1.75rem;
  font-size: 1.6rem;
}

.reviews {
  display: grid;
  gap: 1rem;
  margin-block: 1.5rem;
}

.review-card {
  margin: 0;
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border-inline-start: 4px solid var(--color-primary);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-end: 0.5rem;
  flex-wrap: wrap;
}

.review-stars {
  color: var(--color-accent);
  font-weight: 700;
}

.review-country {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.review-form-wrap {
  margin-block: 2.5rem;
  max-width: 720px;
  padding: 1.5rem 1.75rem 1.75rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border-inline-start: 4px solid var(--color-primary);
}

[dir="ltr"] .review-form-wrap {
  margin-inline-start: 1.5rem;
}

.review-form-header {
  padding: 0;
  margin-block-end: 1.25rem;
}

.review-form-header h3 {
  margin-block-start: 0;
  margin-block-end: 0.25rem;
  font-size: 1.15rem;
  color: var(--color-primary-dark);
}

.review-form-header p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
}

.review-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.review-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.review-field-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.review-field input,
.review-field select,
.review-message-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: #ffffff;
  outline: none;
  transition: var(--transition);
}

.review-field input:focus,
.review-field select:focus,
.review-message-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.review-rating-field {
  grid-column: span 1;
}

.review-rating-select-wrap {
  position: relative;
}

.review-rating-select {
  width: 100%;
  padding-inline-end: 2.5rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: none;
  cursor: pointer;
}

.review-rating-icon {
  position: absolute;
  inset-inline-end: 0.85rem;
  top: 50%;
  translate: 0 -50%;
  pointer-events: none;
  font-size: 0.95rem;
}

.review-message-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.review-message-field textarea {
  resize: vertical;
  min-block-size: 120px;
}

.review-submit {
  align-self: flex-start;
  gap: 0.5rem;
}

.review-submit span:last-child {
  transition: transform 0.2s ease;
}

.review-submit:hover span:last-child {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .review-fields {
    grid-template-columns: 1fr;
  }

  .review-form {
    padding: 1rem;
  }

  .review-form-header {
    padding: 0;
  }
}

/* ==========================================================================
   BREADCRUMBS, PAGINATION & FILTERS
   ========================================================================== */

.breadcrumbs {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-block: 1.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--color-text-muted);
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

.filter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-block: 1.5rem;
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.category-filter,
.status-filter {
  display: flex;
  gap: 0.5rem;
  margin-block: 1.5rem;
  flex-wrap: wrap;
}

.category-filter a,
.status-filter a {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.category-filter a.active,
.status-filter a.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-block: 2.5rem;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: #ffffff;
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.pagination a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pagination a.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* ==========================================================================
   FOOTER & WHATSAPP
   ========================================================================== */

.site-footer {
  background: #0f172a;
  color: #94a3b8;
  margin-block-start: 4rem;
  padding-block: 3.5rem 1.5rem;
}

.site-footer h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-block-end: 0.75rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-block-start: 2.5rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid #1e293b;
  font-size: 0.85rem;
  color: #64748b;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  align-items: center;
}

.social-icons li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  border: none;
  color: #cbd5e1;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.social-icons img {
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.social-icons a:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.whatsapp-button {
  position: fixed;
  inset-block-end: 2rem;
  inset-inline-end: 2rem;
  inline-size: 60px;
  block-size: 60px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-icon {
  inline-size: 34px;
  block-size: 34px;
}

.whatsapp-button:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

/* ==========================================================================
   ALERTS & BADGES
   ========================================================================== */

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-block: 1.5rem;
  font-weight: 500;
}

.alert-success {
  background: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-error {
  background: var(--color-danger-bg);
  color: var(--color-danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.placeholder-note {
  background: #fffbeb;
  border: 1px solid #fef3c7;
  color: #92400e;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-published,
.badge-active,
.badge-approved,
.badge-featured,
.badge-confirmed {
  background: var(--color-success-bg);
  color: #059669;
}

.badge-draft,
.badge-pending,
.badge-submitted,
.badge-new {
  background: #fffbeb;
  color: #b45309;
}

.badge-rejected,
.badge-cancelled {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}

/* ==========================================================================
   ADMIN SHELL & PANEL
   ========================================================================== */

.admin-body {
  background: #f1f5f9;
  color: #0f172a;
}

.admin-shell {
  display: flex;
  min-block-size: 100vh;
}

.admin-sidebar {
  inline-size: 250px;
  background: #0f172a;
  color: #94a3b8;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: sticky;
  inset-block-start: 0;
  block-size: 100vh;
  overflow: hidden;
}

.admin-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-block-end: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.admin-nav {
  flex: 1;
  min-block-size: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-inline-end: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: #334155 transparent;
}

.admin-nav::-webkit-scrollbar {
  inline-size: 5px;
}

.admin-nav::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}

.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #94a3b8;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.25;
  transition: var(--transition);
  text-decoration: none;
}

.admin-sidebar a:hover {
  color: #ffffff;
  background: #1e293b;
}

.admin-sidebar a.active {
  color: #ffffff;
  background: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.nav-group {
  margin-block-start: 0.85rem;
  margin-block-end: 0.2rem;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  padding-inline-start: 0.65rem;
  flex-shrink: 0;
}

.admin-nav .nav-group:first-child {
  margin-block-start: 0.35rem;
}

.logout-form {
  flex-shrink: 0;
}

.admin-content {
  flex: 1;
  padding: 2.5rem;
  overflow-y: auto;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block-end: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-block: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.admin-table th {
  background: #f8fafc;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 1rem;
  text-align: start;
}

.admin-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.92rem;
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: #f8fafc;
}

.admin-table .clickable-row {
  cursor: pointer;
}

.admin-subtitle {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  margin-block-start: 0.2rem;
}

.legal-pages-list-title,
.legal-pages-list-title-en {
  display: block;
  line-height: 1.4;
}

.legal-pages-list-title {
  font-weight: 700;
  color: var(--color-text);
}

.legal-pages-list-title-en {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-block-start: 0.15rem;
}

.admin-toolbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.message-body {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.msg-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  margin-block-end: 1.5rem;
}

.msg-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.msg-card-header {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--color-border-light);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.msg-card-header h2 {
  margin: 0;
  font-size: 1rem;
  color: var(--color-primary-dark);
}

.msg-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem 1.25rem;
  padding: 1.25rem;
  margin: 0;
}

.msg-field dt {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-block-end: 0.15rem;
}

.msg-field dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
  word-break: break-word;
}

.msg-card-status {
  display: flex;
  flex-direction: column;
}

.msg-card-status .admin-form {
  padding: 1.25rem;
  flex: 1;
}

.msg-card-status select {
  width: 100%;
  margin-block-end: 0.75rem;
}

.msg-section {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}

.msg-section h2 {
  margin-block-start: 0;
  margin-block-end: 0.75rem;
  font-size: 1rem;
  color: var(--color-primary-dark);
}

.msg-body {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  line-height: 1.75;
  font-size: 0.95rem;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 860px) {
  .msg-detail-grid {
    grid-template-columns: 1fr;
  }
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-block: 1.5rem 2rem;
}

.stat-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-block-end: 0.4rem;
}

.dash-subtitle {
  color: var(--color-text-muted, #6b7280);
  margin-block-start: -0.5rem;
  margin-block-end: 1.5rem;
}

.dash-section-title {
  margin-block-start: 2.25rem;
  margin-block-end: 0.25rem;
  padding-block-end: 0.4rem;
  border-block-end: 2px solid var(--color-border);
  font-size: 1.05rem;
}

.stat-card-primary {
  background: color-mix(in srgb, var(--color-primary) 8%, #ffffff);
  border-color: color-mix(in srgb, var(--color-primary) 35%, var(--color-border));
}

.stat-card-primary .stat-number {
  font-size: 2.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.inline-delete {
  display: inline;
}

.admin-login-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-block-size: 100vh;
  background: linear-gradient(135deg, #0c4a3e 0%, #0f766e 100%);
  padding: 1.5rem;
}

.admin-login-form {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 400px;
}

/* ==========================================================================
   ADMIN LANGUAGE SWITCHER & EXTRA UTILITIES
   ========================================================================== */

.admin-lang-switch {
  display: flex;
  gap: 0.4rem;
  margin-block-end: 1.5rem;
}

/* Site settings only: organized panels without changing other admin pages. */
.settings-editor-heading,
.settings-editor,
.settings-social-section {
  max-width: 980px;
  margin-inline: auto;
}

.settings-editor-heading {
  margin-block-end: 1.75rem;
}

.settings-editor-heading h1 {
  margin-block: 0.2rem 0.35rem;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
}

.settings-editor-heading p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.settings-editor-kicker {
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.settings-editor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-inline-size: 980px;
}

.settings-editor .settings-panel {
  inline-size: 100%;
  margin: 0;
  padding: 1.5rem;
  border-color: #d7e1e8;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
}

.settings-editor .settings-panel:nth-of-type(1),
.settings-editor .settings-panel:nth-of-type(2),
.settings-editor .settings-whatsapp-panel,
.settings-editor>button {
  grid-column: 1 / -1;
}

.settings-editor .settings-panel:nth-of-type(1),
.settings-editor .settings-panel:nth-of-type(2),
.settings-editor .settings-panel:nth-of-type(3) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
}

.settings-editor .settings-panel legend,
.settings-editor .settings-panel .settings-toggle {
  grid-column: 1 / -1;
}

.settings-toggle {
  flex-direction: row !important;
  align-items: center;
  gap: 0.55rem !important;
  cursor: pointer;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
}

.settings-toggle input[type="checkbox"] {
  inline-size: 1.05rem;
  block-size: 1.05rem;
  margin: 0;
  accent-color: var(--color-primary);
}

.settings-editor>button {
  justify-self: end;
}

.settings-social-section {
  margin-block-start: 2.5rem;
}

.settings-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-block-end: 1rem;
}

.settings-section-heading h2 {
  margin: 0.2rem 0 0;
  font-size: 1.35rem;
}

.settings-section-heading>span {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.settings-social-section .admin-table {
  margin-block: 0 1.5rem;
}

.settings-social-form {
  max-inline-size: none;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.settings-social-form label {
  flex: 1 1 160px;
  min-inline-size: 0;
  margin: 0;
}

@media (max-width: 640px) {

  .settings-editor,
  .settings-editor .settings-panel:nth-of-type(1),
  .settings-editor .settings-panel:nth-of-type(2),
  .settings-editor .settings-panel:nth-of-type(3) {
    display: flex;
    gap: 1rem;
  }

  .settings-editor .settings-panel {
    padding: 1rem;
  }

  .settings-editor>button {
    width: 100%;
    justify-content: center;
  }

  .settings-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .settings-social-form {
    align-items: stretch;
  }

  .settings-social-form .btn {
    width: 100%;
  }
}

/* Destination editor only: the destinations index keeps its existing layout. */
.destination-editor-heading {
  max-width: 980px;
  margin-inline: auto;
  margin-block-end: 1.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.destination-editor-heading h1 {
  margin-block: 0.2rem 0.35rem;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
}

.destination-editor-heading p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.destination-editor-kicker {
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.destination-editor-back,
.destination-editor-cancel {
  color: var(--color-text-muted);
  background: #ffffff;
  border: 1px solid var(--color-border);
}

.destination-editor-back:hover,
.destination-editor-cancel:hover {
  color: var(--color-text);
  background: var(--color-bg-alt);
  border-color: #cbd5e1;
}

.destination-editor fieldset {
  max-width: 980px;
  margin-inline: auto;
  padding: 1.5rem;
  border-color: #d7e1e8;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
}

.destination-editor fieldset[dir="ltr"] {
  text-align: start;
}

.legal-page-editor {
  grid-template-columns: 1fr;
}

.legal-page-editor>fieldset:nth-of-type(1),
.legal-page-editor>fieldset:nth-of-type(2) {
  grid-column: 1 / -1;
}

.legal-page-editor fieldset {
  max-inline-size: none;
}

.destination-editor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-inline-size: 980px;
  margin-inline: auto;
}

.destination-editor>fieldset:nth-of-type(1),
.destination-editor>fieldset:nth-of-type(4),
.destination-editor>.destination-editor-actions {
  grid-column: 1 / -1;
}

.destination-editor>fieldset {
  inline-size: 100%;
  margin-block: 0;
  margin-inline: 0;
}

.destination-editor fieldset:nth-of-type(1) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 1.25rem;
}

.destination-editor fieldset:nth-of-type(1) legend,
.destination-editor fieldset:nth-of-type(1) label:last-child {
  grid-column: 1 / -1;
}

.destination-featured-toggle {
  flex-direction: row !important;
  align-items: center;
  gap: 0.55rem !important;
  cursor: pointer;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
}

.destination-featured-toggle input[type="checkbox"] {
  inline-size: 1.05rem;
  block-size: 1.05rem;
  margin: 0;
  accent-color: var(--color-primary);
}

.destination-editor fieldset:nth-of-type(2),
.destination-editor fieldset:nth-of-type(3),
.destination-editor fieldset:nth-of-type(4) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
}

.destination-editor fieldset:nth-of-type(2),
.destination-editor fieldset:nth-of-type(3) {
  display: block;
}

.destination-editor fieldset:nth-of-type(2) legend,
.destination-editor fieldset:nth-of-type(3) legend,
.destination-editor fieldset:nth-of-type(4) legend,
.destination-editor textarea {
  grid-column: 1 / -1;
}

.destination-editor-actions {
  max-width: 980px;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
}

.destination-cities-panel {
  max-width: 980px;
  margin: 2.5rem auto 0;
  padding-block-start: 1.5rem;
  border-block-start: 1px solid var(--color-border);
}

@media (max-width: 640px) {
  .destination-editor-heading {
    flex-direction: column;
  }

  .destination-editor-back {
    width: 100%;
    justify-content: center;
  }

  .destination-editor fieldset:nth-of-type(1),
  .destination-editor fieldset:nth-of-type(2),
  .destination-editor fieldset:nth-of-type(3),
  .destination-editor fieldset:nth-of-type(4) {
    display: block;
  }

  .destination-editor>fieldset:nth-of-type(1),
  .destination-editor>fieldset:nth-of-type(4),
  .destination-editor>.destination-editor-actions {
    grid-column: auto;
  }

  .destination-editor {
    display: flex;
    gap: 1rem;
  }

  .destination-editor-actions {
    flex-direction: column-reverse;
  }

  .destination-editor-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Tour editor only: keep the tours index unchanged. */
.tour-editor-heading {
  max-width: 980px;
  margin-inline: auto;
  margin-block-end: 1.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.tour-editor-heading h1 {
  margin-block: 0.2rem 0.35rem;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
}

.tour-editor-heading p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.tour-editor-kicker {
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-editor-back,
.tour-editor-cancel {
  color: var(--color-text-muted);
  background: #ffffff;
  border: 1px solid var(--color-border);
}

.tour-editor-back:hover,
.tour-editor-cancel:hover {
  color: var(--color-text);
  background: var(--color-bg-alt);
  border-color: #cbd5e1;
}

.tour-editor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-inline-size: 980px;
  margin-inline: auto;
}

.tour-editor>fieldset {
  inline-size: 100%;
  margin-block: 0;
  margin-inline: 0;
  padding: 1.5rem;
  border-color: #d7e1e8;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
}

.tour-editor>fieldset:nth-of-type(1),
.tour-editor>fieldset:nth-of-type(4),
.tour-editor>.tour-editor-actions {
  grid-column: 1 / -1;
}

.tour-editor>fieldset:nth-of-type(1) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
}

.tour-editor>fieldset:nth-of-type(1) legend,
.tour-editor>fieldset:nth-of-type(1) .tour-featured-toggle {
  grid-column: 1 / -1;
}

.tour-editor>fieldset:nth-of-type(2),
.tour-editor>fieldset:nth-of-type(3) {
  display: block;
}

.tour-editor>fieldset:nth-of-type(4) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
}

.tour-editor>fieldset:nth-of-type(4) legend,
.tour-editor>fieldset:nth-of-type(4) textarea {
  grid-column: 1 / -1;
}

.tour-featured-toggle,
.tour-cover-toggle {
  flex-direction: row !important;
  align-items: center;
  gap: 0.55rem !important;
  cursor: pointer;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
}

.tour-featured-toggle input[type="checkbox"],
.tour-cover-toggle input[type="checkbox"] {
  inline-size: 1.05rem;
  block-size: 1.05rem;
  margin: 0;
  accent-color: var(--color-primary);
}

.tour-editor-actions {
  max-width: 980px;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
}

.tour-editor-section {
  max-width: 980px;
  margin: 2.5rem auto 0;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #d7e1e8;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
}

.tour-editor-section h2 {
  margin-block: 0 1rem;
  font-size: 1.35rem;
}

.tour-editor-section h3 {
  margin-block: 1.5rem 0.8rem;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.category-create-form {
  max-width: 980px;
  margin: 0 auto 1.5rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.category-create-form label {
  flex: 1 1 180px;
  margin: 0;
}

.blog-settings-grid {
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.blog-settings-panel {
  min-inline-size: 0;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #d7e1e8;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
}

.blog-settings-panel h2 {
  margin-block: 0 1rem;
  font-size: 1.25rem;
}

.blog-settings-alert {
  max-width: 980px;
  margin: 0 auto 1.25rem;
}

.blog-settings-form {
  max-inline-size: none;
  padding: 1rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
}

.blog-settings-form label {
  flex: 1 1 140px;
  min-inline-size: 0;
  margin: 0;
}

.blog-settings-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.blog-settings-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-block-end: 1px solid var(--color-border-light);
}

.blog-settings-list small {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

.faq-category-panel {
  max-inline-size: none;
  margin: 0;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #d7e1e8;
  border-radius: var(--radius);
  box-shadow: none;
}

.faq-question-panel {
  max-inline-size: none;
  margin: 0;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #d7e1e8;
  border-radius: var(--radius);
  box-shadow: none;
}

.faq-question-form {
  max-inline-size: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.faq-question-form label:nth-of-type(1),
.faq-question-form label:nth-of-type(2) {
  grid-row: 1;
}

.faq-question-form label:nth-of-type(3),
.faq-question-form label:nth-of-type(4) {
  grid-row: 2;
}

.faq-question-form label:nth-of-type(5),
.faq-question-form label:nth-of-type(6),
.faq-question-actions {
  grid-column: 1 / -1;
}

.faq-question-form textarea {
  min-block-size: 8rem;
  resize: vertical;
}

.faq-question-actions {
  display: flex;
  justify-content: flex-end;
  padding-block-start: 0.25rem;
}

.faq-category-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-block-end: 1rem;
}

.faq-category-heading h2 {
  margin: 0.2rem 0 0;
  font-size: 1.25rem;
}

.faq-category-hint {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.faq-category-list {
  margin-block-start: 1rem;
}

.faq-page-wrap {
  max-inline-size: 980px;
  margin-inline: auto;
}

.faq-page-wrap .blog-settings-alert {
  max-inline-size: none;
  margin: 0 0 1.25rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 320px 560px;
  gap: 0.25rem;
  justify-content: start;
  align-items: start;
}

.faq-main {
  display: contents;
}

.faq-question-panel {
  grid-row: 1;
  grid-column: 2;
  max-inline-size: none;
  margin: 0;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #d7e1e8;
  border-radius: var(--radius);
  box-shadow: none;
}

.faq-sidebar {
  grid-row: 1;
  grid-column: 1;
  position: static;
}

.faq-sidebar .faq-category-panel {
  max-width: none;
  margin: 0;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #d7e1e8;
  border-radius: var(--radius);
  box-shadow: none;
}

.faq-items-panel {
  grid-row: 2;
  grid-column: 1 / -1;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #d7e1e8;
  border-radius: var(--radius);
  box-shadow: none;
}

.faq-items-panel .admin-table {
  margin-block-start: 1rem;
}

.faq-category-form {
  margin-block-start: 0.75rem;
  max-inline-size: none;
  padding: 1rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  gap: 0.85rem;
}

.faq-category-form label {
  flex: 0 0 auto;
  margin: 0;
}

@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-question-panel {
    grid-row: 1;
    grid-column: 1;
  }

  .faq-sidebar {
    grid-row: 2;
    grid-column: 1;
  }

  .faq-items-panel {
    grid-row: 3;
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .faq-page-wrap {
    margin-inline: 0;
  }

  .faq-layout {
    gap: 0.75rem;
  }

  .faq-question-panel,
  .faq-sidebar .faq-category-panel,
  .faq-items-panel {
    padding: 1rem;
    border-radius: 14px;
  }

  .faq-category-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-question-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .faq-question-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .faq-category-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
}

.tour-editor-section .admin-image-grid {
  margin-block-start: 0;
}

.tour-editor-section .admin-table {
  margin-block: 0 1.25rem;
}

.tour-editor-inline-form {
  max-inline-size: none;
  padding: 1rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
}

.tour-editor-inline-form label {
  min-inline-size: 150px;
  flex: 1 1 150px;
  margin: 0;
}

.tour-editor-inline-form .btn {
  flex: 0 0 auto;
}

.tour-image-upload-form {
  display: grid;
  grid-template-columns: minmax(190px, 1.25fr) repeat(2, minmax(150px, 1fr)) minmax(130px, 0.85fr) auto;
  align-items: end;
  gap: 0.85rem;
}

.tour-image-upload-form label {
  min-inline-size: 0;
  margin: 0;
}

.tour-image-upload-form input[type="file"] {
  inline-size: 100%;
  min-block-size: 2.55rem;
  padding: 0.38rem;
  font-size: 0.82rem;
  background: #ffffff;
}

.tour-image-upload-form .btn {
  min-block-size: 2.55rem;
  white-space: nowrap;
}

.tour-editor-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.tour-editor-split>div {
  min-inline-size: 0;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #d7e1e8;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
}

.tour-editor-split .plain-list {
  min-block-size: 3rem;
  margin-block-end: 1rem;
}

.tour-editor-split .inline-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: center;
}

.tour-editor-split .inline-form input {
  min-inline-size: 0;
}

@media (max-width: 640px) {
  .tour-editor-heading {
    flex-direction: column;
  }

  .tour-editor-back {
    width: 100%;
    justify-content: center;
  }

  .tour-editor {
    display: flex;
    gap: 1rem;
  }

  .tour-editor>fieldset:nth-of-type(1),
  .tour-editor>fieldset:nth-of-type(2),
  .tour-editor>fieldset:nth-of-type(3),
  .tour-editor>fieldset:nth-of-type(4) {
    display: block;
  }

  .tour-editor-actions {
    flex-direction: column-reverse;
  }

  .tour-editor-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .tour-editor-section {
    padding: 1rem;
  }

  .tour-editor-split {
    display: block;
  }

  .tour-editor-split>div+div {
    margin-block-start: 1rem;
  }

  .tour-editor-split .inline-form {
    display: flex;
  }

  .tour-image-upload-form {
    display: flex;
    align-items: stretch;
  }

  .tour-image-upload-form .btn {
    width: 100%;
  }
}

/* Blog editor only: keep the blog index unchanged. */
.blog-editor-heading {
  max-width: 980px;
  margin-inline: auto;
  margin-block-end: 1.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.blog-editor-heading h1 {
  margin-block: 0.2rem 0.35rem;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
}

.blog-editor-heading p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.blog-editor-kicker {
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-editor-back,
.blog-editor-cancel {
  color: var(--color-text-muted);
  background: #ffffff;
  border: 1px solid var(--color-border);
}

.blog-editor-back:hover,
.blog-editor-cancel:hover {
  color: var(--color-text);
  background: var(--color-bg-alt);
  border-color: #cbd5e1;
}

.blog-editor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-inline-size: 980px;
  margin-inline: auto;
}

.blog-editor>fieldset {
  inline-size: 100%;
  margin-block: 0;
  margin-inline: 0;
  padding: 1.5rem;
  border-color: #d7e1e8;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
}

.blog-editor>fieldset:nth-of-type(1),
.blog-editor>fieldset:nth-of-type(4),
.blog-editor>.blog-editor-actions {
  grid-column: 1 / -1;
}

.blog-editor>fieldset:nth-of-type(1),
.blog-editor>fieldset:nth-of-type(4) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
}

.blog-editor>fieldset:nth-of-type(1) legend,
.blog-editor>fieldset:nth-of-type(4) legend,
.blog-editor>fieldset:nth-of-type(4) textarea {
  grid-column: 1 / -1;
}

.blog-editor>fieldset:nth-of-type(2),
.blog-editor>fieldset:nth-of-type(3) {
  display: block;
}

.blog-editor textarea {
  min-block-size: 5rem;
  resize: vertical;
}

.blog-editor>fieldset:nth-of-type(2) textarea,
.blog-editor>fieldset:nth-of-type(3) textarea {
  min-block-size: 8rem;
}

.blog-editor-actions {
  max-width: 980px;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
}

@media (max-width: 640px) {
  .blog-editor-heading {
    flex-direction: column;
  }

  .blog-editor-back {
    width: 100%;
    justify-content: center;
  }

  .blog-editor {
    display: flex;
    gap: 1rem;
  }

  .blog-editor>fieldset:nth-of-type(1),
  .blog-editor>fieldset:nth-of-type(2),
  .blog-editor>fieldset:nth-of-type(3),
  .blog-editor>fieldset:nth-of-type(4) {
    display: block;
  }

  .blog-editor-actions {
    flex-direction: column-reverse;
  }

  .blog-editor-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Campaign editor only: keep the campaigns index unchanged. */
.campaign-editor-heading {
  max-width: 980px;
  margin-inline: auto;
  margin-block-end: 1.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.campaign-editor-heading h1 {
  margin-block: 0.2rem 0.35rem;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
}

.campaign-editor-heading p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.campaign-editor-kicker {
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.campaign-editor-back,
.campaign-editor-cancel {
  color: var(--color-text-muted);
  background: #ffffff;
  border: 1px solid var(--color-border);
}

.campaign-editor-back:hover,
.campaign-editor-cancel:hover {
  color: var(--color-text);
  background: var(--color-bg-alt);
  border-color: #cbd5e1;
}

.campaign-editor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-inline-size: 980px;
  margin-inline: auto;
}

.campaign-editor>fieldset {
  inline-size: 100%;
  margin-block: 0;
  margin-inline: 0;
  padding: 1.5rem;
  border-color: #d7e1e8;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
}

.campaign-editor>fieldset:nth-of-type(1),
.campaign-editor>fieldset:nth-of-type(4),
.campaign-editor>.campaign-editor-actions {
  grid-column: 1 / -1;
}

.campaign-editor>fieldset:nth-of-type(1),
.campaign-editor>fieldset:nth-of-type(4) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
}

.campaign-editor>fieldset:nth-of-type(1) legend,
.campaign-editor>fieldset:nth-of-type(4) legend,
.campaign-editor>fieldset:nth-of-type(4) textarea {
  grid-column: 1 / -1;
}

.campaign-editor>fieldset:nth-of-type(2),
.campaign-editor>fieldset:nth-of-type(3) {
  display: block;
}

.campaign-editor>fieldset:nth-of-type(2) textarea,
.campaign-editor>fieldset:nth-of-type(3) textarea {
  min-block-size: 9rem;
  resize: vertical;
}

.campaign-tours-fieldset {
  grid-column: 1 / -1;
}

.campaign-tour-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-block-size: 22rem;
  overflow-y: auto;
  padding: 0.25rem;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  background: #f8fafc;
}

.campaign-tours-fieldset .checkbox-row {
  display: flex;
  inline-size: 100%;
  min-block-size: 3.1rem;
  margin: 0;
  align-items: center;
  justify-content: flex-start;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  transition: var(--transition);
}

.campaign-tours-fieldset .checkbox-row:hover {
  border-color: var(--color-primary-light);
  background: var(--color-primary-subtle);
}

.campaign-tour-option span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.campaign-tour-option input[type="checkbox"] {
  inline-size: 1.05rem;
  block-size: 1.05rem;
  margin: 0;
  accent-color: var(--color-primary);
}

.campaign-tour-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem;
  color: var(--color-text-muted);
  text-align: center;
}

.campaign-editor-actions {
  max-width: 980px;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
}

.campaign-editor-section {
  max-width: 980px;
  margin: 2.5rem auto 0;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #d7e1e8;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
}

.campaign-editor-section h2 {
  margin-block: 0 1rem;
  font-size: 1.35rem;
}

.campaign-editor-section h3 {
  margin-block: 1.5rem 0.8rem;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.campaign-editor-section .admin-image-grid {
  margin-block-start: 0;
}

.campaign-image-upload-form {
  display: grid;
  grid-template-columns: minmax(190px, 1.25fr) repeat(2, minmax(150px, 1fr)) minmax(130px, 0.85fr) auto;
  align-items: end;
  gap: 0.85rem;
  max-inline-size: none;
  padding: 1rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
}

.campaign-image-upload-form label {
  min-inline-size: 0;
  margin: 0;
}

.campaign-image-upload-form input[type="file"] {
  inline-size: 100%;
  min-block-size: 2.55rem;
  padding: 0.38rem;
  font-size: 0.82rem;
  background: #ffffff;
}

.campaign-image-upload-form .btn {
  min-block-size: 2.55rem;
  white-space: nowrap;
}

.campaign-cover-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  cursor: pointer;
}

.campaign-cover-toggle input[type="checkbox"] {
  inline-size: 1.05rem;
  block-size: 1.05rem;
  margin: 0;
  accent-color: var(--color-primary);
}

@media (max-width: 640px) {
  .campaign-editor-heading {
    flex-direction: column;
  }

  .campaign-editor-back {
    width: 100%;
    justify-content: center;
  }

  .campaign-editor {
    display: flex;
    gap: 1rem;
  }

  .campaign-editor>fieldset:nth-of-type(1),
  .campaign-editor>fieldset:nth-of-type(2),
  .campaign-editor>fieldset:nth-of-type(3),
  .campaign-editor>fieldset:nth-of-type(4) {
    display: block;
  }

  .campaign-tours-fieldset .checkbox-row {
    display: flex;
    inline-size: 100%;
    margin-inline-end: 0;
  }

  .campaign-tour-picker {
    grid-template-columns: 1fr;
    max-block-size: 18rem;
  }

  .campaign-editor-actions {
    flex-direction: column-reverse;
  }

  .campaign-editor-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .campaign-editor-section {
    padding: 1rem;
  }

  .campaign-image-upload-form {
    display: flex;
    align-items: stretch;
  }

  .campaign-image-upload-form .btn {
    width: 100%;
  }
}

.lang-btn {
  flex: 1;
  text-align: center;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  background: #1e293b;
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid transparent;
}

.lang-btn:hover {
  color: #ffffff;
  background: #334155;
}

.lang-btn.active {
  color: #ffffff;
  background: var(--color-primary);
  border-color: var(--color-primary-light);
}

.action-cell {
  white-space: nowrap;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.logout-form {
  margin-block-start: auto;
  padding-block-start: 1.5rem;
}

.logout-form button {
  width: 100%;
  background: #1e293b;
  color: #94a3b8;
  border: 1px solid #334155;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.logout-form button:hover {
  background: var(--color-danger);
  color: #ffffff;
  border-color: var(--color-danger);
}

.admin-image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-block: 1rem;
}

.admin-image-item {
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  min-width: 160px;
}

.admin-image-item img {
  border-radius: var(--radius-sm);
  object-fit: contain;
  display: block;
}

.admin-image-item small {
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

.admin-whoami {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-block-end: 1.5rem;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.plain-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.92rem;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  cursor: pointer;
}

.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */

@media (max-width: 900px) {
  .admin-shell {
    flex-direction: column;
  }

  .admin-sidebar {
    inline-size: 100%;
    position: static;
    block-size: auto;
  }

  .admin-nav {
    overflow-y: visible;
    max-block-size: none;
  }

  .two-col,
  .inclusions-exclusions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 2rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-nav-wrap {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: #ffffff;
    padding: 1.25rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    /* Override the desktop rule's justify-content: flex-end (line ~224).
       With flex-direction: column that packs content against the bottom
       of this scrollable panel, so it opens pre-scrolled to the end and
       scrolling reads as inverted. Force it back to the start. */
    justify-content: flex-start;
    gap: 1.25rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2rem;
  }

  .header-nav-wrap.open {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    flex: none;
  }

  .main-nav a {
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius-sm);
  }

  .header-search input {
    width: 100%;
  }
}

/* Status filter tabs */
.status-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-end: 1.5rem;
}

.status-filter a {
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: #f1f5f9;
  text-decoration: none;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.status-filter a:hover,
.status-filter a.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* Admin form fieldsets */
.admin-form fieldset {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-block-end: 1.5rem;
  background: #ffffff;
}

.admin-form legend {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-inline: 0.5rem;
}

.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-block-end: 1rem;
}

.admin-form input[type=text],
.admin-form input[type=email],
.admin-form input[type=number],
.admin-form input[type=url],
.admin-form input[type=password],
.admin-form select,
.admin-form textarea {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  background: #f8fafc;
  transition: var(--transition);
  width: 100%;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.placeholder-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  margin-block-end: 1.5rem;
}

/* ==========================================================================
   PREMIUM REDESIGN ADDITIONS: HEADER, HERO V2, CARDS, SECTIONS, FOOTER
   ========================================================================== */

/* --- Sticky Modern Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  color: #0f172a;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-text {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.header-nav-wrap {
  align-items: center;
  gap: 1.25rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: #0f766e;
  background: rgba(15, 118, 110, 0.08);
}

/* Header search input */
.header-search .search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search .search-icon {
  position: absolute;
  inset-inline-start: 0.75rem;
  width: 1rem;
  height: 1rem;
  color: #94a3b8;
  pointer-events: none;
}

.header-search input {
  padding: 0.45rem 0.85rem 0.45rem 2.25rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.85rem;
  width: 140px;
  transition: all 0.25s ease;
}

[dir="rtl"] .header-search input {
  padding: 0.45rem 2.25rem 0.45rem 0.85rem;
}

.header-search input:focus {
  width: 200px;
  background: #ffffff;
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
  outline: none;
}

/* Header CTA Button */
.btn-cta-nav {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-cta-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.35);
  color: #000 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Hero Section v2 --- */
.hero-v2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0c4a3e 0%, #0f766e 60%, #14b8a6 100%);
  color: #ffffff;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #173f3b;
  z-index: 0;
}

.hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0) 8%, rgba(15, 23, 42, 0) 92%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.08) 50%, rgba(15, 23, 42, 0.28) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-v2 .hero-orb {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-v2 .hero-content {
  position: relative;
  z-index: 3;
  padding-inline: 1.5rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite alternate;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: #14b8a6;
  top: -100px;
  left: 10%;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: #0284c7;
  bottom: -150px;
  right: 5%;
  animation-delay: -5s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: #f59e0b;
  top: 40%;
  left: 60%;
  opacity: 0.2;
}

@keyframes orbFloat {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-40px) scale(1.1);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ccfbf1;
  margin-block-end: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #2dd4bf;
  border-radius: 50%;
  box-shadow: 0 0 10px #2dd4bf;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 850px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 18px rgba(15, 23, 42, 0.55);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #e2e8f0;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 14px rgba(15, 23, 42, 0.6);
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-block-end: 3.5rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 50%, #0f766e 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 10px 30px -8px rgba(20, 184, 166, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -10px rgba(20, 184, 166, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-hero-primary:active {
  transform: translateY(-1px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Stats inside hero */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2dd4bf;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* --- Section Styling --- */
.home-section {
  padding-block: 5rem;
}

.section-header {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.team-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.04);
}

.team-section .section-header::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #0f766e, #2dd4bf);
}

.team-section .section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.4rem 1.1rem;
  margin-block-end: 1rem;
  background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
  color: #115e59;
  border: 1px solid rgba(15, 118, 110, 0.2);
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.1);
}

.team-section .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -.03em;
  margin-block-end: 0.75rem;
  line-height: 1.2;
}

.team-section .section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

.section-header-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-block: 1.5rem 2rem;
  background: #f1f5f9;
  box-shadow: 0 20px 45px -15px rgba(15, 118, 110, 0.35), 0 0 0 1px rgba(15, 118, 110, 0.08);
}

.section-header-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.35) 100%);
  pointer-events: none;
}

.section-header-image {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.section-header-image-wrap:hover .section-header-image {
  transform: scale(1.03);
  filter: saturate(1.1);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f766e;
  background: #ccfbf1;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  margin-block-end: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-block-end: 0.6rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  margin-top: 1.25rem;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  box-shadow: 0 6px 20px -6px rgba(15, 118, 110, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-link:hover {
  gap: 0.75rem;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -8px rgba(15, 118, 110, 0.55);
  color: #ffffff;
}

@media (max-width: 640px) {
  .section-header-image-wrap {
    border-radius: 14px;
    margin-block-end: 1.5rem;
    box-shadow: 0 12px 28px -10px rgba(15, 118, 110, 0.3);
  }

  .section-header-image {
    max-height: 220px;
  }

  .section-header {
    margin-block-end: 2.5rem;
  }
}

/* --- Cards Enhancements --- */
.tour-card,
.destination-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.tour-card:hover,
.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px -6px rgba(15, 118, 110, 0.18);
  border-color: #99f6e4;
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.tour-card:hover .card-img-wrap img,
.destination-card:hover .card-img-wrap img {
  transform: scale(1.08);
  filter: brightness(1.03) saturate(1.08);
}

.tour-card .card-content,
.destination-card .card-content,
.tour-card .card-body,
.destination-card .card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.destination-card .card-body-dest {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  background: var(--color-primary-subtle);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  align-self: center;
  margin-inline: auto;
  margin-block-start: 0.75rem;
  transition: var(--transition);
}

.tour-card:hover .card-cta,
.destination-card:hover .card-cta {
  background: var(--color-primary);
  color: #ffffff;
}

.card-cta svg {
  transition: transform 0.2s ease;
}

.tour-card:hover .card-cta svg,
.destination-card:hover .card-cta svg {
  transform: translateX(3px);
}

/* --- Trust / Why Choose Us Section --- */
.trust-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding-block: 5rem;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 420px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.trust-header {
  text-align: center;
  margin-block-end: 3.5rem;
  position: relative;
}

.trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.8rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
  color: #115e59;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-block-end: 1.25rem;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.2);
  border: 1px solid rgba(15, 118, 110, 0.3);
}

.trust-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin: 0 0 0.9rem;
}

.trust-subtitle {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  position: relative;
}

.trust-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.25rem 1.75rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -16px rgba(15, 118, 110, 0.28);
  border-color: rgba(15, 118, 110, 0.35);
}

.trust-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 1.5rem;
}

.trust-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%);
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px -8px rgba(15, 118, 110, 0.45);
}

.trust-icon svg {
  width: 26px;
  height: 26px;
}

.trust-icon-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.trust-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.6rem;
  letter-spacing: -.01em;
}

.trust-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.trust-accent {
  margin-block-start: 1.25rem;
  margin-inline: auto;
  width: 32px;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #0f766e, #2dd4bf);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.trust-card:hover .trust-accent {
  opacity: 1;
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .trust-section {
    padding-block: 3.5rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .trust-card {
    padding: 1.75rem 1.5rem;
  }
}

/* --- Modern Footer --- */
.site-footer {
  position: relative;
  background: #090d16;
  color: #ffffff;
  padding-block: 1.5rem 0;
  overflow: hidden;
  font-size: 0.92rem;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 220px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

/* Inner grid: brand + 3 columns */
.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 1.5rem;
  padding-block-end: 1.25rem;
}

/* Brand column */
.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-block-end: 1.1rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  /* white logo shows correctly on dark background */
}

.footer-tagline {
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.65;
  margin: 0 0 0.5rem 0;
  max-width: 280px;
}

.footer-note {
  font-size: 0.82rem;
  color: #ffffff;
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
  max-width: 280px;
}

/* Nav & info columns */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-style: normal;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-block-end: 0.5rem;
  padding-block-end: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.88rem;
  transition: color 0.2s ease, padding-inline-start 0.2s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: #2dd4bf;
  padding-inline-start: 4px;
}

[dir="rtl"] .footer-col a:hover {
  padding-inline-start: 0;
  padding-inline-end: 4px;
}

/* Contact column */
.footer-col-contact {
  gap: 0.65rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.88rem;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.footer-contact-item:hover {
  color: #2dd4bf;
}

.footer-contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1;
}

/* Contact CTA button */
.btn-outline-footer {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 0.75rem !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 9999px !important;
  border: 1.5px solid #2dd4bf !important;
  background: transparent !important;
  color: #ffffff !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  width: fit-content !important;
  box-shadow: none !important;
  cursor: pointer !important;
  font-family: inherit !important;
  transform: none !important;
}

.btn-outline-footer:hover {
  background: #2dd4bf !important;
  color: #0f172a !important;
  border-color: #2dd4bf !important;
  box-shadow: 0 6px 20px rgba(45, 212, 191, 0.35) !important;
  transform: translateY(-1px) !important;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #ffffff;
}

.footer-bottom small {
  font-size: inherit;
  color: inherit;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #2dd4bf;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Header/nav collapse + scroll behavior is defined once, in the
     max-width: 1080px query above, so every breakpoint below it
     (including this one) inherits the same single scrollable panel
     instead of a second, slightly different, conflicting definition. */

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.header-nav-wrap {
  scrollbar-width: none;
}

.header-nav-wrap::-webkit-scrollbar {
  display: none;
}

/* ==========================================================================
   PUBLIC INNER PAGES: PAGE BANNER, FILTERS, CONTACT & ABOUT LAYOUTS
   ========================================================================== */

/* --- Page Header Banner --- */
.page-banner {
  background: radial-gradient(circle at 50% 0%, #064e3b 0%, #0f172a 100%);
  color: #ffffff;
  padding-block: 4rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-banner::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner-content {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}

.page-banner-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5eead4;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-block-end: 1rem;
}

.page-banner-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-block-end: 0.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-banner-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin: 0;
  text-align: center;
}

.page-content {
  padding-block: 3.5rem 5rem;
}

/* --- Blog Listing Page --- */
.blog-page-banner {
  background: radial-gradient(circle at 18% 0%, #115e59 0%, #0f172a 62%, #111827 100%);
}

.blog-page {
  background:
    radial-gradient(circle at 100% 12%, rgba(245, 158, 11, 0.07), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  max-width: none;
  padding-inline: max(1.5rem, calc((100% - 1152px) / 2));
}

.blog-page-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-block-end: 1.75rem;
}

.blog-page-intro .section-tag {
  margin-block-end: 0.65rem;
}

.blog-page-intro h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25;
}

.blog-page-intro p {
  max-width: 30rem;
  margin: .5rem 0 0;
  color: #64748b;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.7;
  text-align: inherit;
}

[dir="rtl"] .blog-page-intro p {
  text-align: right;
}

.blog-page .category-filter {
  align-items: center;
  gap: 0.65rem;
  margin-block: 0 2rem;
  padding: 0.45rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid #dbe7e6;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px -18px rgba(15, 118, 110, 0.5);
}

.blog-page .category-filter a {
  padding: 0.55rem 1rem;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #64748b;
  font-size: 0.84rem;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.blog-page .category-filter a:hover {
  background: #f0fdfa;
  color: #0f766e;
}

.blog-page .category-filter a.active {
  background: #0f766e;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(15, 118, 110, 0.2);
}

.blog-page .card-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-block: 0 3rem;
}

.blog-page .blog-card {
  min-height: 100%;
  border: 1px solid #dbe7e6;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px -18px rgba(15, 118, 110, 0.45);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.blog-page .blog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 118, 110, 0.4);
  box-shadow: 0 20px 35px -18px rgba(15, 118, 110, 0.34);
}

.blog-page .blog-card>img {
  display: block;
  width: calc(100% - 1.25rem);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f1f5f9;
  border-radius: 14px;
  margin: 1rem 0.625rem 0.625rem;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.blog-page .blog-card-visual-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 1rem 0.625rem 0.625rem;
  border-radius: 14px;
  background:
    radial-gradient(circle at 72% 28%, rgba(245, 158, 11, 0.6) 0 2px, transparent 3px),
    radial-gradient(circle at 24% 68%, rgba(255, 255, 255, 0.35) 0 1px, transparent 2px),
    linear-gradient(135deg, #0f766e 0%, #134e4a 58%, #0f172a 100%);
}

.blog-page .blog-card-visual-placeholder::after {
  content: "";
  position: absolute;
  width: 175px;
  height: 175px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translate(35%, -18%);
}

.blog-page .blog-card-visual-placeholder span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fbbf24;
  font-size: 1.8rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

.blog-page .blog-card:hover>img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.blog-page .blog-card>a {
  flex: 1;
  padding: 1.35rem 1.5rem 1.5rem;
}

.blog-page .blog-card h3 {
  padding-inline: 0;
  margin: 0 0 0.7rem;
  color: #0f172a;
  font-size: 1.15rem;
  line-height: 1.55;
  transition: color 0.25s ease;
}

.blog-page .blog-card:hover h3 {
  color: #0f766e;
}

.blog-page .blog-card p {
  padding-inline: 0;
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.8;
}

.blog-page .pagination {
  margin-block: 0;
  padding-block-end: 0.5rem;
}

@media (max-width: 640px) {
  .blog-page {
    padding-inline: 1rem;
  }

  .blog-page-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .blog-page .category-filter {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .blog-page .category-filter::-webkit-scrollbar {
    display: none;
  }

  .blog-page .category-filter a {
    flex: 0 0 auto;
  }

  .blog-page .card-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Blog Detail Page --- */
.blog-detail-page {
  max-width: 1000px;
  padding-block: 1.5rem 5rem;
}

.blog-detail-page .breadcrumbs {
  margin-block: 0 2.5rem;
  font-size: 0.8rem;
}

.blog-detail-header {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.blog-detail-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  background: #f0fdfa;
  color: #0f766e;
  font-size: 0.76rem;
  font-weight: 700;
}

.blog-detail-header h1 {
  margin: 1rem 0 0.85rem;
  color: #0f172a;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.blog-detail-excerpt {
  max-width: 650px;
  margin-inline: auto;
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: inherit;
}

[dir="rtl"] .blog-detail-excerpt {
  text-align: right;
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-block: 1.25rem 2rem;
  color: #94a3b8;
  font-size: 0.82rem;
}

.blog-detail-meta>*+*::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-inline-end: 0.8rem;
  vertical-align: middle;
  border-radius: 50%;
  background: #f59e0b;
}

.blog-detail-author {
  color: #0f766e;
  font-weight: 700;
}

.blog-detail-cover {
  position: relative;
  overflow: hidden;
  width: min(100%, 760px);
  aspect-ratio: 16 / 7;
  margin-inline: auto;
  border: 1px solid #dbe7e6;
  border-radius: 22px;
  background: #f1f5f9;
  box-shadow: 0 22px 45px -28px rgba(15, 118, 110, 0.45);
}

.blog-detail-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.blog-detail-cover-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 28%, rgba(245, 158, 11, 0.6) 0 2px, transparent 3px),
    linear-gradient(135deg, #0f766e 0%, #134e4a 58%, #0f172a 100%);
}

.blog-detail-cover-placeholder::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(25%, -12%);
}

.blog-detail-cover-placeholder span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fbbf24;
  font-size: 2.4rem;
}

.blog-detail-page .prose {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 2rem 2.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  color: #334155;
  font-size: 1.04rem;
  line-height: 2;
  white-space: pre-line;
  box-shadow: 0 12px 28px -24px rgba(15, 118, 110, 0.5);
}

.blog-detail-page .prose:empty {
  display: none;
}

.blog-related {
  max-width: 900px;
  margin: 4.5rem auto 0;
  padding-block-start: 2.25rem;
  border-block-start: 1px solid #dbe7e6;
}

.blog-related-heading {
  margin-block-end: 1.25rem;
}

.blog-related-heading .section-tag {
  margin-block-end: 0.55rem;
}

.blog-related-heading h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.55rem;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.blog-related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 135px;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid #dbe7e6;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff, #f2fbfa);
  color: #0f172a;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-related-card::after {
  content: "";
  position: absolute;
  inset-block-end: -42px;
  inset-inline-end: -30px;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(245, 158, 11, 0.36);
  border-radius: 50%;
}

.blog-related-card span {
  margin-block-end: 0.55rem;
  color: #0f766e;
  font-size: 0.76rem;
  font-weight: 700;
}

.blog-related-card strong {
  max-width: 90%;
  color: #0f172a;
  font-size: 0.98rem;
  line-height: 1.55;
}

.blog-related-card svg {
  margin-block-start: auto;
  color: #0f766e;
  transition: transform 0.25s ease;
}

.blog-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.4);
  box-shadow: 0 14px 25px -18px rgba(15, 118, 110, 0.45);
}

.blog-related-card:hover svg {
  transform: translateX(4px);
}

/* --- Campaigns Listing Page --- */
.campaigns-page-banner {
  background: radial-gradient(circle at 82% 0%, #854d0e 0%, #0f172a 60%, #111827 100%);
  position: relative;
  overflow: hidden;
}

.campaigns-page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 80%, rgba(245, 158, 11, 0.15) 0, transparent 50%);
  pointer-events: none;
  animation: bannerGlow 6s ease-in-out infinite alternate;
}

@keyframes bannerGlow {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.campaigns-page {
  background:
    radial-gradient(circle at 0% 10%, rgba(20, 184, 166, 0.07), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  max-width: none;
  padding-inline: max(1.5rem, calc((100% - 1152px) / 2));
}

.campaigns-page-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-block-end: 2.5rem;
  padding-block: 0.5rem;
}

.campaigns-page-intro .section-tag {
  margin-block-end: 0.75rem;
}

.campaigns-page-intro h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.campaigns-page-intro p {
  max-width: 32rem;
  margin: 1rem 0 0;
  color: #64748b;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: start;
}

[dir="rtl"] .campaigns-page-intro p {
  text-align: right;
}

.campaigns-page .card-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-block: 0 3.5rem;
}

.campaigns-page .campaign-card {
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.campaigns-page .campaign-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow:
    0 20px 40px -15px rgba(15, 118, 110, 0.25),
    0 0 0 1px rgba(15, 118, 110, 0.1);
}

.campaigns-page .campaign-card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}

.campaigns-page .campaign-card-image {
  position: relative;
  flex: 0 0 auto;
  height: 220px;
  overflow: hidden;
  background: #f8fafc;
  border-start-start-radius: 20px;
  border-end-start-radius: 20px;
}

.campaigns-page .campaign-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-start-start-radius: 20px;
  border-end-start-radius: 20px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.campaigns-page .campaign-card:hover .campaign-card-image img {
  filter: saturate(1.15) brightness(1.05);
  transform: scale(1.08);
}

.campaign-card-badge,
.campaign-card-placeholder em {
  position: absolute;
  inset-block-start: 1rem;
  inset-inline-start: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.campaigns-page .campaign-card-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 22%, rgba(245, 158, 11, 0.7) 0 2px, transparent 3px),
    linear-gradient(135deg, #0f766e 0%, #134e4a 58%, #0f172a 100%);
}

.campaigns-page .campaign-card-placeholder::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translate(30%, -12%);
}

.campaigns-page .campaign-card-placeholder>span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fbbf24;
  font-size: 1.8rem;
}

.campaigns-page .campaign-card-placeholder em {
  z-index: 1;
}

.campaigns-page .campaign-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem 1.75rem 1.75rem;
}

.campaign-card-kicker {
  margin-block-end: 0.6rem;
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.campaigns-page .campaign-card h3 {
  padding-inline: 0;
  margin: 0;
  color: #0f172a;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  transition: color 0.25s ease;
}

.campaigns-page .campaign-card:hover h3 {
  color: #0f766e;
}

.campaign-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-block-start: auto;
  padding-block-start: 1.5rem;
}

.campaign-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  color: #64748b;
  font-size: 0.8rem;
}

.campaign-card-price del {
  color: #94a3b8;
  font-weight: 500;
}

.campaign-card-price strong {
  color: #0f766e;
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.campaign-card-price small {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
}

.campaign-tour-count {
  margin: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #f0fdfa;
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: 1px solid rgba(15, 118, 110, 0.15);
}

.campaigns-page .campaign-card:hover .campaign-tour-count {
  background: #0f766e;
  color: #ffffff;
  border-color: #0f766e;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
}

.campaign-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-start: 1.5rem;
  color: #0f766e;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: gap 0.3s ease, color 0.3s ease;
}

.campaigns-page .campaign-card:hover .campaign-card-cta {
  gap: 0.75rem;
  color: #115e59;
}

.campaign-card-cta svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.campaigns-page .campaign-card:hover .campaign-card-cta svg {
  transform: translateX(4px);
}

/* --- Campaign Detail Page --- */
/* --- Campaign Detail Page --- */
.campaign-detail-page {
  max-width: none;
  padding-block: 1.5rem 5rem;
  padding-inline: max(1.5rem, calc((100% - 1152px) / 2));
  background:
    radial-gradient(circle at 100% 8%, rgba(245, 158, 11, 0.07), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
}

.campaign-detail-page .breadcrumbs {
  max-width: 1152px;
  margin: 0 auto 2rem;
}

.campaign-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  align-items: stretch;
  gap: 1.5rem;
  max-width: 1020px;
  margin-inline: auto;
}

.campaign-detail-cover {
  position: relative;
  min-height: 400px;
  height: auto;
  overflow: hidden;
  border: 1px solid #dbe7e6;
  border-radius: 22px;
  background: #f1f5f9;
  box-shadow: 0 22px 45px -28px rgba(15, 118, 110, 0.5);
}

.campaign-detail-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.32));
  pointer-events: none;
}

.campaign-detail-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
}

.campaign-detail-hero:hover .campaign-detail-cover img {
  transform: scale(1.035);
}

.campaign-detail-cover-badge {
  position: absolute;
  z-index: 1;
  inset-block-start: 1.25rem;
  inset-inline-start: 1.25rem;
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.68);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.campaign-detail-cover-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 22%, rgba(245, 158, 11, 0.7) 0 2px, transparent 3px),
    linear-gradient(135deg, #0f766e 0%, #134e4a 58%, #0f172a 100%);
}

.campaign-detail-cover-placeholder::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(28%, -10%);
}

.campaign-detail-cover-placeholder span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fbbf24;
  font-size: 2.5rem;
}

.campaign-detail-offer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.9rem;
  border: 1px solid #dbe7e6;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff 0%, #f0fdfa 100%);
  box-shadow: 0 16px 35px -25px rgba(15, 118, 110, 0.5);
}

.campaign-detail-kicker {
  align-self: flex-start;
  margin-block-end: 1rem;
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 700;
}

.campaign-detail-offer h1 {
  margin: 0 0 0.9rem;
  color: #0f172a;
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  line-height: 1.25;
}

.campaign-detail-lead {
  margin: 0;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.8;
}

.campaign-detail-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin-block: 1.5rem 1.25rem;
  padding-block: 1.25rem;
  border-block: 1px solid #dbe7e6;
}

.campaign-detail-price span {
  color: #64748b;
  font-size: 0.8rem;
}

.campaign-detail-price del {
  color: #94a3b8;
}

.campaign-detail-price strong {
  color: #0f766e;
  font-size: 2rem;
  line-height: 1.2;
}

.campaign-detail-price small {
  font-size: 0.8rem;
}

.campaign-detail-stats {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #64748b;
  font-size: 0.78rem;
}

.campaign-detail-stats span {
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  background: #ffffff;
}

.campaign-detail-stats strong {
  color: #0f766e;
  font-size: 1rem;
}

.campaign-detail-description,
.campaign-detail-tours {
  max-width: 1152px;
  margin-inline: auto;
}

.campaign-detail-description {
  max-width: 820px;
  margin-inline: auto;
  margin-block: 5rem 4.5rem;
  padding: 0 1rem;
}

.campaign-description-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 3rem 3.5rem 3.5rem;
  text-align: center;
  box-shadow: 0 12px 40px -16px rgba(15, 118, 110, 0.18);
  overflow: hidden;
}

.campaign-description-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #0f766e, #2dd4bf);
}

.campaign-detail-description .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-block-end: 1rem;
  padding: 0.4rem 1.1rem;
  background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
  color: #115e59;
  font-size: 0.85rem;
  font-weight: 800;
  border: 1px solid rgba(15, 118, 110, 0.2);
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.1);
}

.campaign-detail-description h2 {
  margin: 0 0 2rem;
  color: #0f172a;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.25;
}

.campaign-description-content {
  position: relative;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.campaign-detail-description .prose {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.95;
  text-align: left;
  white-space: pre-line;
}

[dir="rtl"] .campaign-detail-description .prose {
  direction: rtl;
  text-align: right;
}

.campaign-description-accent {
  position: absolute;
  bottom: 1.5rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, #0f766e, #2dd4bf, transparent);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .campaign-description-card {
    padding: 2rem 1.5rem 2.5rem;
    border-radius: 20px;
  }

  .campaign-detail-description {
    margin-block: 3.5rem 3rem;
  }

  .campaign-description-content {
    padding: 1.5rem;
  }

  .campaign-detail-description .prose {
    font-size: 1rem;
  }
}

.campaign-detail-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-block-end: 1.5rem;
  padding-block-start: 2.25rem;
  border-block-start: 1px solid #dbe7e6;
}

.campaign-detail-section-heading .section-tag {
  margin-block-end: 0.6rem;
}

.campaign-detail-section-heading h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.8rem;
}

.campaign-detail-section-heading p {
  margin: .5rem 0 0;
  color: #64748b;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.7;
  text-align: inherit;
}

[dir="rtl"] .campaign-detail-section-heading p {
  text-align: right;
}

.campaign-detail-tours .card-grid {
  margin-block: 0;
}

@media (max-width: 640px) {
  .campaigns-page {
    padding-inline: 1rem;
  }

  .campaigns-page-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .campaigns-page .card-grid {
    grid-template-columns: 1fr;
  }

  .campaigns-page .campaign-card-image {
    height: 195px;
  }
}

@media (max-width: 860px) {
  .campaign-detail-hero {
    grid-template-columns: 1fr;
  }

  .campaign-detail-cover {
    min-height: 295px;
    height: 295px;
  }
}

@media (max-width: 640px) {
  .campaign-detail-page {
    padding-inline: 1rem;
  }

  .campaign-detail-page .breadcrumbs {
    margin-block-end: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .campaign-detail-cover {
    min-height: 225px;
    height: 225px;
    border-radius: 16px;
  }

  .campaign-detail-offer {
    padding: 1.35rem;
    border-radius: 16px;
  }

  .campaign-detail-offer h1 {
    font-size: 1.8rem;
  }

  .campaign-detail-price {
    margin-block: 1.5rem 1.25rem;
  }

  .campaign-detail-description {
    margin-block: 3rem;
  }

  .campaign-detail-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }
}

@media (max-width: 640px) {
  .blog-detail-page {
    padding-block-start: 1rem;
  }

  .blog-detail-page .breadcrumbs {
    margin-block-end: 1.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .blog-detail-header h1 {
    font-size: 2rem;
  }

  .blog-detail-excerpt {
    font-size: 0.95rem;
  }

  .blog-detail-meta {
    margin-block-end: 1.5rem;
  }

  .blog-detail-cover {
    border-radius: 16px;
  }

  .blog-detail-page .prose {
    margin-block-start: 2rem;
    padding: 1.35rem 1.2rem;
    font-size: 0.98rem;
    line-height: 1.9;
  }

  .blog-related {
    margin-block-start: 3rem;
  }
}

/* --- Tours Filter Bar v2 --- */
.tours-filter-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfb 100%);
  border: 1px solid #dbe7e6;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 12px 30px -18px rgba(15, 118, 110, 0.35), 0 3px 10px rgba(15, 23, 42, 0.04);
  margin-block-end: 2.5rem;
}

.tours-filter-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #2dd4bf, #f59e0b);
}

.tours-filter-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset-block-start: -90px;
  inset-inline-end: -70px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.07);
  pointer-events: none;
}

.filter-form-v2 {
  display: grid;
  grid-template-columns: minmax(190px, 1.25fr) minmax(190px, 1.25fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr) auto;
  gap: 1rem;
  align-items: flex-end;
}

.filter-group {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.3;
}

.filter-group input,
.filter-group select {
  width: 100%;
  height: 46px;
  padding: 0.65rem 0.85rem;
  border-radius: 11px;
  border: 1px solid #d5e0e2;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 0.88rem;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.filter-group input:focus,
.filter-group select:focus {
  border-color: #0f766e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
  outline: none;
}

.filter-group input::placeholder {
  color: #94a3b8;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  inset-inline-end: 0.85rem;
  inset-block-start: 50%;
  width: 7px;
  height: 7px;
  border-inline-end: 1.5px solid #64748b;
  border-block-end: 1.5px solid #64748b;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.filter-group select {
  appearance: none;
  padding-inline-end: 2.25rem;
}

.filter-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  min-height: 46px;
}

.btn-filter-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 46px;
  background: #0f766e;
  color: #ffffff;
  border: none;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.25rem;
  border-radius: 11px;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(15, 118, 110, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-filter-submit:hover {
  background: #115e59;
  box-shadow: 0 7px 16px rgba(15, 118, 110, 0.28);
  transform: translateY(-1px);
}

.btn-filter-reset {
  font-size: 0.85rem;
  color: #64748b;
  text-decoration: underline;
  padding: 0.5rem;
  white-space: nowrap;
}

.btn-filter-reset:hover {
  color: #0f172a;
}

@media (max-width: 1080px) {
  .filter-form-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .tours-filter-card {
    padding: 1.25rem;
    border-radius: 15px;
  }

  .filter-form-v2 {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .filter-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.35rem;
    margin-block-start: 0.25rem;
  }

  .btn-filter-submit,
  .btn-filter-reset {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}

/* Empty State Card */
.empty-results-card {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
}

.empty-icon {
  font-size: 3rem;
  margin-block-end: 1rem;
}

.empty-results-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-block-end: 0.5rem;
}

.empty-results-card p {
  color: #64748b;
  margin-block-end: 1.5rem;
}

/* --- Contact Page Layout --- */
.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
}

.contact-info-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
}

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-block-end: 0.5rem;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin-block-end: 1.5rem;
  line-height: 1.5;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.channel-icon {
  font-size: 1.4rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-label {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.channel-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

a.channel-value:hover {
  color: #0f766e;
}

.contact-card-tip {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08) 0%, rgba(20, 184, 166, 0.08) 100%);
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
}

.contact-card-tip h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f766e;
  margin-block-end: 0.4rem;
}

.contact-card-tip p {
  font-size: 0.85rem;
  color: #334155;
  margin: 0;
  line-height: 1.5;
}

.contact-main {
  position: relative;
}

.contact-form-wrapper {
  position: relative;
  background: #ffffff;
  border: 1px solid #e7ecef;
  border-radius: 24px;
  padding: 2.75rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 24px 48px -24px rgba(15, 118, 110, 0.22);
  overflow: hidden;
  isolation: isolate;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f766e 0%, #14b8a6 50%, #5eead4 100%);
}

.contact-form-wrapper::after {
  content: "";
  position: absolute;
  inset-inline-end: -60px;
  inset-block-start: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, rgba(20, 184, 166, 0) 70%);
  z-index: -1;
}

.contact-form-wrapper h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin-block-end: 0.4rem;
}

.form-intro {
  font-size: 0.92rem;
  color: #64748b;
  margin-block-end: 2rem;
  line-height: 1.6;
}

.contact-form-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.01em;
}

.form-field label .req {
  color: #ef4444;
}

.form-field input,
.form-field textarea {
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.95rem;
  color: #0f172a;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #94a3b8;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: #cbd5e1;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #0f766e;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
  outline: none;
}

.btn-submit-contact {
  border: none;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 0.5rem;
  box-shadow: 0 12px 24px -10px rgba(15, 118, 110, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -10px rgba(15, 118, 110, 0.5);
}

.phone-input-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.phone-input-wrap:focus-within {
  border-color: #0f766e;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.phone-country-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1rem;
  border: none;
  border-inline-end: 1.5px solid #e2e8f0;
  background: transparent;
  border-start-start-radius: 14px;
  border-end-start-radius: 14px;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.phone-country-btn:hover {
  background: #f0fdfa;
  color: #0f766e;
}

.phone-country-btn svg {
  transition: transform 0.2s ease;
  color: #94a3b8;
}

.phone-country-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.phone-flag {
  font-size: 1.15rem;
  line-height: 1;
}

.phone-country-code {
  font-variant-numeric: tabular-nums;
}

.phone-input-wrap input[type="tel"] {
  flex: 1 1 auto;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-inline-start: 1rem;
}

.phone-country-list {
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  inset-block-start: calc(100% + 0.5rem);
  z-index: 20;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid #e7ecef;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.18);
  padding: 0.4rem;
  list-style: none;
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.phone-country-list.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.phone-country-search {
  padding: 0.35rem 0.45rem 0.45rem;
}

.phone-country-search-input {
  width: 100%;
  padding: 0.45rem 0.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  font-size: 0.9rem;
  outline: none;
}

.phone-country-search-input:focus {
  border-color: #0f766e;
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.08);
}

.phone-country-list::-webkit-scrollbar {
  width: 6px;
}

.phone-country-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.phone-country-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  cursor: pointer;
  color: #0f172a;
  font-size: 0.9rem;
}

.phone-country-list li span:nth-child(2) {
  flex: 1 1 auto;
}

.phone-country-list li:hover {
  background: #f0fdfa;
  color: #0f766e;
}

.phone-country-list li .country-code {
  color: #64748b;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}

.contact-success-alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  color: #065f46;
  margin-block-end: 2rem;
}

.success-icon {
  width: 32px;
  height: 32px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-success-alert h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.2rem 0;
}

.contact-success-alert p {
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 280px 1fr;
    gap: 2rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form-wrapper h2 {
    font-size: 1.4rem;
  }

  .form-intro {
    font-size: 0.88rem;
    margin-block-end: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-layout {
    gap: 1.25rem;
  }

  .contact-info-card {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .contact-form-wrapper {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .contact-info-card h3 {
    font-size: 1.1rem;
  }

  .contact-card-tip {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .btn-submit-contact {
    width: 100%;
    justify-content: center;
  }

  .contact-success-alert {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1rem;
  }
}

/* --- About Page Layout --- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-block: 0 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 10px 30px -12px rgba(15, 118, 110, 0.18);
}

.about-stat {
  text-align: center;
  position: relative;
}

.about-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  inset-block: 10%;
  inset-inline-end: -0.6rem;
  width: 1px;
  background: #e2e8f0;
}

.about-stat-number {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.about-stat-label {
  display: block;
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
  margin-block-start: 0.35rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  margin-block-end: 4.5rem;
  align-items: stretch;
}

.about-story-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.75rem;
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.about-story-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0f766e 0%, #2dd4bf 100%);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0f766e;
  background: #ccfbf1;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-block-end: 1.25rem;
}

.about-story-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-block-end: 1.5rem;
}

.about-story-card p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.85;
  margin-block-end: 1.5rem;
}

.about-story-card p:last-child {
  margin-block-end: 0;
}

.about-values-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(15, 118, 110, 0.2);
  border-color: rgba(15, 118, 110, 0.3);
}

.value-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0f766e, #2dd4bf);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
  color: #0f766e;
}

.value-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.value-content {
  flex: 1;
}

.value-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-block-end: 0.4rem;
  letter-spacing: -.01em;
}

.value-content p {
  font-size: 0.92rem;
  color: #64748b;
  margin: 0;
  line-height: 1.65;
}

/* Team Section */
.team-section {
  padding-block-start: 3rem;
}

.team-section .section-header {
  margin-block-end: 2.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

.team-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.25rem 1.5rem 1.75rem;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -16px rgba(15, 118, 110, 0.28);
  border-color: rgba(15, 118, 110, 0.35);
}

.team-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0f766e, #2dd4bf);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-card:hover::before {
  opacity: 1;
}

.team-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px -8px rgba(15, 118, 110, 0.45);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  flex-shrink: 0;
}

.team-card:hover .team-card-icon {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 28px -8px rgba(15, 118, 110, 0.55);
}

.team-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.team-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: -.01em;
}

.team-role {
  font-size: 0.85rem;
  color: #0f766e;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  background: #ccfbf1;
  border-radius: 9999px;
  display: inline-block;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .team-card {
    max-width: 400px;
    margin-inline: auto;
  }
}

@media (max-width: 1024px) {
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stat:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story-card {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .about-stat::after {
    display: none;
  }

  .about-stat-number {
    font-size: 1.5rem;
  }
}

/* ── Banners & Announcements ────────────────────────────── */
.site-announcement-banner {
  background: linear-gradient(135deg, #173f3b 0%, #0f2d2a 100%);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.6rem 1rem;
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(246, 198, 103, 0.25);
}

.site-announcement-banner .banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-announcement-banner .banner-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  flex: 1;
  justify-content: center;
  text-align: center;
}

.site-announcement-banner .banner-link {
  color: #f6c667;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.site-announcement-banner .banner-link:hover {
  color: #ffdf9e;
}

.site-announcement-banner .banner-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: color 0.2s ease;
}

.site-announcement-banner .banner-close:hover {
  color: #fff;
}

.banner-thumb {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

/* ── Marquee Ticker Banner ────────────────────────── */
.site-marquee-banner {
  background: linear-gradient(135deg, #123330 0%, #0a211f 100%);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.6rem 0;
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(246, 198, 103, 0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.site-marquee-banner .marquee-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}

.site-marquee-banner .marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}

[dir="rtl"] .site-marquee-banner .marquee-track {
  animation: marqueeScrollRTL 30s linear infinite;
}

.site-marquee-banner:hover .marquee-track {
  animation-play-state: paused;
}

.site-marquee-banner .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-marquee-banner .marquee-sep {
  color: #f6c667;
  font-size: 0.8rem;
  opacity: 0.75;
  margin-inline-start: 1rem;
}

.site-marquee-banner .banner-link {
  color: #f6c667;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.site-marquee-banner .banner-link:hover {
  color: #ffdf9e;
}

.site-marquee-banner .marquee-close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: rgba(10, 33, 31, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

[dir="rtl"] .site-marquee-banner .marquee-close {
  right: auto;
  left: 12px;
}

.site-marquee-banner .marquee-close:hover {
  background: #173f3b;
  color: #fff;
  border-color: #f6c667;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeScrollRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

/* ── Popup Banner Modal ────────────────────────────── */
.site-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.site-popup-overlay.popup-closing .site-popup-backdrop {
  animation: popupBackdropFadeOut 0.22s ease forwards;
}

.site-popup-overlay.popup-closing .site-popup-dialog {
  animation: popupModalExit 0.22s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.site-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 18, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: popupBackdropFade 0.3s ease;
}

.site-popup-dialog {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 24px;
  max-width: 440px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(246, 198, 103, 0.2);
  animation: popupModalEnter 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  background: rgba(15, 45, 42, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

[dir="rtl"] .site-popup-close {
  right: auto;
  left: 14px;
}

.site-popup-close:hover {
  background: #173f3b;
  color: #f6c667;
  transform: rotate(90deg) scale(1.08);
}

.site-popup-media {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #0f2d2a;
}

.site-popup-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f1f5f9;
  display: block;
}

.site-popup-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(15, 45, 42, 0.6) 100%);
  pointer-events: none;
}

.site-popup-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(23, 63, 59, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #f6c667;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(246, 198, 103, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

[dir="rtl"] .site-popup-badge {
  right: auto;
  left: 14px;
}

.site-popup-body {
  padding: 1.6rem 1.75rem 1.75rem;
  text-align: center;
}

.site-popup-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #173f3b;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.site-popup-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 1.4rem;
}

.site-popup-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.site-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(135deg, #173f3b 0%, #0f2d2a 100%);
  color: #f6c667;
  border: 1px solid #f6c667;
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(23, 63, 59, 0.25);
  box-sizing: border-box;
}

.site-popup-btn:hover {
  background: #f6c667;
  color: #0f2d2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246, 198, 103, 0.45);
  border-color: #f6c667;
}

.site-popup-arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

[dir="rtl"] .site-popup-arrow {
  transform: scaleX(-1);
}

.site-popup-dismiss-text {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s ease;
}

.site-popup-dismiss-text:hover {
  color: #64748b;
  text-decoration: underline;
}

@keyframes popupBackdropFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popupBackdropFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes popupModalEnter {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes popupModalExit {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }
}

/* ── Hero Slide / Promo Banner ─────────────────────── */
.site-hero-slide-banner {
  margin: 1.25rem 0;
}

.hero-slide-card {
  position: relative;
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  background-image: linear-gradient(135deg, rgba(23, 63, 59, 0.88) 0%, rgba(15, 45, 42, 0.94) 100%), var(--hero-img, none);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 45, 42, 0.15);
  border: 1px solid rgba(246, 198, 103, 0.3);
}

.hero-slide-badge {
  display: inline-block;
  background: rgba(246, 198, 103, 0.2);
  color: #f6c667;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(246, 198, 103, 0.4);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-slide-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.hero-slide-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.25rem;
  max-width: 600px;
}

.hero-slide-btn {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  border-radius: 50px;
  background: #f6c667;
  color: #173f3b;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-slide-btn:hover {
  background: #ffdf9e;
  transform: translateY(-2px);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
  text-align: center;
  color: #ffffff;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 45px -15px rgba(15, 118, 110, 0.35);
  color: #ffffff;
}

.cta-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  border-radius: 20px;
  z-index: -1;
  pointer-events: none;
}

.cta-banner-inner h2 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(15, 23, 42, 0.4);
}

.cta-banner-inner p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(15, 23, 42, 0.35);
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ==========================================================================
   LEGAL PAGES (Terms / Privacy / Cancellation Policy) — admin-managed content
   ========================================================================== */

.legal-page-hero {
  background: linear-gradient(135deg, #0f766e 0%, #115e59 40%, #134e4a 70%, #0f172a 100%);
  padding: 5rem 0 6rem;
  color: #ffffff;
  margin-block-end: -3.5rem;
  position: relative;
  overflow: hidden;
}

.legal-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(45, 212, 191, 0.15) 0, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(94, 234, 212, 0.1) 0, transparent 40%);
  pointer-events: none;
  animation: legalHeroPulse 8s ease-in-out infinite alternate;
}

.legal-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

@keyframes legalHeroPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.legal-page-hero .container {
  max-width: min(100%, 760px);
  text-align: center;
  position: relative;
  z-index: 2;
}

.legal-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-block-end: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.legal-page-hero h1 {
  color: #ffffff;
  margin-block-end: 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.legal-page-updated {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.legal-page-updated::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #2dd4bf;
  border-radius: 50%;
  box-shadow: 0 0 8px #2dd4bf;
}

.legal-page-card {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 6rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 20px 50px -12px rgba(15, 118, 110, 0.25);
  padding: clamp(2.5rem, 6vw, 4rem);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.legal-page-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 30px 60px -15px rgba(15, 118, 110, 0.3);
}

.legal-page-card .prose {
  white-space: pre-line;
  line-height: 2.1;
  color: #1e293b;
  font-size: 1.08rem;
  font-weight: 400;
}

.legal-page-card .prose:empty::after {
  content: "—";
  color: #94a3b8;
  font-style: italic;
}

/* Shared modern Q&A accordion — used by the public FAQ page and the
   terms / privacy / cancellation-policy pages so they all look and
   behave the same way. */
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qa-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.qa-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.07);
}

.qa-item summary {
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
}

.qa-item summary::-webkit-details-marker {
  display: none;
}

.qa-item-question {
  flex: 1;
}

.qa-item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.1);
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.qa-item-icon::before {
  content: "+";
}

.qa-item[open] .qa-item-icon {
  background: #0f766e;
  color: #ffffff;
  transform: rotate(135deg);
}

.qa-item-answer {
  margin-block-start: 1rem;
  padding-block-start: 1rem;
  border-top: 1px solid #e2e8f0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.9;
  white-space: pre-line;
}

.qa-empty {
  text-align: center;
  color: #64748b;
  padding: 2rem 0;
}

@media (max-width: 640px) {
  .qa-item {
    padding: 0.9rem 1.1rem;
  }

  .qa-item summary {
    font-size: 1rem;
  }
}

.legal-page-title-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.legal-qa-layout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-block-start: 1.25rem;
}

.form-hint {
  display: block;
  margin-block-start: 0.35rem;
  color: #64748b;
  font-size: 0.82rem;
}

.form-hint code {
  background: #f1f5f9;
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  font-size: 0.78rem;
}
