:root {
  --brand: #00b0b8;
  --brand-deep: #0898a0;
  --brand-ink: #056a72;
  --brand-soft: #e6f7f8;
  --brand-mist: #f3fbfc;
  --gold: #b08840;
  --gold-light: #cfae76;
  --gold-soft: #f7f1e6;
  --ink: #1a2a2c;
  --muted: #5c6f72;
  --line: #d5e4e6;
  --surface: #ffffff;
  --success: #0f9b7a;
  --danger: #b5453a;
  --shadow: 0 18px 50px rgba(5, 106, 114, 0.08);
  --radius: 4px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 88px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(0, 176, 184, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(176, 136, 64, 0.1), transparent 50%),
    linear-gradient(180deg, var(--brand-mist), #fff 40%, var(--brand-mist));
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Top bar */
.topbar {
  background: linear-gradient(90deg, var(--brand-ink), var(--brand-deep));
  color: #eaffff;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
}

.topbar a {
  color: #fff;
  font-weight: 500;
}

.topbar-meta {
  opacity: 0.92;
}

.topbar-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(243, 251, 252, 0.88);
  border-bottom: 1px solid rgba(213, 228, 230, 0.8);
}

.site-header .container {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  padding: 0.25rem 0;
}

.brand-link img {
  height: 72px;
  width: auto;
  background: transparent;
  filter: drop-shadow(0 2px 8px rgba(5, 106, 114, 0.18));
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 0.95rem;
}

.nav a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand-ink);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 176, 184, 0.28);
  transition: transform 0.25s var(--ease-out), background 0.25s;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-ink);
  border-radius: var(--radius);
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 176, 184, 0.28);
}

.btn-primary:hover {
  background: var(--brand-deep);
}

.btn-gold {
  background: transparent;
  color: #fff;
  border-color: var(--gold-light);
}

.btn-gold:hover {
  background: rgba(176, 136, 64, 0.18);
}

.btn-outline {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand-ink);
}

.btn-dark {
  background: #2b2b2b;
  color: #fff;
  border-color: #2b2b2b;
}

.btn-dark:hover {
  background: #111;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.08);
  animation: kenburns 22s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 40, 44, 0.35) 0%, rgba(5, 60, 66, 0.28) 40%, rgba(3, 28, 32, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 106, 114, 0.35), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 4.75rem;
}

.hero-brand {
  width: min(320px, 70vw);
  margin-bottom: 1.1rem;
  background: transparent;
  /* teal logo → white for dark hero */
  filter: brightness(0) invert(1) drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
  animation: rise-in 1s var(--ease-out) both;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 14ch;
  animation: rise-in 1s 0.12s var(--ease-out) both;
}

.hero p {
  margin: 0 0 1.6rem;
  max-width: 38ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  animation: rise-in 1s 0.22s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise-in 1s 0.32s var(--ease-out) both;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-scroll span {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  animation: pulse-line 1.8s ease-in-out infinite;
}

/* Motif divider */
.motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem 0 1.5rem;
  color: var(--brand);
}

.motif::before,
.motif::after {
  content: "";
  height: 1px;
  width: min(140px, 22vw);
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.motif svg {
  width: 28px;
  height: 28px;
  animation: spin-slow 18s linear infinite;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--brand-ink);
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-tours {
  background:
    linear-gradient(180deg, transparent, rgba(230, 247, 248, 0.65) 12%, rgba(230, 247, 248, 0.65) 88%, transparent);
}

/* Filter */
.filter-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow);
}

.filter-bar.is-extended,
.filter-bar.is-compact {
  grid-template-columns: repeat(3, 1fr) auto;
}

.filter-bar.is-extended .filter-actions,
.filter-bar.is-compact .filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: end;
  justify-content: end;
}

@media (max-width: 900px) {
  .filter-bar.is-compact {
    grid-template-columns: 1fr 1fr;
  }

  .filter-bar.is-compact .filter-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }
}

.filter-bar label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.filter-bar select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 0.7rem 0.75rem;
  color: var(--ink);
}

.filter-bar .btn {
  align-self: end;
}

/* Tour grid */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.tour-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.2rem 1.2rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.tour-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 176, 184, 0.45);
  box-shadow: var(--shadow);
}

.tour-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.tour-days {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.tour-status {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.tour-status.is-open {
  color: var(--success);
  background: rgba(15, 155, 122, 0.1);
}

.tour-status.is-full {
  color: var(--danger);
  background: rgba(181, 69, 58, 0.1);
}

.tour-status.is-urgent {
  color: #9a4d00;
  background: linear-gradient(90deg, #ffe3b0, #ffd28a);
  animation: urgent-pulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(176, 136, 64, 0.35);
}

@keyframes urgent-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(176, 136, 64, 0.35); }
  50% { transform: scale(1.03); box-shadow: 0 0 0 6px rgba(176, 136, 64, 0); }
}

.tour-card h3 a:hover {
  color: var(--brand-deep);
}

.tour-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tour-actions .btn {
  width: 100%;
  margin-top: 0;
  text-align: center;
}

.tour-route-mini {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--brand-deep);
}

.tour-airline {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.35rem 0.45rem;
}

.tour-airline img {
  max-height: 32px;
}

.tour-card h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--ink);
  flex: 1;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.tour-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.tour-price {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-ink);
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.tour-airline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.2rem 0.35rem;
  border-radius: 8px;
  background: transparent;
}

.tour-airline img {
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tour-airline span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-ink);
}

.tour-price small {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.tour-quota {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: right;
}

.tour-quota strong {
  color: var(--ink);
}

.tour-card .btn {
  margin-top: 1rem;
  width: 100%;
}

/* Trust / testimonials */
.trust-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #04565c;
}

.trust-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(4, 86, 92, 0.92), rgba(5, 60, 66, 0.78)),
    url("../img/section-atmosphere.jpg") center/cover;
  transform: scale(1.04);
  animation: kenburns 28s ease-in-out infinite alternate;
}

.trust-band .container {
  position: relative;
  z-index: 1;
}

.quote-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quote {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.quote p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
}

.quote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
  font-size: 0.9rem;
}

/* CTA strip */
.cta-strip {
  padding: 3.5rem 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 176, 184, 0.12), rgba(176, 136, 64, 0.1)),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--brand-ink);
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: end;
}

/* Contact page */
.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero-compact {
  padding: 2.2rem 0 1.2rem;
}

.breadcrumb {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.content-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.content-layout.single {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.content-sidebar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 12px);
}

.content-sidebar h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--brand-ink);
}

.side-nav {
  display: grid;
  gap: 0.15rem;
}

.side-link {
  display: block;
  padding: 0.55rem 0.45rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
}

.side-link:hover,
.side-link.is-active {
  color: var(--brand-deep);
  border-bottom-color: var(--brand);
  font-weight: 650;
}

.article-body {
  min-width: 0;
}

.article-content {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
}

.article-content p {
  margin: 0 0 0.9rem;
}

.article-content ul,
.article-content ol {
  margin: 0 0 1rem 1.15rem;
  padding: 0;
}

.article-content li {
  margin-bottom: 0.35rem;
}

.article-content strong {
  color: var(--brand-ink);
}

.article-content h2,
.article-content h3 {
  font-family: var(--font-display);
  color: var(--brand-ink);
  margin: 1.4rem 0 0.6rem;
}

@media (max-width: 900px) {
  .content-layout {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    position: static;
  }
}

.page-hero h1 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--brand-ink);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-layout .map-wrap {
  grid-column: 1 / -1;
}

.map-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: min(420px, 55vh);
  border: 0;
}

.map-wrap .form-note {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
}

.media-cards,
.gallery-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}

.media-card,
.gallery-card,
.news-item {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--brand-mist);
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}

.media-card:hover,
.gallery-card:hover,
.news-item:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 176, 184, 0.45);
}

.media-card strong,
.news-item strong {
  color: var(--brand-ink);
  font-size: 1.05rem;
}

.media-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-card span {
  display: block;
  padding: 0.75rem 0.9rem 0.9rem;
  font-weight: 650;
  color: var(--brand-ink);
}

.gallery-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.gallery-shot img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.video-card p {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  color: var(--ink);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.news-list {
  display: grid;
  gap: 0.65rem;
}

.content-layout.media-wide {
  grid-template-columns: 240px 1fr;
}

@media (max-width: 900px) {
  .contact-layout,
  .media-cards,
  .gallery-grid,
  .video-grid,
  .gallery-shots,
  .content-layout.media-wide {
    grid-template-columns: 1fr;
  }
}

.contact-card,
.content-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-list span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.contact-list a,
.contact-list strong {
  font-size: 1.15rem;
  color: var(--brand-ink);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Lead / newsletter band */
.lead-band {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(135deg, #b08840, #8f6d2f);
  color: #fff;
  padding: 1.6rem 0;
}

.lead-band-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 1rem 1.5rem;
  align-items: center;
}

.lead-band p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0.55rem;
}

.lead-form input {
  border: 0;
  border-radius: 8px;
  padding: 0.8rem 0.85rem;
  min-width: 0;
}

/* Footer */
.site-footer {
  margin-top: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.06), transparent 35%),
    linear-gradient(180deg, #04565c, #03383c);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-grid-full {
  grid-template-columns: repeat(5, 1fr);
}

.footer-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.partner-logos img {
  height: 48px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 0.35rem;
}

.site-footer h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-brand img {
  width: min(220px, 70%);
  margin-bottom: 0.75rem;
  background: #fff;
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

/* Floating IM hub */
.im-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}

.im-menu {
  display: grid;
  gap: 0.35rem;
  min-width: 220px;
  padding: 0.65rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.im-menu[hidden] {
  display: none !important;
}

.im-menu a {
  display: block;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brand-ink);
  background: var(--brand-mist);
}

.im-menu a:hover {
  background: var(--brand-soft);
}

.im-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 56px;
  padding: 0.7rem 1.05rem 0.7rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #00b0b8);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 176, 184, 0.35);
  overflow: visible;
}

.im-toggle:hover {
  transform: translateY(-2px);
}

.im-toggle svg,
.wa-float-label {
  position: relative;
  z-index: 1;
}

.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #25d366;
  z-index: 0;
  animation: wa-pulse 2.2s ease-out infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

@media (max-width: 560px) {
  .wa-float-label {
    display: none;
  }

  .im-toggle {
    width: 58px;
    height: 58px;
    padding: 0;
    justify-content: center;
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@keyframes kenburns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* Empty / loading */
.muted {
  color: var(--muted);
}

.tour-empty {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 960px) {
  .filter-bar,
  .filter-bar.is-extended {
    grid-template-columns: 1fr 1fr;
  }

  .tour-grid,
  .quote-track {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid,
  .footer-grid-full,
  .cta-panel,
  .contact-grid,
  .lead-band-inner,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: calc(var(--header-h) + 34px) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.35rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .tour-grid,
  .quote-track,
  .filter-bar {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 84vh;
    align-items: end;
  }

  .hero-content {
    padding: 5.5rem 0 1.75rem;
    z-index: 2;
  }

  .hero-actions {
    position: relative;
    z-index: 3;
  }

  /* Mobilde Keşfet, CTA butonlarının altına binmesin */
  .hero-scroll {
    display: none;
  }

  .brand-link img {
    height: 58px;
  }
}

@media (min-width: 1100px) {
  .brand-link img {
    height: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Tour detail */
.detail-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}

.detail-title {
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  font-weight: 700;
  color: var(--brand-ink);
  margin: 0.35rem 0 0.75rem;
  font-variant-numeric: lining-nums;
}

.route-card {
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 176, 184, 0.1), rgba(176, 136, 64, 0.12));
  border: 1px solid var(--line);
}

.route-code {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--brand-ink);
  font-size: 1.15rem;
}

.route-label {
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.route-dates {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.detail-tab {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-ink);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-weight: 650;
  font-size: 0.88rem;
  cursor: pointer;
}

.detail-tab.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.detail-panels {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.detail-panel {
  display: none;
}

.detail-panel.is-active {
  display: block;
}

.sticky-side {
  position: sticky;
  top: calc(var(--header-h) + 12px);
}

.side-price-main {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.side-price-main span {
  color: var(--muted);
  font-size: 0.85rem;
}

.side-price-main strong {
  font-size: 2rem;
  color: var(--brand-ink);
  line-height: 1;
}

.price-table {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.include-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.rez-panel h2 {
  margin-top: 0;
  font-family: var(--font-display);
  color: var(--brand-ink);
}

.rez-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.rez-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.rez-form label.full {
  grid-column: 1 / -1;
}

.rez-form input,
.rez-form select,
.rez-form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: #fff;
}

@media (max-width: 900px) {
  .detail-layout,
  .rez-form {
    grid-template-columns: 1fr;
  }

  .sticky-side {
    position: static;
  }
}
