:root {
  --navy: #0b1e3d;
  --navy-mid: #0f2a52;
  --navy-deep: #071428;
  --teal: #1a8fa0;
  --teal-light: #26b5cc;
  --teal-pale: #d6f0f4;
  --sky: #4ec9dc;
  --white: #ffffff;
  --off-white: #f4f7fa;
  --gray-line: #dde3ea;
  --text: #0b1e3d;
  --text-mid: #4a5568;
  --text-light: #7a8fa6;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --sidebar-w: 320px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════════
           PRELOADER
        ══════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease 0.2s;
}

#preloader.done {
  opacity: 0;
  pointer-events: none;
}

.pre-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.pre-logo span {
  color: var(--teal-light);
}

.pre-track {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.pre-track::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--teal-light);
  animation: preLoad 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preLoad {
  to {
    left: 100%;
  }
}

/* ══════════════════════════════════════════════════
           IYC-STYLE HEADER  (hover mega + full-screen hamburger)
        ══════════════════════════════════════════════════ */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
}

/* ── Ana bar ── */
.hdr-main {
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0;
  position: relative;
}

/* Hamburger kutusu */
.hdr-hamburger {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--gray-line);
  cursor: pointer;
  transition: background 0.2s;
}

.hdr-hamburger:hover {
  background: var(--off-white);
}

/* 3 çizgi */
.hdr-ham-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hdr-ham-lines i {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 1px;
  transition: all 0.3s;
}

/* X animasyonu */
.hdr-hamburger.active .hdr-ham-lines i:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hdr-hamburger.active .hdr-ham-lines i:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hdr-hamburger.active .hdr-ham-lines i:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Nav linkleri (hover mega trigger) ── */
.hdr-nav {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 0;
  list-style: none;
  margin-top: 1rem;
}

.hdr-nav > li {
  height: 100%;
  position: relative;
}

.hdr-nav > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 22px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  font-weight: 400;
  border-right: 1px solid var(--gray-line);
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
  user-select: none;
}

.hdr-nav > li > a:hover {
  color: var(--teal);
  background: var(--off-white);
}

/* aktif underline */
.hdr-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.hdr-nav > li:hover > a::after,
.hdr-nav > li.mega-active > a::after {
  transform: scaleX(1);
}

.hdr-nav > li.mega-active > a {
  color: var(--teal);
  background: var(--off-white);
}

/* Logo — mutlak orta */
.hdr-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 6px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  pointer-events: auto;
}

.hdr-logo span {
  color: var(--teal);
}

.hdr-logo:hover {
  color: var(--teal);
}

/* Sağ ikonlar */
.hdr-actions {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: auto;
}

.hdr-icon-btn {
  width: 54px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--gray-line);
  color: var(--navy);
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  position: relative;
}

.hdr-icon-btn:hover {
  background: var(--off-white);
  color: var(--teal);
}

.hdr-badge {
  position: absolute;
  top: 14px;
  right: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Alt bar: breadcrumb + iletişim ── */
.hdr-sub {
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 36px;
}

.hdr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
}

.hdr-breadcrumb a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.hdr-breadcrumb a:hover {
  color: var(--teal);
}

.hdr-breadcrumb .sep {
  font-size: 0.5rem;
  color: var(--text-light);
}

.hdr-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hdr-contact a {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.hdr-contact a i {
  color: var(--teal);
  font-size: 0.68rem;
}

.hdr-contact a:hover {
  color: var(--teal);
}

/* ══════════════════════════════════════════════════
           HOVER MEGA MENU (desktop dropdown)
        ══════════════════════════════════════════════════ */
.mega-menu {
  position: fixed;
  top: 100px;
  /* 64 + 36 */
  left: 0;
  right: 0;
  background: var(--navy-deep);
  z-index: 1990;
  padding: 48px 56px 56px;
  /* başlangıç: gizli */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  border-top: 2px solid var(--teal);
}

.mega-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* nav li hover — mega trigger */
.mega-col-title {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
}

.mega-links {
  list-style: none;
}

.mega-links li {
  margin-bottom: 12px;
}

.mega-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.mega-links a:hover {
  color: var(--white);
}

.mega-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 20px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.25s;
  margin-bottom: 12px;
}

.mega-cta-btn i {
  color: var(--teal-light);
  font-size: 0.85rem;
}

.mega-cta-btn:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
}

/* Mega overlay */
#megaOverlay {
  position: fixed;
  inset: 0;
  z-index: 1989;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}

#megaOverlay.show {
  display: block;
}

/* ════════════════════ ARAMA OVERLAY═════════════════════════ */
#searchOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 3000;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}

#searchOverlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.search-overlay-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px 40px;
}

.search-overlay-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-line);
  padding: 0 20px;
  margin-bottom: 36px;
}

.search-overlay-input-wrap i {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-right: 14px;
}

.search-overlay-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  height: 56px;
  background: transparent;
}

.search-overlay-input::placeholder {
  color: var(--text-light);
}

.search-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 1rem;
  transition: color 0.2s;
}

.search-close:hover {
  color: var(--navy);
}

.search-popular-label {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
  display: block;
}

.search-popular-list {
  list-style: none;
}

.search-popular-list li {
  margin-bottom: 10px;
}

.search-popular-list a {
  font-size: 0.88rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.search-popular-list a:hover {
  color: var(--teal);
}

/* ══════════════════════════════════════════════════
           HAMBURGER TAM EKRAN MENÜ  (IYC style — Image 3)
        ══════════════════════════════════════════════════ */
#fullMenu {
  position: fixed;
  inset: 0;
  z-index: 2800;
  background: var(--navy-deep);
  /* sol'dan slide */
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

#fullMenu.open {
  transform: translateX(0);
}

/* Üst şerit: logo + X */
.fm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.fm-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
}

.fm-brand span {
  color: var(--teal-light);
}

.fm-close {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.fm-close:hover {
  color: var(--white);
}

/* İçerik alanı */
.fm-body {
  flex: 1;
  padding: 48px 40px 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
}

/* Her kategori sütunu */
.fm-col {
  padding: 0 32px 40px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.fm-col:first-child {
  padding-left: 0;
}

.fm-col:last-child {
  border-right: none;
}

/* Kategori başlığı */
.fm-cat-title {
  font-size: 0.58rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

/* Linkler */
.fm-links {
  list-style: none;
  margin-top: 16px;
}

.fm-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fm-links a {
  display: block;
  padding: 13px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition:
    color 0.2s,
    padding-left 0.2s;
}

.fm-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

/* Alt iletişim bandı */
.fm-footer {
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.fm-footer a {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.fm-footer a i {
  color: var(--teal-light);
}

.fm-footer a:hover {
  color: var(--white);
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 580px;
  overflow: hidden;
  /* navbar yüksekliği: 64 + 36 = 100px */
  margin-top: 100px;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgb(0 13 55 / 82%) 0%,
    rgb(55 67 87 / 19%) 50%,
    rgb(255 255 255 / 22%) 100%
  );
}

.hero-body {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hero-slide.active .hero-body {
  opacity: 1;
  pointer-events: auto;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 18px;
  opacity: 0;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 22px;
  opacity: 0;
}

.hero-h1 em {
  font-style: italic;
  color: var(--sky);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 400px;
  line-height: 1.85;
  margin-bottom: 38px;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
}

/* Animasyonlar — sadece active slide'da tetiklenir */
.hero-slide.active .hero-eyebrow {
  animation: fuA 0.8s ease 0.4s forwards;
}

.hero-slide.active .hero-h1 {
  animation: fuA 0.8s ease 0.6s forwards;
}

.hero-slide.active .hero-sub {
  animation: fuA 0.8s ease 0.8s forwards;
}

.hero-slide.active .hero-btns {
  animation: fuA 0.8s ease 1s forwards;
}

@keyframes fuA {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-dots {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.hdot.on {
  background: var(--teal-light);
  transform: scale(1.4);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 8%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-bar {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.scroll-bar::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--teal-light);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

.hdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.hdot.on {
  background: var(--teal-light);
  transform: scale(1.5);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--teal-light), transparent);
  animation: scrollBar 2s ease-in-out infinite;
}

@keyframes scrollBar {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  49% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ── BUTTONS ── */
.btn-primary-oy {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.3s;
}

.btn-primary-oy:hover {
  background: var(--teal-light);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(26, 143, 160, 0.4);
  transform: translateY(-2px);
}

.btn-ghost-oy {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 13px 32px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-ghost-oy:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
}

/* ── INFO BAND ── */
.info-band {
  background: var(--teal);
  padding: 13px 0;
  text-align: center;
}

.info-band p {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--white);
}

.info-band a {
  color: var(--white);
  font-weight: 500;
  margin: 0 16px;
  text-decoration: none;
}

.info-band a:hover {
  text-decoration: underline;
}

/* ── FILTER WRAPPER ── */
.filter-wrapper {
  padding: 15px 10px 10px 10px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  box-shadow:
    0 4px 32px rgba(11, 30, 61, 0.08),
    0 1px 4px rgba(11, 30, 61, 0.04);
}

/* ── FIELD LABEL (ortak) ── */
.fb-field .field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 5px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
}
.fb-field .field-label i {
  font-size: 0.65rem;
  opacity: 0.7;
}
.price-unit {
  font-size: 0.73rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: lowercase !important;
  margin-left: 2px;
}
.price-unit::first-letter {
  text-transform: uppercase !important;
}

/* ── DATE INPUT ── */
.fb-field input[type='text'] {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 300;
  width: 100%;
}
.fb-field input[type='text']::placeholder {
  color: var(--text-light);
}

/* ── GUEST COUNTER ── */
.guest-counter {
  display: flex;
  align-items: center;
}
.gc-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gray-line);
  background: var(--white);
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  font-weight: 300;
  user-select: none;
  padding: 0;
}
.gc-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.gc-btn:active {
  transform: scale(0.92);
}
.gc-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}
.gc-val {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  min-width: 36px;
  text-align: center;
}
.gc-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-left: 3px;
}

/* ── PRICE INPUTS ── */
.price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-inputs input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-line);
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 300;
  padding: 3px 0;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
  width: 80px;
}
.price-inputs input::-webkit-outer-spin-button,
.price-inputs input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.price-inputs input::placeholder {
  color: var(--text-light);
  font-size: 0.75rem;
}
.price-inputs input:focus {
  border-bottom-color: var(--teal);
}
.price-sep {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 300;
  flex-shrink: 0;
}

/* ── TOGGLE SWITCH ── */
.toggle-switch {
  position: relative;
  width: 38px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-track {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: var(--gray-line);
  transition: background 0.3s;
}
.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.toggle-switch input:checked ~ .toggle-track {
  background: var(--teal);
}
.toggle-switch input:checked ~ .toggle-thumb {
  transform: translateX(18px);
}

/* ── SEARCH BUTTON (ortak) ── */
.fb-search {
  background: var(--navy);
  color: var(--white);
  border: none;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.fb-search span,
.fb-search i {
  position: relative;
  z-index: 1;
}

/* ── ACTIVE FILTER CHIPS ── */
.active-filters {
  padding: 10px 16px;
  border-top: 1px solid var(--gray-line);
  display: none;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--white);
}
.active-filters.show {
  display: flex;
}
.af-label {
  font-size: 0.57rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-right: 2px;
}
.af-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}
.af-chip:hover {
  background: #c0392b;
}
.af-chip i {
  font-size: 0.5rem;
}
.af-clear {
  margin-left: auto;
  font-size: 0.62rem;
  color: var(--text-light);
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  white-space: nowrap;
}
.af-clear:hover {
  color: var(--teal);
}

/* ── EXTENDED PANEL ── */
.filter-extra {
  display: none;
  padding: 14px 16px;
  background: var(--off-white);
  border-top: 1px solid var(--gray-line);
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  animation: fbSlideDown 0.25s ease;
}
.filter-extra.open {
  display: flex;
}

@keyframes fbSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fe-section-label {
  font-size: 0.57rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-right: 2px;
  font-weight: 500;
  white-space: nowrap;
}
.fe-sep {
  width: 1px;
  height: 20px;
  background: var(--gray-line);
  margin: 0 8px;
}
.fe-tag {
  padding: 6px 14px;
  font-size: 0.67rem;
  letter-spacing: 0.8px;
  border: 1px solid var(--gray-line);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-mid);
  font-weight: 400;
  white-space: nowrap;
  user-select: none;
}
.fe-tag:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.fe-tag.on {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── SELECT2 OVERRIDES ── */
.select2-container {
  width: 100% !important;
}
.select2-container--default .select2-selection--single {
  background: transparent !important;
  border: none !important;
  height: auto !important;
  padding: 0 !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 300 !important;
  color: var(--text) !important;
  padding: 0 !important;
  line-height: 1.4 !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: var(--text-light) !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  display: none !important;
}
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: var(--navy) !important;
}
.select2-dropdown {
  border-color: var(--gray-line) !important;
  border-radius: 0 !important;
  box-shadow: 0 8px 32px rgba(11, 30, 61, 0.12) !important;
  font-family: 'DM Sans', sans-serif !important;
}
.select2-results__option {
  font-size: 0.82rem !important;
  font-weight: 300 !important;
  padding: 9px 14px !important;
  color: var(--text) !important;
}
.select2-container--default .select2-results__option[aria-selected='true'] {
  background: var(--off-white) !important;
  color: var(--teal) !important;
}
.select2-search--dropdown .select2-search__field {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.78rem !important;
  border-color: var(--gray-line) !important;
  border-radius: 0 !important;
}
.select2-search--dropdown .select2-search__field:focus {
  outline: none !important;
}

/* ── FLATPICKR OVERRIDES ── */
.flatpickr-calendar {
  font-family: 'DM Sans', sans-serif !important;
  border-radius: 0 !important;
  box-shadow: 0 8px 32px rgba(11, 30, 61, 0.15) !important;
  border: 1px solid var(--gray-line) !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
}
.flatpickr-day.inRange {
  background: rgba(11, 30, 61, 0.08) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.flatpickr-day:hover {
  background: var(--off-white) !important;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--teal) !important;
}

/* ================================================================
   MOBILE  —  max 599px
================================================================ */
@media (max-width: 599px) {
  /* Topbar dikey */
  .fb-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .fb-sort {
    width: 100%;
    justify-content: space-between;
  }
  .fb-sort select {
    flex: 1;
  }

  /* Ana bar: dikey liste */
  .filter-bar {
    display: flex;
    flex-direction: column;
    min-height: unset;
    overflow-x: visible;
  }

  /* Divider gizli, border ile ayır */
  .fb-divider {
    display: none;
  }

  /* Her field tam genişlik kart */
  .fb-field,
  .fb-field--narrow,
  .fb-field--wide {
    flex: none;
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-line);
    min-height: 64px;
  }

  /* Toggle: yatay satır */
  .fb-toggle {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    min-width: unset;
    gap: 12px;
    border-bottom: 1px solid var(--gray-line);
    width: 100%;
  }
  .toggle-label-top {
    display: none;
  }
  .toggle-label-bot {
    font-size: 0.75rem;
    flex: 1;
    text-align: left;
    color: var(--text-mid);
    letter-spacing: 0.8px;
  }

  /* More: yatay tam genişlik */
  .fb-more {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    min-width: unset;
    width: 100%;
    border-bottom: 1px solid var(--gray-line);
    color: var(--text-mid);
  }
  .fb-more > i:first-child {
    font-size: 1rem;
  }
  .fb-more > span {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  /* Chevron */
  .fb-chevron {
    font-size: 0.6rem;
    transition: transform 0.3s;
  }
  .fb-more.active .fb-chevron {
    transform: rotate(180deg);
  }
  .fb-more.active {
    color: var(--teal);
  }

  /* Search: tam genişlik */
  .fb-search {
    width: 100%;
    padding: 18px 16px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    min-height: 54px;
    position: relative;
    overflow: hidden;
  }
  .fb-search::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .fb-search:hover::before {
    transform: scaleX(1);
  }

  /* Price inputs: genişlet */
  .price-inputs {
    width: 100%;
  }
  .price-inputs input {
    flex: 1;
    width: auto;
  }

  /* Extended panel */
  .filter-extra {
    padding: 14px 16px;
    gap: 8px;
  }
  .fe-sep {
    display: none;
  }
  .fe-section-label {
    width: 100%;
    margin-top: 6px;
  }
  .fe-section-label:first-child {
    margin-top: 0;
  }
  .fe-tag {
    flex: 1;
    text-align: center;
    min-width: calc(50% - 4px);
  }

  /* Flatpickr tek ay */
  .flatpickr-calendar {
    max-width: calc(100vw - 32px) !important;
  }
  .flatpickr-rContainer {
    width: 100% !important;
  }
  .flatpickr-days,
  .dayContainer {
    width: 100% !important;
    min-width: unset !important;
    max-width: unset !important;
  }
}

/* ================================================================
   TABLET  —  600px – 1023px
================================================================ */
@media (min-width: 600px) and (max-width: 1023px) {
  /* Ana bar: 2 sütun grid */
  .filter-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: unset;
    overflow-x: visible;
  }

  /* Divider gizli */
  .fb-divider {
    display: none;
  }

  /* Her field */
  .fb-field,
  .fb-field--narrow,
  .fb-field--wide {
    flex: none;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-line);
    min-height: 70px;
    width: 100%;
  }

  /* Toggle */
  .fb-toggle {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px 20px;
    min-width: unset;
    border-bottom: 1px solid var(--gray-line);
    border-left: 1px solid var(--gray-line);
  }
  .toggle-label-top {
    display: none;
  }
  .toggle-label-bot {
    font-size: 0.72rem;
    color: var(--text-mid);
  }

  /* More */
  .fb-more {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    min-width: unset;
    border-bottom: 1px solid var(--gray-line);
  }
  .fb-more > i:first-child {
    font-size: 0.95rem;
  }
  .fb-more > span {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .fb-chevron {
    font-size: 0.55rem;
    transition: transform 0.3s;
  }
  .fb-more.active .fb-chevron {
    transform: rotate(180deg);
  }
  .fb-more.active {
    color: var(--teal);
  }

  /* Search: tüm genişlik */
  .fb-search {
    grid-column: 1 / -1;
    width: 100%;
    padding: 18px 16px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    min-height: 54px;
    position: relative;
    overflow: hidden;
  }
  .fb-search::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .fb-search:hover::before {
    transform: scaleX(1);
  }

  /* Price */
  .price-inputs input {
    width: 90px;
  }

  /* Extended panel */
  .filter-extra {
    padding: 14px 20px;
    gap: 10px;
  }
  .fe-sep {
    display: none;
  }
  .fe-section-label {
    width: 100%;
    margin-top: 6px;
  }
  .fe-section-label:first-child {
    margin-top: 0;
  }
}

/* ================================================================
   SMALL DESKTOP  —  1024px – 1279px
================================================================ */
@media (min-width: 1024px) and (max-width: 1279px) {
  .filter-bar {
    display: flex;
    align-items: stretch;
    min-height: 68px;
    overflow-x: auto;
  }
  .filter-bar::-webkit-scrollbar {
    height: 0;
  }

  .fb-divider {
    display: block;
  }

  .fb-field {
    flex: 1;
    padding: 0 14px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .fb-field--narrow {
    flex: 0.8;
  }
  .fb-field--wide {
    flex: 1.15;
  }
  .fb-field:hover {
    background: var(--off-white);
  }

  .fb-toggle {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 14px;
    min-width: 88px;
    transition: background 0.2s;
  }
  .fb-toggle:hover {
    background: var(--off-white);
  }
  .toggle-label-top {
    display: none;
  }
  .toggle-label-bot {
    font-size: 0.6rem;
    color: var(--text-mid);
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }

  .fb-more {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 14px;
    min-width: 70px;
    color: var(--text-mid);
    transition: all 0.25s;
    user-select: none;
  }
  .fb-more:hover {
    background: var(--off-white);
    color: var(--teal);
  }
  .fb-more > i:first-child {
    font-size: 0.85rem;
  }
  .fb-more > span {
    font-size: 0.52rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .fb-chevron {
    font-size: 0.48rem;
    transition: transform 0.3s;
  }
  .fb-more.active .fb-chevron {
    transform: rotate(180deg);
  }
  .fb-more.active {
    color: var(--teal);
  }

  .fb-search {
    padding: 11px 22px;
    min-width: 120px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: letter-spacing 0.3s;
  }
  .fb-search::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .fb-search:hover::before {
    transform: scaleX(1);
  }
  .fb-search:hover {
    letter-spacing: 2.5px;
  }

  .price-inputs input {
    width: 64px;
  }

  .fe-sep {
    display: block;
  }
}

/* ================================================================
   LARGE DESKTOP  —  ≥ 1280px
================================================================ */
@media (min-width: 1280px) {
  .filter-bar {
    display: flex;
    align-items: stretch;
    min-height: 72px;
    overflow-x: visible;
  }

  .fb-divider {
    display: block;
  }

  .fb-field {
    flex: 1;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .fb-field--narrow {
    flex: 0.85;
  }
  .fb-field--wide {
    flex: 1.25;
  }
  .fb-field:hover {
    background: var(--off-white);
  }

  .fb-toggle {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    gap: 5px;
    min-width: 96px;
    transition: background 0.2s;
  }
  .fb-toggle:hover {
    background: var(--off-white);
  }
  .toggle-label-top {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
  }
  .toggle-label-bot {
    font-size: 0.58rem;
    letter-spacing: 1px;
    color: var(--text-mid);
    text-transform: uppercase;
    font-weight: 400;
  }

  .fb-more {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 18px;
    min-width: 76px;
    color: var(--text-mid);
    transition: all 0.25s;
    user-select: none;
  }
  .fb-more:hover {
    background: var(--off-white);
    color: var(--teal);
  }
  .fb-more > i:first-child {
    font-size: 0.9rem;
  }
  .fb-more > span {
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .fb-chevron {
    font-size: 0.5rem;
    transition: transform 0.3s;
  }
  .fb-more.active .fb-chevron {
    transform: rotate(180deg);
  }
  .fb-more.active {
    color: var(--teal);
  }

  .fb-search {
    padding: 15px 30px;
    min-width: 136px;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    position: relative;
    overflow: hidden;
    transition: letter-spacing 0.3s;
  }
  .fb-search::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .fb-search:hover::before {
    transform: scaleX(1);
  }
  .fb-search:hover {
    letter-spacing: 3px;
  }

  .price-inputs input {
    width: 72px;
  }

  .fe-sep {
    display: block;
  }
}

.range-field {
  min-width: 160px;
}

.range-wrapper {
  position: relative;
  padding-top: 2px;
}

.range-track {
  position: relative;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  margin: 8px 0 4px;
}

.range-fill {
  position: absolute;
  height: 100%;
  background: #3a9e8f;
  border-radius: 2px;
  pointer-events: none;
}

.range-slider {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  pointer-events: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3a9e8f;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(58, 158, 143, 0.35);
}

.range-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3a9e8f;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.range-value-display {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.range-value-display span {
  color: #334155;
  font-weight: 600;
}

/* Guests Trigger */
.gc-sub {
  font-size: 13px;
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.gc-sub .gc-summary {
  color: #334155;
  font-weight: 500;
}
.gc-sub .gc-chevron {
  font-size: 9px;
  color: #cbd5e1;
  margin-left: auto;
  transition: transform 0.2s;
}
.gc-sub.open .gc-chevron {
  transform: rotate(180deg);
}

#guestsField {
  position: relative;
  display: inline-block;
}

#cabinsField {
  position: relative;
  display: inline-block;
}

/* Guest Dropdown */
.guest-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(8px);
  width: 260px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 999;
  padding: 8px 0;
  animation: dropIn 0.18s ease;
}
.guest-dropdown.open {
  display: block;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid #f1f5f9;
}
.gd-row:last-of-type {
  border-bottom: none;
}
.gd-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gd-label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}
.gd-sub {
  font-size: 11px;
  color: #94a3b8;
}
.gd-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gd-btn {
  width: 26px;
  height: 26px;
  border: 1.5px solid #cbd5e1;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    color 0.2s;
  flex-shrink: 0;
}
.gd-btn:hover:not(:disabled) {
  border-color: #3a9e8f;
  color: #3a9e8f;
}
.gd-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.gd-count {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  min-width: 20px;
  text-align: center;
}

.gd-done {
  margin: 8px 16px 4px;
  width: calc(100% - 32px);
  padding: 8px;
  background: #1e293b;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.gd-done:hover {
  background: #3a9e8f;
}
/*FILTER END*/

/* ── STATS ── */
.stats-row {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-line);
}

.stat-cell {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--gray-line);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}

.stat-n span {
  color: var(--teal);
}

.stat-l {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
  display: block;
}

/* ── SECTION HELPERS ── */
.s-eyebrow {
  font-size: 0.63rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
}

.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
}

.s-title.light {
  color: var(--white);
}

.s-line {
  width: 48px;
  height: 1px;
  background: var(--teal);
  margin: 18px 0;
}

.s-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 500px;
}

/* ── YACHT CARDS ── */
.yachts-section {
  padding: 80px 0;
  background: var(--white);
}

.yacht-card {
  border: 1px solid var(--gray-line);
  overflow: hidden;
  background: var(--white);
  transition:
    box-shadow 0.35s,
    transform 0.35s;
  height: 100%;
}

.yacht-card:hover {
  box-shadow: 0 12px 48px rgba(11, 30, 61, 0.12);
  transform: translateY(-4px);
}

.yc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.yc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s ease;
}

.yacht-card:hover .yc-img-wrap img {
  transform: scale(1.06);
}

.yc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 500;
}

.yc-badge.charter {
  background: var(--teal);
  color: var(--white);
}

.yc-badge.sale {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--teal-pale);
}

.yc-fav {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.25s;
}

.yc-fav:hover,
.yc-fav.on {
  color: #e74c3c;
}

.yc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(11, 30, 61, 0.55) 0%,
    transparent 55%
  );
}

.yc-body {
  padding: 18px 20px 20px;
}

.yc-meta {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
}

.yc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  font-variant-numeric: lining-nums;
}

.yc-specs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.yc-spec {
  font-size: 0.7rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 5px;
}

.yc-spec i {
  color: var(--teal);
  font-size: 0.68rem;
}

.yc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid var(--gray-line);
}

.yc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
}

.yc-price small {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 1px;
}

.btn-enq {
  border: 1px solid var(--teal);
  color: var(--teal);
  background: transparent;
  font-size: 0.63rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btn-enq:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-reserve {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  font-size: 0.63rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
  margin-left: 6px;
}

.btn-reserve:hover {
  background: var(--navy);
  color: var(--white);
}

.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.result-count {
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.5px;
}

.result-count strong {
  color: var(--navy);
  font-weight: 500;
}

.sort-select {
  border: 1px solid var(--gray-line);
  background: var(--white);
  padding: 7px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--text);
  outline: none;
  cursor: pointer;
}

/* ── FEATURES ── */
.features-section {
  background: var(--navy);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 143, 160, 0.08) 0%,
    transparent 70%
  );
}

.feat-card {
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s,
    background 0.35s;
}

.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-light);
  transition: width 0.4s;
}

.feat-card:hover {
  border-color: rgba(26, 143, 160, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.feat-card:hover::after {
  width: 100%;
}

.feat-icon {
  font-size: 1.7rem;
  color: var(--teal-light);
  margin-bottom: 22px;
}

.feat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.feat-desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
}

/* ── DESTINATIONS ── */
.dest-section {
  padding: 88px 0;
  background: var(--off-white);
}

.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.dest-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.dest-card:hover img {
  transform: scale(1.05);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 30, 61, 0.88) 0%,
    rgba(11, 30, 61, 0.2) 60%,
    transparent 100%
  );
}

.dest-info {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
}

.dest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
}

.dest-count {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
}

.dest-tall {
  height: 500px;
}

.dest-short {
  height: 240px;
}

.dest-card img.dest-tall {
  height: 500px;
}

.dest-card img.dest-short {
  height: 240px;
}

/* ── EDITORIAL SPLIT ── */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.ed-visual {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.ed-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ed-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(11, 30, 61, 0.4));
}

.ed-content {
  background: var(--navy);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ed-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 28px;
}

.ed-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--teal-light);
  line-height: 0;
  vertical-align: -0.4em;
  font-style: normal;
  margin-right: 3px;
}

.ed-author {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-light);
}

/* ── TESTIMONIALS ── */
.testi-section {
  padding: 88px 0;
  background: var(--white);
}

.testi-card {
  padding: 36px 32px;
  border: 1px solid var(--gray-line);
  height: 100%;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.testi-card:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 32px rgba(11, 30, 61, 0.07);
}

.testi-stars {
  color: var(--teal);
  font-size: 0.78rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 22px;
}

.testi-author {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
}

.testi-meta {
  font-size: 0.65rem;
  color: var(--text-light);
  margin-top: 3px;
}

/* ── NEWSLETTER ── */
.nl-section {
  background: var(--navy-mid);
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.nl-wrap {
  display: flex;
  max-width: 460px;
}

.nl-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  padding: 0 20px;
  height: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
}

.nl-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.nl-btn {
  background: var(--teal);
  border: none;
  height: 50px;
  padding: 0 26px;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.nl-btn:hover {
  background: var(--teal-light);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.55);
  padding: 64px 0 0;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 5px;
  color: var(--white);
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--teal-light);
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  margin: 8px 0 20px;
}

.fc-title {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.fl {
  list-style: none;
}

.fl li {
  margin-bottom: 9px;
}

.fl a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.25s;
}

.fl a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  margin-top: 52px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.28);
}

.f-social {
  display: flex;
  gap: 12px;
}

.f-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.25s;
}

.f-social a:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

/* ── RESPONSIVE ── */

/* Tablet (≤ 991px): nav linkleri gizle, logo küçült */
@media (max-width: 991px) {
  .editorial {
    grid-template-columns: 1fr;
  }

  .ed-content {
    padding: 48px 36px;
  }

  .hdr-nav {
    display: none;
  }

  .hdr-logo {
    font-size: 1.2rem;
    letter-spacing: 4px;
  }

  /* Mega menu tablet: tek sütun scroll */
  .mega-menu {
    padding: 32px 24px 40px;
  }

  .mega-menu .row {
    flex-wrap: wrap;
  }

  .mega-menu .col-lg-2,
  .mega-menu .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 24px;
  }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
  .hdr-nav {
    display: none;
  }

  .hdr-sub {
    display: none;
  }

  .hero {
    margin-top: 64px;
  }

  /* full-screen menü — tek sütun */
  .fm-body {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .fm-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0 0 24px 0;
    margin-bottom: 4px;
  }

  .fm-col:last-child {
    border-bottom: none;
  }

  .fm-topbar {
    padding: 0 20px;
  }

  .fm-footer {
    padding: 20px 20px;
    gap: 16px;
    flex-direction: column;
  }

  /* mega menu mobile: gizle (hamburger kullanılır) */
  .mega-menu {
    display: none !important;
  }

  #megaOverlay {
    display: none !important;
  }

  /* filter */
  .filter-bar {
    flex-direction: column;
  }

  .fb-field {
    border-right: none;
    border-bottom: 1px solid var(--gray-line);
    min-width: unset;
    padding: 12px 18px;
  }

  .fb-toggle {
    border-right: none;
    border-bottom: 1px solid var(--gray-line);
    padding: 12px 18px;
  }

  .fb-more {
    border-right: none;
    border-bottom: 1px solid var(--gray-line);
    padding: 12px 18px;
  }

  .fb-search {
    height: 52px;
  }

  /* misc */
  .nl-wrap {
    flex-direction: column;
    max-width: 100%;
  }

  .nl-input {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .dest-tall {
    height: 320px;
  }

  .dest-short {
    height: 200px;
  }

  .dest-card img.dest-tall {
    height: 320px;
  }

  .dest-card img.dest-short {
    height: 200px;
  }

  .hero-dots {
    display: none;
  }

  .ed-content {
    padding: 36px 24px;
  }

  /* hdr icon butonlarını küçült */
  .hdr-icon-btn {
    width: 44px;
  }
}

/* Küçük mobil (≤ 480px) */
@media (max-width: 480px) {
  .hdr-logo {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .fm-brand {
    font-size: 1.1rem;
    letter-spacing: 4px;
  }
}

/*contact button start*/
.contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 99999;
}

.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-btn.active {
  transform: rotate(45deg);
}

.contact-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* Popup container */
.contact-popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
  min-width: 200px;
}

.contact-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-popup h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

/* İletişim seçenekleri */
.contact-option {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}

.contact-option:last-child {
  margin-bottom: 0;
}

.contact-option:hover {
  transform: translateX(5px);
}

.contact-option.phone {
  background: #e3f2fd;
}

.contact-option.phone:hover {
  background: #2196f3;
  color: white;
}

.contact-option.whatsapp {
  background: #e8f5e9;
}

.contact-option.whatsapp:hover {
  background: #25d366;
  color: white;
}

.contact-option svg {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

.contact-option.phone svg {
  fill: #2196f3;
}

.contact-option.whatsapp svg {
  fill: #25d366;
}

.contact-option:hover svg {
  fill: white;
}

.contact-option span {
  font-size: 14px;
  font-weight: 500;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 997;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .contact-btn {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .contact-popup {
    bottom: 85px;
    right: 20px;
    left: 20px;
    min-width: auto;
  }
}
.language-dropdown {
  position: fixed;
  bottom: 25px;
  left: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.language-button {
  background: #ffffff;
  border-radius: 2px;
  border: none;
  display: flex;
  align-items: center;
  padding: 8px 19px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  gap: 8px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.language-button img {
  width: 35px;
  height: 25px;
  border-radius: 2px;
}

.language-button span {
  font-weight: 600;
  color: #000000;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.language-button i {
  width: 12px;
  height: 12px;
  transform: rotate(0deg); /* aşağı ok — kapalı halde */
  transition: transform 0.3s;
}

.language-button svg path {
  fill: #ffffff;
}

.language-button.open i {
  transform: rotate(180deg); /* yukarı ok — açık halde */
}

.language-options {
  position: absolute;
  bottom: 90%;
  left: 0;
  background: #e8f7ff;
  border: none;
  border-radius: 3px;
  display: none;
  flex-direction: column;
  min-width: 130px;
  padding: 6px 0;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.language-options.open {
  display: flex;
}

.language-options a {
  text-decoration: none;
  color: inherit;
}

.language-options div {
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

.language-options div:hover {
  background: #f5f5f5;
}

.language-options img {
  width: 30px;
  height: 20px;
  border-radius: 2px;
}
.link-none {
  text-decoration: none !important;
}
/* ====================DESTINATIONS START========================= */
.dest-section {
  padding: 80px 0 0;
  background: var(--white);
  overflow: hidden;
}

.dest-header {
  text-align: center;
  padding: 0 16px 52px;
}

.dest-header__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.dest-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}

.dest-header__title em {
  font-style: italic;
  color: var(--teal);
}

.dest-header__sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* başlık altı dekoratif çizgi */
.dest-header__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dest-header__divider span {
  display: block;
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--teal));
}

.dest-header__divider span:last-child {
  background: linear-gradient(270deg, transparent, var(--teal));
}

.dest-header__divider i {
  color: var(--teal);
  font-size: 0.42rem;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 340px;
  gap: 3px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

/* görsel */
.dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}

.dest-card:hover .dest-card__img {
  transform: scale(1.07);
}

/* kalıcı alt gradient — isim her zaman okunabilsin */
.dest-card__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(7, 20, 40, 0.55) 75%,
    rgba(7, 20, 40, 0.78) 100%
  );
  transition: opacity 0.4s var(--ease);
}

/* hover'da gradient biraz koyulaşır */
.dest-card:hover .dest-card__grad {
  opacity: 1.2;
}

/* hover overlay: teal tonu */
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 143, 160, 0);
  transition: background 0.4s var(--ease);
  pointer-events: none;
}

.dest-card:hover .dest-card__overlay {
  background: rgba(26, 143, 160, 0.18);
}

/* içerik bloğu: sol alt */
.dest-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  z-index: 2;
}

/* şehir / bölge adı */
.dest-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
  transition: transform 0.35s var(--ease);
}

.dest-card:hover .dest-card__name {
  transform: translateY(-3px);
}

/* alt kısa açıklama — normalde gizli, hover'da görünür */
.dest-card__desc {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s var(--ease),
    opacity 0.35s var(--ease);
}

.dest-card:hover .dest-card__desc {
  max-height: 60px;
  opacity: 1;
}

/* sağ alt "Keşfet" ok ikonu — hover'da belirir */
.dest-card__arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.75);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    background 0.25s,
    border-color 0.25s;
  z-index: 2;
}

.dest-card:hover .dest-card__arrow {
  opacity: 1;
  transform: scale(1);
}

.dest-card:hover .dest-card__arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* sol üst ülke kodu küçük badge */
.dest-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.dest-card:hover .dest-card__badge {
  opacity: 1;
  transform: translateY(0);
}

.dest-cta-bar {
  background: #282368;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.dest-cta-bar__text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--white);
}

.dest-cta-bar__text em {
  font-style: italic;
  color: var(--sky);
}

.dest-cta-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.25s,
    transform 0.2s;
}

.dest-cta-bar__btn:hover {
  background: var(--teal-light);
  color: var(--white);
  transform: translateX(3px);
}

/* Tablet: 2 sütun, alt satırda 1 büyük + 2 küçük */
@media (max-width: 991.98px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 280px 280px 280px;
  }

  /* 5. kart (Monaco) ortada tam genişlik */
  .dest-card:nth-child(5) {
    grid-column: span 2;
  }

  .dest-card__name {
    font-size: 1.6rem;
  }
}

/* Mobil: tek sütun */
@media (max-width: 575.98px) {
  .dest-section {
    padding-top: 56px;
  }

  .dest-header {
    padding-bottom: 36px;
  }

  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 240px);
  }

  .dest-card:nth-child(5) {
    grid-column: span 1;
  }

  .dest-cta-bar {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
  }
}
/* ====================DESTINATIONS END========================= */
/* ====================DETAIL START========================= */
.yd-hero {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  user-select: none;
  margin-top: 100px;
}

/* Sliding track */
.yd-hero__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

/* Her slayt: 3 eşit hücre */
.yd-hero__slide {
  flex-shrink: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  height: 420px;
}

/* Tek bir görsel hücre */
.yd-hero__cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.yd-hero__cell img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.yd-hero__cell:hover img {
  transform: scale(1.04);
}

/* hover gradyant overlay */
.yd-hero__cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 20, 40, 0.5));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  pointer-events: none;
}

.yd-hero__cell:hover::before {
  opacity: 1;
}

/* "Tüm Fotoğraflar" hücresi */
.yd-hero__cell--more .yd-more-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(11, 30, 61, 0.72);
  color: var(--white);
  gap: 10px;
  transition: background 0.3s;
  z-index: 2;
}

.yd-hero__cell--more:hover .yd-more-overlay {
  background: rgba(26, 143, 160, 0.6);
}

.yd-more-overlay i {
  font-size: 1.7rem;
  color: var(--sky);
}

.yd-more-overlay span {
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Navigasyon okları */
.yd-hero__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}

.yd-hero__btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-50%) scale(1.1);
}

.yd-hero__btn:disabled {
  opacity: 0.28;
  pointer-events: none;
}

.yd-hero__btn--prev {
  left: 16px;
}

.yd-hero__btn--next {
  right: 16px;
}

/* Dot indikatörler */
.yd-hero__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.yd-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
}

.yd-dot.active {
  background: var(--teal-light);
  transform: scale(1.45);
}

/* Sağ alt fotoğraf sayacı */
.yd-hero__count {
  position: absolute;
  bottom: 16px;
  right: 18px;
  background: rgba(11, 30, 61, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  padding: 4px 11px;
  border-radius: 20px;
  z-index: 10;
  pointer-events: none;
}

/* Responsive — Swiper handles slidesPerView via JS breakpoints */
@media (max-width: 767.98px) {
  .yd-hero {
    margin-top: 100px;
  }

  .yd-hero__cell {
    height: 260px;
  }

  .yd-hero__cell img {
    height: 260px;
  }
}

@media (max-width: 575.98px) {
  .yd-hero__cell {
    height: 220px;
  }

  .yd-hero__cell img {
    height: 220px;
  }
}

/* ============================================================
   TAB NAVBAR
============================================================ */
.yd-tabs {
  background: var(--white);
  border-bottom: 2px solid var(--gray-line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.yd-tabs__inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.yd-tabs__inner::-webkit-scrollbar {
  display: none;
}

.yd-tab-btn {
  flex-shrink: 0;
  padding: 16px 26px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.25s,
    border-color 0.25s;
}

.yd-tab-btn:hover {
  color: var(--teal);
}

.yd-tab-btn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* Bootstrap tab-pane handles visibility via fade/show/active.
   Keep custom transition for smooth tab switching. */
.yd-tab-panel {
  transition: opacity 0.15s ease;
}

.yd-tab-panel.active {
  opacity: 1;
}

/* ============================================================
   ANA LAYOUT
============================================================ */
.yd-main {
  padding: 48px 0 88px;
  background: var(--white);
}

.yd-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
}

.yd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.yd-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.yd-meta i {
  color: var(--teal);
  font-size: 0.68rem;
}

/* Bölüm başlık çizgisi */
.yd-sh {
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.yd-sh::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-line);
}

/* Açıklama */
.yd-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.yd-read-more {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
  transition: color 0.25s;
}

.yd-read-more:hover {
  color: var(--teal-light);
}

/* ============================================================
   OLANAK KARTI GRİD
============================================================ */
.yd-am-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 6px;
}

@media (max-width: 575.98px) {
  .yd-am-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.yd-am-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--gray-line);
  border-radius: 3px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-mid);
  transition:
    border-color 0.2s,
    background 0.2s;
}

.yd-am-item:hover {
  border-color: var(--teal-pale);
  background: var(--white);
}

.yd-am-item i {
  color: var(--teal);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.yd-see-more {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 36px;
  transition: color 0.25s;
}

.yd-see-more:hover {
  color: var(--teal-light);
}

/* ============================================================
   TEKNİK ÖZELLİKLER — şık 2 sütunlu tablo
============================================================ */
.yd-specs-tbl {
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(11, 30, 61, 0.06);
}

.yd-specs-tbl__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 15px 24px;
}

.yd-specs-tbl__head span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 7px;
}

.yd-specs-tbl__head span i {
  color: var(--teal-light);
  font-size: 0.72rem;
}

.yd-spec-r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--gray-line);
  transition:
    background 0.22s,
    transform 0.15s;
}

.yd-spec-r:last-child {
  border-bottom: none;
}

.yd-spec-r--even {
  background: rgba(244, 247, 250, 0.6);
}

.yd-spec-r:hover {
  background: var(--teal-pale);
}

.yd-spec-r > div {
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Sol hücre: etiket */
.yd-spec-r > div:first-child {
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-right: 1px solid var(--gray-line);
}

.yd-spec-icon {
  color: var(--teal);
  font-size: 0.55rem !important;
  flex-shrink: 0;
  opacity: 0.7;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.yd-spec-r:hover .yd-spec-icon {
  opacity: 1;
  transform: translateX(2px);
}

/* Sağ hücre: değer */
.yd-spec-r > div:last-child {
  color: var(--navy);
  font-weight: 600;
}

.yd-spec-val {
  display: inline-block;
}

@media (max-width: 575.98px) {
  .yd-spec-r > div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--gray-line);
    padding-bottom: 8px;
  }

  .yd-spec-r > div:last-child {
    padding-top: 8px;
  }
}

/* ============================================================
   GALERİ GRİD — masonry benzeri, ilk görsel büyük
============================================================ */
.yd-gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

@media (max-width: 575.98px) {
  .yd-gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.yd-gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  background: var(--navy-deep);
}

/* İlk görsel: 2 sütun 2 satır kaplar */
.yd-gal-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.yd-gal-item img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  display: block;
  transition:
    transform 0.45s var(--ease),
    filter 0.45s;
}

.yd-gal-item:first-child img {
  min-height: 300px;
}

.yd-gal-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

/* sıra numarası badge */
.yd-gal-num {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(11, 30, 61, 0.5);
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}

/* hover büyüt ikonu */
.yd-gal-item::after {
  content: '\f03e';
  font-family: 'Font Awesome 6 Free';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  background: rgba(26, 143, 160, 0);
  transition: background 0.3s;
  pointer-events: none;
  z-index: 1;
}

.yd-gal-item:hover::after {
  background: rgba(26, 143, 160, 0.28);
}

/* ============================================================
   SIDEBAR — tamamen yeniden tasarlandı
============================================================ */
.yd-sidebar {
  position: sticky;
  top: 70px;
}

/* Ana kart */
.yd-sb-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(11, 30, 61, 0.09);
  margin-bottom: 16px;
}

/* Koyu üst bant */
.yd-sb-top {
  background: var(--navy);
  padding: 22px 24px 20px;
  position: relative;
  overflow: hidden;
}

/* sağ üst teal dekor üçgeni */
.yd-sb-top::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-top: 60px solid var(--teal);
  border-left: 60px solid transparent;
  opacity: 0.22;
}

.yd-sb-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.yd-sb-price-lbl {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  display: block;
  margin-bottom: 4px;
}

.yd-sb-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.yd-sb-price sup {
  font-size: 38%;
  vertical-align: super;
  color: var(--sky);
  margin-right: 2px;
}

/* 4'lü hızlı özellik pill grid */
.yd-sb-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--gray-line);
}

.yd-sb-pills-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--gray-line);
}

.yd-sb-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 6px;
  border-right: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  transition: background 0.2s;
  cursor: default;
}

.yd-sb-pill:last-child {
  border-right: none;
}

.yd-sb-pill:hover {
  background: var(--teal-pale);
}

.yd-sb-pill i {
  font-size: 1.1rem;
  color: var(--teal);
}

.yd-sb-pill__val {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.yd-sb-pill__lbl {
  font-family: var(--font-body);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Broker satırı */
.yd-sb-broker {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--gray-line);
  background: var(--off-white);
}

.yd-sb-broker__av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.yd-sb-broker__name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
  line-height: 1.25;
}

.yd-sb-broker__role {
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: var(--text-light);
}

.yd-sb-broker__phone {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  flex-shrink: 0;
}

.yd-sb-broker__phone:hover {
  color: var(--teal-light);
}

/* Buton grubu */
.yd-sb-btns {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.yd-sb-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(26, 143, 160, 0.35);
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
}

.yd-sb-btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 143, 160, 0.45);
}

.yd-sb-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.yd-sb-btn-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--off-white);
  color: var(--text-mid);
  border: 1.5px solid var(--gray-line);
  padding: 11px 10px;
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
}

.yd-sb-btn-sec:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-pale);
}

.yd-sb-btn-sec.fav-on {
  border-color: #e74c3c;
  color: #e74c3c;
  background: #fff5f5;
}

/* Spesifikasyon listesi alt kart */
.yd-sb-specs {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(11, 30, 61, 0.05);
}

.yd-sb-specs__hd {
  background: var(--navy-mid);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.yd-sb-specs__hd span {
  font-family: var(--font-body);
  font-size: 0.57rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.yd-sb-specs__hd i {
  color: var(--teal-light);
  font-size: 0.8rem;
}

.yd-sb-sr {
  display: flex;
  align-items: center;
  padding: 11px 20px;
  border-bottom: 1px solid var(--gray-line);
  gap: 11px;
  transition: background 0.18s;
}

.yd-sb-sr:last-child {
  border-bottom: none;
}

.yd-sb-sr:hover {
  background: var(--off-white);
}

.yd-sb-sr__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 1px solid rgba(26, 143, 160, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.yd-sb-sr__key {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex: 1;
}

.yd-sb-sr__val {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

/* Responsive: sidebar sticky kaldır */
@media (max-width: 991.98px) {
  .yd-sidebar {
    position: static;
  }
}

/* ============================================================
   LIGHTBOX
============================================================ */
.yd-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 40, 0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.yd-lightbox.open {
  display: flex;
}

.yd-lb-img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 3px;
}

.yd-lb-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.yd-lb-close:hover {
  background: var(--teal);
  color: var(--white);
}

.yd-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.yd-lb-nav:hover {
  background: var(--teal);
}

.yd-lb-nav--p {
  left: 16px;
}

.yd-lb-nav--n {
  right: 16px;
}

.yd-lb-cnt {
  position: absolute;
  bottom: 54px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.38);
}

/* Alt thumbnail şeridi */
.yd-lb-thumbs {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  max-width: 90vw;
  overflow-x: auto;
  scrollbar-width: none;
}

.yd-lb-thumbs::-webkit-scrollbar {
  display: none;
}

.yd-lb-th {
  width: 50px;
  height: 36px;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0.4;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition:
    opacity 0.2s,
    border-color 0.2s;
}

.yd-lb-th.on,
.yd-lb-th.active {
  opacity: 1;
  border-color: var(--teal);
}

.yd-lb-th:hover {
  opacity: 0.8;
}

/* ============================================================
   BOOTSTRAP LIGHTBOX MODAL OVERRIDES
============================================================ */
.yd-lb-dialog {
  margin: 0;
  max-width: 100%;
}

.yd-lb-content {
  background: rgba(7, 20, 40, 0.96) !important;
  border: none !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

.yd-lb-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 60px 70px 80px;
}

@media (max-width: 767.98px) {
  .yd-lb-body {
    padding: 60px 16px 100px;
  }

  .yd-lb-nav {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .yd-lb-nav--p {
    left: 8px;
  }

  .yd-lb-nav--n {
    right: 8px;
  }
}

/* ============================================================
   BOOTSTRAP TAB OVERRIDES
============================================================ */
/* Remove Bootstrap default nav-link styles to keep custom yd-tab-btn look */
.yd-tabs__inner .nav-link {
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  padding: 16px 26px;
}

.yd-tabs__inner .nav-link:hover {
  border: none !important;
  isolation: auto;
}

.yd-tabs__inner .nav-link.active {
  background: none !important;
  border: none !important;
  border-bottom: 4px solid var(--teal) !important;
  margin-bottom: -2px;
  color: var(--teal) !important;
}

/* ============================================================
   INQUIRY MODAL
============================================================ */
.yd-inquiry-modal {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(7, 20, 40, 0.35);
}

.yd-inquiry-header {
  background: var(--navy);
  border-bottom: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.yd-inquiry-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

.yd-inquiry-yacht {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--sky);
  margin: 4px 0 0;
}

.yd-inquiry-close {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  flex-shrink: 0;
}

.yd-inquiry-close:hover {
  background: var(--teal);
  color: var(--white);
}

.yd-inquiry-body {
  padding: 28px 28px 32px;
}

.yd-inq-field {
  margin-bottom: 18px;
}

.yd-inq-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
}

.yd-inq-label i {
  color: var(--teal);
  margin-right: 4px;
  font-size: 0.68rem;
}

.yd-inq-input {
  width: 100%;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--gray-line);
  border-radius: 5px;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.yd-inq-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 143, 160, 0.1);
}

.yd-inq-input::placeholder {
  color: var(--text-light);
}

.yd-inq-textarea {
  resize: vertical;
  min-height: 90px;
}

.yd-inq-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(26, 143, 160, 0.3);
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  margin-top: 6px;
}

.yd-inq-submit:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 143, 160, 0.45);
}

/* Responsive sidebar on mobile */
@media (max-width: 991.98px) {
  .yd-sb-pills {
    grid-template-columns: repeat(2, 1fr);
  }
  .yd-sb-pills-2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575.98px) {
  .yd-tabs__inner {
    gap: 0;
  }

  .yd-tab-btn {
    padding: 12px 16px;
    font-size: 0.6rem;
  }

  .yd-main {
    padding: 28px 0 48px;
  }

  .yd-inquiry-body {
    padding: 20px 18px 24px;
  }

  .yd-inquiry-header {
    padding: 18px 20px;
  }
}

/* ====================DETAIL END========================= */
/* ====================PAGE START========================= */

.oy-page-hero {
  position: relative;
  width: 100%;
  padding: 80px 0 64px;
  overflow: hidden;
  background: var(--off-white);
  /* açık gri-beyaz arka plan */
  border-bottom: 1px solid var(--gray-line);
}

/* sol üst köşe teal vurgu çizgisi */
.oy-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

/* büyük opak watermark yazısı */
.oy-page-hero__watermark {
  position: absolute;
  bottom: -14px;
  left: 52.8%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(11, 30, 61, 0.04);
  /*navyçoksaydam*/
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  -webkit-transform:;
  -moz-transform:;
  -ms-transform:;
  -o-transform:;
}

/* breadcrumb navigasyonu */
.oy-page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
  font-family: var(--font-body);
}

.oy-page-hero__breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition);
}

.oy-page-hero__breadcrumb a:hover {
  color: var(--teal);
}

.oy-page-hero__breadcrumb .bc-sep {
  color: var(--teal);
  font-size: 0.45rem;
}

/* H1 başlık */
.oy-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.15;
  color: var(--navy);
}

.oy-page-hero__title em {
  font-style: italic;
  color: var(--teal);
}

/* alt dekoratif çizgi grubu */
.oy-page-hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  margin-top: 22px;
}

.oy-page-hero__divider span {
  display: block;
  height: 1px;
  width: 200px;
  background: linear-gradient(90deg, transparent, var(--teal));
}

.oy-page-hero__divider span:last-child {
  background: linear-gradient(270deg, transparent, var(--teal));
}

.oy-page-hero__divider i {
  color: var(--teal);
  font-size: 1.2rem;
}

/* ============================================================
     İLETİŞİM SECTION — 3 kolon: Bilgiler | Harita | Form
  ============================================================ */
.oy-contact-section {
  padding: 88px 0 108px;
  background: var(--white);
  /* tam beyaz gövde */
}

/* ============================================================
     KOL 1: İLETİŞİM BİLGİLERİ KARTI
  ============================================================ */
.oy-info-card {
  background: var(--off-white);
  /* hafif gri kart zemini */
  border: 1px solid var(--gray-line);
  border-radius: 3px;
  padding: 44px 38px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* sol üst dikey teal vurgu */
.oy-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 64px;
  background: var(--teal);
}

.oy-info-card__tag {
  font-family: var(--font-body);
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}

.oy-info-card__heading {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 8px;
}

.oy-info-card__sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* tek bir iletişim satırı */
.oy-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--gray-line);
}

.oy-contact-item:last-of-type {
  border-bottom: 1px solid var(--gray-line);
}

/* yuvarlak ikon kabı */
.oy-contact-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.95rem;
  background: var(--teal-pale);
  /* açık teal dolu arka plan */
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.oy-contact-item:hover .oy-contact-item__icon {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.oy-contact-item__body strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.oy-contact-item__body a,
.oy-contact-item__body p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  text-decoration: none;
  margin: 0;
  line-height: 1.55;
  transition: color var(--transition);
}

.oy-contact-item__body a:hover {
  color: var(--teal);
}

/* sosyal medya ikonu grubu */
.oy-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.oy-socials a {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gray-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.85rem;
  text-decoration: none;
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}

.oy-socials a:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-pale);
}

/* ============================================================
     KOL 2: HARİTA SARMALAYICI
  ============================================================ */
.oy-map-wrap {
  height: 100%;
  min-height: 380px;
  border: 1px solid var(--gray-line);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.oy-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
  border: 0;
  /* hafif teal ton filtresi */
  filter: saturate(0.8) brightness(0.97);
}

/* harita üstü konumuz etiketi */
.oy-map-label {
  position: absolute;
  top: 100px;
  left: 14px;
  background: var(--navy);
  color: var(--teal-pale);
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
     KOL 3: FORM KARTI
  ============================================================ */
.oy-form-card {
  background: var(--navy);
  /* koyu navy form paneli */
  border-radius: 3px;
  padding: 44px 38px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* sağ üst köşe teal çizgi dekorasyonu */
.oy-form-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 3px;
  background: var(--teal);
}

.oy-form-card__tag {
  font-family: var(--font-body);
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 10px;
  display: block;
}

.oy-form-card__heading {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 26px;
}

/* form grup container */
.oy-fg {
  margin-bottom: 18px;
}

.oy-fg label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 7px;
}

/* input & textarea */
.oy-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  padding: 12px 15px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 300;
  outline: none;
  -webkit-appearance: none;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.oy-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.oy-input:focus {
  border-color: var(--teal-light);
  background: rgba(38, 181, 204, 0.07);
}

textarea.oy-input {
  resize: none;
  height: 110px;
}

/* konu radio buton grubu */
.oy-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.oy-radio-lbl {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.oy-radio-lbl input {
  display: none;
}

.oy-radio-dot {
  width: 13px;
  height: 13px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--transition);
}

.oy-radio-lbl input:checked ~ span {
  color: var(--white);
}

.oy-radio-lbl input:checked + .oy-radio-dot {
  border-color: var(--teal-light);
}

.oy-radio-lbl input:checked + .oy-radio-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--teal-light);
}

/* gönder butonu */
.oy-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 13px 34px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition:
    background var(--transition),
    transform var(--transition);
}

.oy-btn-submit:hover {
  background: var(--teal-light);
  transform: translateX(3px);
}

/* KVKK onay checkbox satırı */
.oy-check-lbl {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  line-height: 1.5;
}

.oy-check-lbl input {
  display: none;
}

.oy-check-box {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.oy-check-lbl input:checked + .oy-check-box {
  border-color: var(--teal-light);
  background: var(--teal-light);
}

.oy-check-lbl input:checked + .oy-check-box::after {
  content: '✓';
  font-size: 0.6rem;
  color: var(--navy-deep);
  font-weight: bold;
}

.oy-check-lbl a {
  color: var(--sky);
  text-decoration: none;
}

.oy-check-lbl a:hover {
  text-decoration: underline;
}

/* ============================================================
     RESPONSIVE AYARLAR
  ============================================================ */
@media (max-width: 991.98px) {
  /* harita yüksekliği küçülsün */
  .oy-map-wrap,
  .oy-map-wrap iframe {
    min-height: 300px;
  }

  /* kart padding azalsın */
  .oy-info-card,
  .oy-form-card {
    padding: 34px 26px;
  }
}

@media (max-width: 767.98px) {
  .oy-contact-section {
    padding: 120px 10px 60px 10px;
  }

  .oy-page-hero {
    padding: 120px 10px 60px 10px;
  }

  .oy-page-hero__watermark {
    letter-spacing: 0;
    left: 50%;
    bottom: -10px;
  }

  .oy-map-wrap,
  .oy-map-wrap iframe {
    min-height: 250px;
  }
}
/* ====================PAGE END========================= */
/* ====================ABOUT START========================= */
.ab-page-hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-line);
}

.ab-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.ab-page-hero__watermark {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(11, 30, 61, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.ab-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
}

.ab-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition);
}

.ab-breadcrumb a:hover {
  color: var(--teal);
}

.ab-breadcrumb .bc-sep {
  color: var(--teal);
  font-size: 0.45rem;
}

.ab-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.15;
  color: var(--navy);
}

.ab-page-hero__title em {
  font-style: italic;
  color: var(--teal);
}

.ab-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.ab-divider span {
  display: block;
  height: 1px;
  width: 70px;
  background: linear-gradient(90deg, transparent, var(--teal));
}

.ab-divider span:last-child {
  background: linear-gradient(270deg, transparent, var(--teal));
}

/* ============================================================
     HİKAYE SECTION
     — büyük italik alıntı, gövde metni, görsel + rozet
  ============================================================ */
.ab-story {
  padding: 96px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* arka plan dekoratif yıl yazısı */
.ab-story::before {
  content: '1982';
  position: absolute;
  top: 24px;
  right: -16px;
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 15rem);
  font-weight: 600;
  color: rgba(11, 30, 61, 0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* sol taraf: içerik */
.ab-story__label {
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
  display: block;
}

/* büyük italik alıntı bloğu */
.ab-story__quote {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.38;
  color: var(--navy);
  border-left: 3px solid var(--teal);
  padding-left: 26px;
  margin-bottom: 36px;
}

.ab-story__quote em {
  font-style: normal;
  color: var(--teal);
}

/* gövde metin bloğu */
.ab-story__body {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-mid);
}

.ab-story__body p + p {
  margin-top: 16px;
}

/* buton grubu */
.ab-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* sağ taraf: görsel sarmalayıcı */
.ab-story__img-wrap {
  position: relative;
}

.ab-story__img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

/* görsel üstüne binen istatistik rozeti */
.ab-story__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 26px;
  border-radius: 3px;
  border-left: 3px solid var(--teal);
}

.ab-story__badge .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  color: var(--teal-light);
}

.ab-story__badge .num sup {
  font-size: 45%;
  vertical-align: super;
}

.ab-story__badge .lbl {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
  display: block;
}

/* butonlar */
.ab-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}

.ab-btn-primary:hover {
  background: var(--teal-light);
  color: var(--white);
  transform: translateX(3px);
}

.ab-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-line);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition:
    border-color var(--transition),
    color var(--transition);
}

.ab-btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ============================================================
     İSTATİSTİK BANDI
  ============================================================ */
.ab-stats {
  padding: 72px 0;
  background: var(--navy);
  /* koyu navy bant */
  position: relative;
  overflow: hidden;
}

/* arka plan desen çizgisi */
.ab-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 80px
  );
  pointer-events: none;
}

.ab-stat-item {
  text-align: center;
  padding: 16px 8px;
  position: relative;
}

/* dikey ayırıcı */
.ab-stat-item + .ab-stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.ab-stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--sky);
  /* açık mavi rakamlar */
  display: block;
  margin-bottom: 6px;
}

.ab-stat-item__num sup {
  font-size: 42%;
  vertical-align: super;
  color: var(--teal-light);
}

.ab-stat-item__label {
  font-family: var(--font-body);
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 575.98px) {
  /* mobilde dikey çizgi kaldırılsın */
  .ab-stat-item + .ab-stat-item::before {
    display: none;
  }

  .ab-stat-item + .ab-stat-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ============================================================
     MİSYON / VİZYON / DEĞERLER — 4'lü kart grid
  ============================================================ */
.ab-values {
  padding: 88px 0;
  background: var(--off-white);
  /* hafif gri zemin */
}

.ab-section-header {
  text-align: center;
  margin-bottom: 52px;
}

.ab-section-header__tag {
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 10px;
}

.ab-section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 300;
  color: var(--navy);
}

.ab-section-header__title em {
  font-style: italic;
  color: var(--teal);
}

/* değer kartı */
.ab-val-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 3px;
  padding: 40px 34px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.ab-val-card:hover {
  border-color: var(--teal-pale);
  box-shadow: 0 8px 32px rgba(26, 143, 160, 0.08);
}

/* üst teal şerit */
.ab-val-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal-pale);
  transition: background var(--transition);
}

.ab-val-card:hover::before {
  background: var(--teal);
}

/* ikon dairesi */
.ab-val-card__icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--teal-pale);
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.15rem;
  margin-bottom: 22px;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.ab-val-card:hover .ab-val-card__icon {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.ab-val-card__tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}

.ab-val-card__heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ab-val-card__text {
  font-family: var(--font-body);
  font-size: 0.87rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ============================================================
     EKİP SECTION
  ============================================================ */
.ab-team {
  padding: 88px 0;
  background: var(--white);
}

/* ekip kartı */
.ab-team-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}

.ab-team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.ab-team-card:hover img {
  transform: scale(1.04);
}

/* gradient overlay */
.ab-team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(11, 30, 61, 0.88) 0%,
    rgba(11, 30, 61, 0.2) 55%,
    transparent 80%
  );
  transition: opacity var(--transition);
}

.ab-team-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 22px;
}

.ab-team-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 3px;
}

.ab-team-card__role {
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
}

/* sosyal ikonlar: hover'da kaydırarak gelir */
.ab-team-card__socials {
  display: flex;
  gap: 7px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.ab-team-card:hover .ab-team-card__socials {
  opacity: 1;
  transform: translateY(0);
}

.ab-team-card__socials a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.72rem;
  text-decoration: none;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.ab-team-card__socials a:hover {
  border-color: var(--sky);
  background: rgba(78, 201, 220, 0.2);
}

/* ============================================================
     CTA BANT
  ============================================================ */
.ab-cta {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* sağ üst köşe dekoratif çizgi */
.ab-cta::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 120px solid rgba(26, 143, 160, 0.12);
  border-left: 120px solid transparent;
}

.ab-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ab-cta__title em {
  font-style: italic;
  color: var(--sky);
}

.ab-cta__sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 460px;
  margin: 0 auto 34px;
  line-height: 1.7;
}

/* CTA buton grubu */
.ab-cta__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ghost butonu CTA içinde beyaz kenarlıklı */
.ab-btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition:
    border-color var(--transition),
    color var(--transition);
}

.ab-btn-ghost-white:hover {
  border-color: var(--sky);
  color: var(--sky);
}

/* ============================================================
     RESPONSIVE
  ============================================================ */
@media (max-width: 991.98px) {
  .ab-story {
    padding: 70px 0 60px;
  }

  .ab-story__badge {
    left: 10px;
    bottom: -14px;
  }

  .ab-val-card {
    padding: 32px 26px;
  }
}

@media (max-width: 767.98px) {
  .ab-page-hero {
    padding: 60px 0 50px;
  }

  .ab-story__badge {
    display: none;
  }

  .ab-stats {
    padding: 52px 0;
  }

  .ab-values,
  .ab-team {
    padding: 64px 0;
  }
}
/* ====================ABOUT END========================= */
/* ====================BLOG START========================= */
.blog-section {
  background: var(--white);
  padding: 80px 0 100px;
  font-family: var(--font-body);
}

.blog-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Filter Bar ── */
.blog-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-line);
  padding-bottom: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-filters__tabs {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-filters__tabs li a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  padding-bottom: 24px;
  position: relative;
  transition: color var(--transition);
}

.blog-filters__tabs li a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width var(--transition);
}

.blog-filters__tabs li a:hover,
.blog-filters__tabs li a.active {
  color: var(--navy);
}

.blog-filters__tabs li a:hover::after,
.blog-filters__tabs li a.active::after {
  width: 100%;
}

.blog-filters__search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gray-line);
  padding: 10px 18px;
  transition: border-color var(--transition);
}

.blog-filters__search:focus-within {
  border-color: var(--teal);
}

.blog-filters__search input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text);
  width: 180px;
  background: transparent;
}

.blog-filters__search input::placeholder {
  color: var(--text-light);
}

.blog-filters__search svg {
  color: var(--text-light);
  flex-shrink: 0;
}

/* ── Featured Post (Large) ── */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 72px;
  overflow: hidden;
  border: 1px solid var(--gray-line);
}

.blog-featured__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}

.blog-featured:hover .blog-featured__image img {
  transform: scale(1.05);
}

.blog-featured__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.blog-featured__content {
  padding: 52px 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
}

.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.blog-featured__category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
}

.blog-featured__date {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

.blog-featured__meta-sep {
  width: 1px;
  height: 12px;
  background: var(--gray-line);
}

.blog-featured__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.blog-featured__excerpt {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}

.blog-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-featured__link::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: currentColor;
  transition: width var(--transition);
}

.blog-featured__link:hover {
  color: var(--teal);
}

.blog-featured__link:hover::after {
  width: 56px;
}

/* ── Blog Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

/* ── Blog Card ── */
.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-line);
  overflow: hidden;
  transition:
    box-shadow var(--transition),
    border-color var(--transition);
  background: var(--white);
}

.blog-card:hover {
  border-color: var(--teal-pale);
  box-shadow: 0 8px 40px rgba(11, 30, 61, 0.08);
}

.blog-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.06);
}

.blog-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 5px 12px;
}

/* WhatsApp icon top-right like in the screenshot */
.blog-card__wa {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  opacity: 0;
  transition: opacity var(--transition);
  text-decoration: none;
}

.blog-card:hover .blog-card__wa {
  opacity: 1;
}

.blog-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-card__category {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
}

.blog-card__meta-sep {
  width: 1px;
  height: 10px;
  background: var(--gray-line);
}

.blog-card__date {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  text-decoration: none;
  display: block;
  transition: color var(--transition);
}

.blog-card__title:hover {
  color: var(--teal);
}

.blog-card__excerpt {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-line);
  padding-top: 20px;
  margin-top: auto;
}

.blog-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card__author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--teal-pale);
}

.blog-card__author-name {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid var(--gray-line);
  padding: 8px 16px;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.blog-card__read-more:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── Pagination ── */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 72px;
}

.blog-pagination a,
.blog-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  text-decoration: none;
  border: 1px solid var(--gray-line);
  transition: all var(--transition);
}

.blog-pagination a:hover,
.blog-pagination span.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.blog-pagination .blog-pagination__arrow {
  width: 48px;
  color: var(--text-light);
}

.blog-pagination .blog-pagination__arrow:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-container {
    padding: 0 20px;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured__content {
    padding: 36px 28px 36px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blog-filters {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-filters__tabs {
    gap: 20px;
  }

  .blog-hero {
    padding: 60px 0 50px;
  }
}

/* ── Fade-in animation ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-featured,
.blog-card {
  animation: fadeUp 0.55s var(--ease) both;
}

.blog-card:nth-child(1) {
  animation-delay: 0.05s;
}

.blog-card:nth-child(2) {
  animation-delay: 0.12s;
}

.blog-card:nth-child(3) {
  animation-delay: 0.19s;
}

.blog-card:nth-child(4) {
  animation-delay: 0.26s;
}

.blog-card:nth-child(5) {
  animation-delay: 0.33s;
}

.blog-card:nth-child(6) {
  animation-delay: 0.4s;
}
/* ====================BLOG END========================= */

/* ====================BLOG DETAIL START========================= */
.bd-layout {
  max-width: 1340px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px;
  align-items: start;
  font-family: var(--font-body);
}

.bd-article {
  animation: fadeUp 0.55s 0.1s var(--ease) both;
}

/* Lead paragraph */
.bd-article__lead {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.65;
  letter-spacing: 0.02em;
  border-left: 3px solid var(--teal);
  padding-left: 24px;
  margin-bottom: 36px;
}

/* Body text */
.bd-article__body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 24px;
}

.bd-article__body h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin: 48px 0 18px;
  line-height: 1.25;
}

.bd-article__body h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 36px 0 14px;
}

/* Inline image */
.bd-article__img-wrap {
  margin: 44px 0;
}

.bd-article__img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.bd-article__img-caption {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.12em;
  margin-top: 12px;
  padding-left: 2px;
}

/* Pull quote */
.bd-article__pullquote {
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  padding: 36px 0;
  margin: 44px 0;
  text-align: center;
}

.bd-article__pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
  letter-spacing: 0.02em;
  max-width: 680px;
  margin: 0 auto 14px;
}

.bd-article__pullquote cite {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-style: normal;
}

/* Key facts grid */
.bd-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-line);
  border: 1px solid var(--gray-line);
  margin: 44px 0;
}

.bd-facts__item {
  background: var(--off-white);
  padding: 28px 24px;
  text-align: center;
}

.bd-facts__value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.bd-facts__value em {
  font-size: 18px;
  color: var(--teal);
  font-style: normal;
}

.bd-facts__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Tags + Share row */
.bd-article__footer {
  border-top: 1px solid var(--gray-line);
  margin-top: 56px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.bd-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bd-tags__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-right: 4px;
}

.bd-tags a {
  display: inline-block;
  border: 1px solid var(--gray-line);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: all var(--transition);
}

.bd-tags a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.bd-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bd-share__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

.bd-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-line);
  color: var(--text-light);
  text-decoration: none;
  transition: all var(--transition);
}

.bd-share a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* Author card */
.bd-author {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--gray-line);
  padding: 32px;
  margin-top: 48px;
  background: var(--off-white);
}

.bd-author__avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--teal-pale);
}

.bd-author__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.bd-author__role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.bd-author__bio {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ══════════════════════════════════════
     SIDEBAR
  ══════════════════════════════════════ */
.bd-sidebar {
  animation: fadeUp 0.55s 0.2s var(--ease) both;
}

.bd-sidebar__widget {
  margin-bottom: 40px;
}

.bd-sidebar__widget-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-line);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bd-sidebar__widget-title::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--teal);
  max-width: 30px;
}

/* Table of Contents */
.bd-toc {
  list-style: none;
  counter-reset: toc-counter;
}

.bd-toc li {
  counter-increment: toc-counter;
  border-bottom: 1px solid var(--gray-line);
}

.bd-toc li:last-child {
  border-bottom: none;
}

.bd-toc a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  text-decoration: none;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
  transition: color var(--transition);
}

.bd-toc a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--teal-pale);
  font-weight: 500;
  min-width: 26px;
  transition: color var(--transition);
}

.bd-toc a:hover {
  color: var(--navy);
}

.bd-toc a:hover::before {
  color: var(--teal);
}

/* CTA Widget */
.bd-cta-widget {
  background: var(--navy);
  padding: 32px 28px;
  text-align: center;
}

.bd-cta-widget__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--teal-light);
}

.bd-cta-widget__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.bd-cta-widget__text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}

.bd-cta-widget__btn {
  display: block;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 20px;
  transition: background var(--transition);
}

.bd-cta-widget__btn:hover {
  background: var(--teal-light);
}

.bd-cta-widget__btn + .bd-cta-widget__btn {
  margin-top: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bd-cta-widget__btn + .bd-cta-widget__btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Recent Posts */
.bd-recent-post {
  display: flex;
  gap: 14px;
  border-bottom: 1px solid var(--gray-line);
  padding-bottom: 18px;
  margin-bottom: 18px;
  text-decoration: none;
}

.bd-recent-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bd-recent-post__img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
}

.bd-recent-post__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  display: block;
  margin-bottom: 5px;
}

.bd-recent-post:hover .bd-recent-post__title {
  color: var(--teal);
}

.bd-recent-post__date {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

/* Categories */
.bd-categories {
  list-style: none;
}

.bd-categories li {
  border-bottom: 1px solid var(--gray-line);
}

.bd-categories li:last-child {
  border-bottom: none;
}

.bd-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 12px;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.bd-categories a:hover {
  color: var(--teal);
}

.bd-categories__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--off-white);
  font-size: 10px;
  color: var(--text-light);
  font-weight: 500;
  border: 1px solid var(--gray-line);
  transition: all var(--transition);
}

.bd-categories a:hover .bd-categories__count {
  background: var(--teal-pale);
  border-color: var(--teal-pale);
  color: var(--teal);
}

/* Sticky sidebar */
.bd-sidebar-sticky {
  position: sticky;
  top: 30px;
}

/* ══════════════════════════════════════
     RELATED POSTS
  ══════════════════════════════════════ */
.bd-related {
  background: var(--off-white);
  padding: 80px 0;
  border-top: 1px solid var(--gray-line);
}

.bd-related__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}

.bd-related__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

.bd-related__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bd-related__title em {
  color: var(--teal);
  font-style: italic;
  font-weight: 300;
}

.bd-related__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

.bd-related__link::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width var(--transition);
}

.bd-related__link:hover {
  color: var(--teal);
}

.bd-related__link:hover::after {
  width: 46px;
}

.bd-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Related card — lightweight version */
.bd-rel-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition:
    box-shadow var(--transition),
    border-color var(--transition);
}

.bd-rel-card:hover {
  border-color: var(--teal-pale);
  box-shadow: 0 6px 28px rgba(11, 30, 61, 0.08);
}

.bd-rel-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}

.bd-rel-card:hover .bd-rel-card__img {
  transform: scale(1.05);
}

.bd-rel-card__img-wrap {
  overflow: hidden;
  position: relative;
}

.bd-rel-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 5px 11px;
}

.bd-rel-card__body {
  padding: 22px 22px 26px;
}

.bd-rel-card__date {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.bd-rel-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.bd-rel-card:hover .bd-rel-card__title {
  color: var(--teal);
}

/* ══════════════════════════════════════
     ANIMATIONS
  ══════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════ */
@media (max-width: 1100px) {
  .bd-layout {
    grid-template-columns: 1fr 280px;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .bd-layout {
    grid-template-columns: 1fr;
    padding: 56px 24px 80px;
    gap: 56px;
  }

  .bd-sidebar-sticky {
    position: static;
  }

  .bd-hero {
    height: 480px;
  }

  .bd-hero__content {
    padding: 0 24px 44px;
  }

  .bd-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .bd-related__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bd-related__inner {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .bd-hero {
    height: 400px;
  }

  .bd-facts {
    grid-template-columns: 1fr 1fr;
  }

  .bd-facts__item:last-child {
    grid-column: 1 / -1;
  }

  .bd-related__grid {
    grid-template-columns: 1fr;
  }

  .bd-article__img-wrap img {
    height: 240px;
  }

  .bd-author {
    flex-direction: column;
    text-align: center;
  }

  .bd-article__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ====================BLOG DETAIL END========================= */
/*filter select2*/
.select2-container--open .select2-dropdown--below {
  width: 150.267px !important;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #d9efff !important;
}
/*filter select2*/

/*SIDEBAR START*/
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 40, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.sidebar-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  max-width: 88vw;
  height: 100%;
  background: var(--navy);
  z-index: 99999;
  transform: translateX(-100%);
  transition: transform 0.38s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sidebar.open {
  transform: translateX(0);
}
.sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--teal) 30%,
    var(--teal-light) 70%,
    transparent
  );
  opacity: 0.35;
  pointer-events: none;
}

.sb-accent-bar {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--teal) 0%,
    var(--teal-light) 60%,
    var(--sky) 100%
  );
  flex-shrink: 0;
}

.sb-header {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}
.sb-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--white);
  text-transform: uppercase;
}
.sb-logo span {
  color: var(--teal-light);
}

.sb-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  border: none;
  transition: all var(--transition);
}
.sb-close:hover {
  background: rgba(26, 143, 160, 0.3);
  color: var(--white);
}

.sb-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6px 0 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}
.sb-body::-webkit-scrollbar {
  width: 3px;
}
.sb-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.sb-section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 18px 20px 8px;
}

.sb-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  cursor: pointer;
  transition: background var(--transition);
}
.sb-nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.sb-nav-item.active {
  background: rgba(26, 143, 160, 0.1);
}

.sb-nav-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  flex: 1;
  text-decoration: none;
}

.sb-nav-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--teal-light);
  flex-shrink: 0;
  transition: all var(--transition);
}
.sb-nav-item:hover .sb-nav-icon,
.sb-nav-item.active .sb-nav-icon {
  background: rgba(26, 143, 160, 0.22);
  color: var(--sky);
}

.sb-nav-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.3;
}
.sb-nav-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 300;
}

.sb-chevron {
  color: rgba(255, 255, 255, 0.22);
  font-size: 10px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.sb-nav-item.open .sb-chevron {
  transform: rotate(90deg);
  color: var(--teal-light);
}

.sb-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
  background: rgba(0, 0, 0, 0.18);
}
.sb-submenu.open {
  max-height: 400px;
}

.sb-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px 9px 70px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12.5px;
  font-weight: 300;
  border-left: 2px solid transparent;
  transition: all var(--transition);
}
.sb-sub-item i {
  font-size: 5px;
  color: var(--teal);
  opacity: 0.7;
}
.sb-sub-item:hover {
  color: var(--teal-light);
  background: rgba(255, 255, 255, 0.03);
  border-left-color: var(--teal);
  padding-left: 76px;
}

.sb-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 8px 20px;
}

.sb-footer {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.sb-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}
.sb-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  text-decoration: none;
  transition: color var(--transition);
}
.sb-contact a:hover {
  color: var(--teal-light);
}
.sb-contact a i {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--teal);
}

.sb-cta {
  display: block;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity var(--transition);
}
.sb-cta:hover {
  opacity: 0.85;
}
/*SIDEBAR END*/
.w-0 {
  width: 0 !important;
}
.h-0 {
  height: 0 !important;
}
/*rates tables start*/
.oy-pricing {
  font-family: 'Jost', sans-serif;
  padding: 2rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.oy-table-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 51, 102, 0.15);
  background: #f7f8fa;
}

/* Her kolon kendi sağ border'ı ile ayrılıyor */
.oy-season-col {
  border-right: 1px solid rgba(0, 51, 102, 0.12);
}
.oy-season-col--winter {
  border-right: none;
}

.oy-season-header {
  background: #1a2e5a;
  color: #ffffff;
  text-align: center;
  padding: 14px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* İki kolonlu mini header (Month / Price) */
.oy-col-headers-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f0f2f5;
  border-bottom: 1px solid rgba(0, 51, 102, 0.1);
}

.oy-col-header {
  padding: 10px 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a2e5a;
}

/* Her satır: 2 kolonlu grid */
.oy-row-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(0, 51, 102, 0.07);
  transition: background 0.15s;
}
.oy-row-single.last {
  border-bottom: none;
}
.oy-row-single:hover {
  background: rgba(26, 46, 90, 0.04);
}
.oy-row-single:nth-child(even) {
  background: rgba(26, 46, 90, 0.018);
}
.oy-row-single:nth-child(even):hover {
  background: rgba(26, 46, 90, 0.05);
}

.oy-cell {
  padding: 16px 20px;
  font-size: 13px;
  color: #1a2e5a;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.oy-cell.month {
  font-weight: 400;
  color: #4a5568;
  font-size: 12px;
}

.oy-cell.price-right {
  justify-content: flex-end;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: #1a2e5a;
}

.oy-price-amount {
  font-weight: 600;
  font-size: 20px;
}

.oy-price-unit {
  font-size: 11px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: #8899aa;
  margin-left: 4px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  align-self: flex-end;
  margin-bottom: 2px;
}

.oy-dash {
  font-size: 18px;
  color: #c0ccd8;
  font-weight: 300;
}
/*rates tables end*/

/*charter form select2 start*/
#dport + .select2-container .select2-selection--single,
#aport + .select2-container .select2-selection--single {
  height: 48px !important;
  border-radius: 10px !important;
  border: 1px solid #dcdfe6 !important;
  background: #f1f3f5 !important;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

#dport + .select2-container .select2-selection__rendered,
#aport + .select2-container .select2-selection__rendered {
  line-height: 48px !important;
  color: #2c3e50 !important;
  margin-left: 15px !important;
}

#dport + .select2-container .select2-selection__placeholder,
#aport + .select2-container .select2-selection__placeholder {
  color: #9aa5b1 !important;
}

#dport + .select2-container .select2-selection__arrow,
#aport + .select2-container .select2-selection__arrow {
  height: 100% !important;
}

#dport + .select2-container--focus .select2-selection--single,
#aport + .select2-container--focus .select2-selection--single {
  border-color: #0d6efd !important;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15) !important;
  background: #fff !important;
}
/*charter form select2 end*/

/*404 start*/
.page-404 {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

/* Arka plan dekoratif dalgalar */
.page-404::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(180deg, transparent 0%, #e8f5f3 100%);
  z-index: 0;
}

.wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.18;
}

.page-404__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  width: 100%;
}

/* Büyük 404 */
.e404-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 20vw, 220px);
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #1a7a6e;
  letter-spacing: 0.08em;
  user-select: none;
  position: relative;
}

/* İçindeki gemi ikonu */
.e404-number::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(80px, 12vw, 140px);
  height: clamp(80px, 12vw, 140px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M30 130 Q60 110 100 125 Q140 140 170 120 L160 150 Q130 168 100 155 Q70 142 40 158 Z' fill='%231a7a6e' opacity='.12'/%3E%3Cpath d='M70 125 L70 80 L100 50 L130 80 L130 125' stroke='%231a7a6e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3Cpath d='M55 125 L145 125 L155 148 Q130 162 100 150 Q70 138 45 150 Z' stroke='%231a7a6e' stroke-width='2' fill='%231a7a6e' fill-opacity='.08' stroke-linejoin='round'/%3E%3Cpath d='M70 92 L100 55 L100 92 Z' fill='%231a7a6e' fill-opacity='.2'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.e404-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px 0 28px;
}
.e404-divider::before,
.e404-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: #1a7a6e;
  opacity: 0.4;
}
.e404-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a7a6e;
  opacity: 0.5;
}

.e404-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1.2;
}

.e404-title em {
  font-style: italic;
  color: #1a7a6e;
}

.e404-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
  color: #666;
  letter-spacing: 0.03em;
  margin-bottom: 48px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* Butonlar */
.e404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary-404 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a2e;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.25s;
}
.btn-primary-404:hover {
  background: #1a7a6e;
}

.btn-outline-404 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #1a1a2e;
  color: #1a1a2e;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.25s;
  background: transparent;
}
.btn-outline-404:hover {
  background: #1a1a2e;
  color: #fff;
}

/* Hızlı linkler */
.e404-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid #eee;
  padding-top: 32px;
}

.e404-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  text-decoration: none;
  color: #1a1a2e;
  transition: color 0.2s;
  border-right: 1px solid #eee;
}
.e404-link:last-child {
  border-right: none;
}
.e404-link:hover {
  color: #1a7a6e;
}

.e404-link-icon {
  width: 36px;
  height: 36px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.e404-link:hover .e404-link-icon {
  border-color: #1a7a6e;
  background: #e8f5f3;
}
.e404-link-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.e404-link-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .contact-bar {
    gap: 16px;
    font-size: 10px;
  }
  .e404-link {
    padding: 12px 16px;
  }
  .e404-link-label {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .e404-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary-404,
  .btn-outline-404 {
    justify-content: center;
  }
  .e404-links {
    gap: 0;
  }
  .e404-link {
    border-right: none;
    border-bottom: 1px solid #eee;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 0;
  }
  .e404-link:last-child {
    border-bottom: none;
  }
  .e404-links {
    padding-top: 24px;
    text-align: left;
  }
}
/*404 end*/
