/* ==========================================================
   v2 — Genel düzen, tipografi, 2x2 yat kart grid, sailing scene
   ========================================================== */

/* TR/EN görünürlük yardımcıları */
body.lang-tr .lang-en-only { display: none !important; }
body.lang-en .lang-tr-only { display: none !important; }

/* Section kicker / eyebrow soldaki dekoratif çizgi tüm sayfalarda kapalı */
.section-kicker::before, .eyebrow::before { display: none !important; }
.section-kicker, .eyebrow { gap: 0 !important; }

/* ==========================================================
   NAVBAR — her zaman beyaz
   ========================================================== */
.site-header,
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom: 1px solid rgba(8, 35, 59, 0.08);
  box-shadow: 0 6px 24px rgba(8, 35, 59, 0.06);
  backdrop-filter: saturate(180%) blur(8px);
}

.site-header .navbar-brand,
.site-header .navbar-brand:hover,
.site-header .navbar-brand:focus { color: var(--navy-dark) !important; }
.site-header .brand-mark { color: var(--accent) !important; }

.site-header .nav-link { color: var(--navy-dark) !important; }
.site-header .nav-link:hover,
.site-header .nav-link:focus { color: var(--accent) !important; }

.site-header .navbar-toggler {
  border: 1px solid rgba(8, 35, 59, 0.18) !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: 0 2px 6px rgba(8, 35, 59, 0.06);
}
.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(33, 108, 153, 0.18);
  outline: none;
}
.site-header .navbar-toggler-icon {
  width: 24px !important;
  height: 24px !important;
  filter: none !important;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%230f2536' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 8h22M4 15h22M4 22h22'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
}

/* Hero artık navbar'ın altından başlamasın diye üstten boşluk */
.hero-section { min-height: calc(100vh - 74px); }

/* ==========================================================
   NAVBAR — Aksiyon çubuğu (TR/EN, Giriş, Rezervasyon)
   ========================================================== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 28px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  background: #eef2f6;
  border-radius: 999px;
  padding: 3px;
  gap: 0;
}

.lang-switch button {
  border: none;
  background: transparent;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #5b6b7a;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-switch button.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 6px rgba(33, 108, 153, 0.32);
}

.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-dark);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-login:hover { color: var(--accent); background: rgba(33, 108, 153, 0.06); }

.nav-login svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav-reserve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 11px 22px;
  border-radius: 12px;
  text-decoration: none;
  text-transform: none;
  transition: background 0.2s, transform 0.18s;
  box-shadow: 0 8px 22px rgba(33, 108, 153, 0.28);
}

.nav-reserve:hover { background: var(--accent-hover); transform: translateY(-1px); }

@media (max-width: 991px) {
  .nav-actions {
    margin: 18px 0 4px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }
  .nav-reserve { width: 100%; justify-content: center; }
  .navbar-collapse {
    background: #fff;
    margin-top: 12px;
    padding: 14px 16px 22px;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(8, 35, 59, 0.08);
  }
  .navbar-nav .nav-link { margin: 0 !important; padding: 10px 4px !important; font-size: 0.84rem; }
  .navbar-toggler { padding: 6px 10px; font-size: 1.1rem; }
}

/* ==========================================================
   YAT DETAY SAYFASI — yd-* sistemi
   ========================================================== */

/* ── Hero ── */
.yd-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: stretch;
  background: var(--navy-dark);
  overflow: hidden;
}

.yd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--yd-bg);
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  z-index: 0;
}

.yd-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, #031728 0%, rgba(3,23,40,0) 14%),
    linear-gradient(180deg, rgba(3,23,40,0) 50%, rgba(3,23,40,0.88) 100%);
  pointer-events: none;
}

.yd-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 48px;
  min-height: 88vh;
  color: #fff;
}

.yd-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.64);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.yd-back:hover { color: #fff; }

.yd-hero-copy {
  margin-top: auto;
  padding-top: 48px;
}

.yd-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201,169,106,0.18);
  border: 1px solid rgba(201,169,106,0.45);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.yd-hero-copy h1 {
  margin: 0 0 10px;
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.014em;
  line-height: 1.04;
  color: #fff;
  max-width: 18ch;
}

.yd-hero-brand {
  margin: 0;
  color: rgba(255,255,255,0.52);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.yd-hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.yd-hero-price {
  display: flex;
  flex-direction: column;
}

.yd-hero-price span {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.yd-hero-price strong {
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.yd-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.yd-hero-cta:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Spec Bar ── */
.yd-specbar {
  background: #fff;
  border-bottom: 1px solid rgba(8,35,59,0.07);
}

.yd-specbar-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
}

.yd-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 28px;
  border-right: 1px solid rgba(8,35,59,0.07);
  flex: 1 1 auto;
  min-width: 100px;
}

.yd-spec:last-child { border-right: none; }

.yd-spec span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.yd-spec strong {
  color: var(--navy-dark);
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.yd-spec-brand { flex: 2 1 180px; }

/* ── Ana İçerik ── */
.yd-main { background: var(--cream); }

.yd-main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.yd-copy .section-kicker { margin-bottom: 12px; }

.yd-copy h2 {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  letter-spacing: -0.012em;
  color: var(--navy-dark);
  margin: 0 0 20px;
  line-height: 1.1;
}

.yd-desc {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin: 0 0 36px;
  max-width: 64ch;
}

.yd-features-block h3 {
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}

.yd-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.yd-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(8,35,59,0.07);
  border-radius: var(--radius-sm);
  color: var(--navy-dark);
  font-size: 0.88rem;
  font-weight: 500;
}

.yd-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Rezervasyon Paneli ── */
.yd-panel {
  position: sticky;
  top: 24px;
  background: #fff;
  border: 1px solid rgba(8,35,59,0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(8,35,59,0.1);
  overflow: hidden;
}

.yd-panel-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 28px 22px;
  background: var(--navy-dark);
  color: #fff;
}

.yd-panel-price span {
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.yd-panel-price strong {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.yd-panel-specs {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(8,35,59,0.07);
}

.yd-panel-specs > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 20px;
  border-right: 1px solid rgba(8,35,59,0.07);
  border-bottom: 1px solid rgba(8,35,59,0.07);
}

.yd-panel-specs > div:nth-child(even) { border-right: none; }

.yd-panel-specs dt {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.yd-panel-specs dd {
  margin: 0;
  color: var(--navy-dark);
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 500;
}

.yd-panel-btn {
  display: flex;
  justify-content: center;
  margin: 24px 20px 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 20px;
}

.yd-panel-note {
  margin: 12px 20px 24px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

/* ── Galeri ── */
.yd-gallery { background: var(--cream); }

.yd-gallery-head {
  margin-bottom: 32px;
}

.yd-gallery-head .section-kicker { margin-bottom: 10px; }

.yd-gallery-head h2 {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy-dark);
  margin: 0;
  letter-spacing: -0.012em;
}

.yd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.yd-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
}

.yd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.yd-gallery-item:hover img { transform: scale(1.06); }

.yd-gallery-item--hero {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: var(--radius-lg);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .yd-main-grid {
    grid-template-columns: 1fr;
  }

  .yd-panel {
    position: static;
  }
}

@media (max-width: 768px) {
  .yd-hero-inner { min-height: 80vh; padding-bottom: 36px; }
  .yd-hero-copy h1 { font-size: clamp(2.4rem, 7vw, 4rem); }

  .yd-specbar-row { gap: 0; }
  .yd-spec { padding: 18px 16px; min-width: 80px; }
  .yd-spec strong { font-size: 1rem; }
  .yd-spec-brand { display: none; }

  .yd-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .yd-gallery-item--hero { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 480px) {
  .yd-hero-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .yd-specbar-row { display: grid; grid-template-columns: repeat(2, 1fr); }
  .yd-spec { border-right: 1px solid rgba(8,35,59,0.07); border-bottom: 1px solid rgba(8,35,59,0.07); }
  .yd-spec-brand { display: flex; grid-column: span 2; }

  .yd-features { grid-template-columns: 1fr; }

  .yd-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .yd-gallery-item--hero { grid-column: span 1; }
}

/* Daha geniş container, sağ-sol boşluk daraltıldı */
.container {
  width: min(1380px, calc(100% - 32px));
}

/* Section padding rafineleştirildi */
section.section-pad,
.fleet-section.section-pad,
.gallery-section.section-pad,
.yacht-detail-intro.section-pad,
.yacht-detail-gallery.section-pad,
.yacht-detail-cta.section-pad,
.contact-section.section-pad,
.intro-section.section-pad,
.services-section.section-pad {
  padding-block: clamp(64px, 7vw, 96px);
}

/* Body anti-aliasing */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Başlık tipografisi — Playfair Display rafine */
.hero-copy h1,
.intro-grid h2,
.section-title h2,
.reservation-copy h2,
.page-hero h1,
.yacht-feature h3,
.yacht-card-v2 h3,
.yacht-detail-intro h2,
.yacht-detail-cta h2,
.yacht-detail-gallery h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.08;
}

.section-title h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
}

.hero-copy h1 {
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.05;
}

.page-hero h1 { font-weight: 500; letter-spacing: -0.012em; }

.section-kicker, .eyebrow {
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
}

body, p, li, .yacht-description, .nav-link,
input, select, textarea, button {
  font-family: var(--body-font);
}

/* ==========================================================
   Yatlar 2x2 grid (.fleet-grid-2 + .yacht-card-v2)
   ========================================================== */

.fleet-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 1.6vw, 28px);
  margin-top: 56px;
}

@media (max-width: 820px) {
  .fleet-grid-2 { grid-template-columns: 1fr; gap: 22px; }
}

/* Fleet section: tam genişlik (full-bleed) */
.fleet-section .container { width: 100% !important; max-width: none !important; padding-inline: clamp(20px, 3vw, 56px); }
.fleet-section .section-title { max-width: 1200px; margin-inline: auto; }

/* Footer — derli toplu, dengeli grid */
.site-footer {
  background: #051a2c !important;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 0 !important;
}
.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .footer-grid > div { display: flex; flex-direction: column; gap: 12px; }
.site-footer .footer-brand { color: #fff !important; margin-bottom: 6px; font-size: 1.5rem; }
.site-footer p { color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; line-height: 1.65; margin: 0 0 6px; }
.site-footer strong {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  text-decoration: none !important;
  border: none !important;
  padding: 2px 0 !important;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--gold) !important; }
.site-footer .footer-social {
  display: flex !important;
  gap: 14px;
  margin-top: 12px;
}
.site-footer .footer-social a {
  font-size: 0.84rem !important;
  padding: 6px 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 999px !important;
  transition: background 0.2s, border-color 0.2s;
}
.site-footer .footer-social a:hover {
  background: var(--gold);
  color: #0b1320 !important;
  border-color: var(--gold) !important;
}
.site-footer .footer-base {
  padding: 22px 0;
  text-align: center;
}
.site-footer .footer-base small { color: rgba(255, 255, 255, 0.45); font-size: 0.82rem; }

@media (max-width: 991px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* SSS — İletişim sayfası */
.faq-section { background: #f7fafc; padding: 80px 0 96px; }
.faq-head { text-align: center; margin-bottom: 36px; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(8, 35, 59, 0.07);
  box-shadow: 0 4px 14px rgba(8, 35, 59, 0.04);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600;
  color: var(--navy-dark);
  list-style: none;
  position: relative;
  padding-right: 56px;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.2s;
  font-weight: 300;
  line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: #5b6b7a;
  line-height: 1.7;
  font-size: 0.94rem;
}

/* Yacht detail — solda galeri, sağda spec/rez paneli */
.yd-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}
@media (max-width: 991px) { .yd-split { grid-template-columns: 1fr; } }

.yd-gallery-col { display: flex; flex-direction: column; gap: 16px; }
.yd-hero-image {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eef3f7;
  cursor: zoom-in;
}
.yd-hero-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.yd-hero-image:hover img { transform: scale(1.03); }

.yd-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.yd-thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef3f7;
  cursor: zoom-in;
}
.yd-thumb img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.2s, transform 0.4s ease; }
.yd-thumb:hover img { transform: scale(1.05); }

.yd-desc-block {
  margin-top: 16px;
  padding: 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(8, 35, 59, 0.06);
}
.yd-desc-block h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); margin: 6px 0 12px; color: var(--navy-dark); }
.yd-desc { font-size: 1rem; line-height: 1.7; color: #3a4a5b; margin: 0; }

.yd-panel-features { margin-top: 18px; padding: 18px 14px 0; border-top: 1px solid rgba(8,35,59,0.08); }
.yd-panel-features h3 { font-size: 0.84rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #5b6b7a; margin: 0 0 12px; padding: 0 6px; }
.yd-panel-features ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.yd-panel-features li {
  padding: 4px 12px 4px 32px;
  position: relative;
  font-size: 0.94rem;
  color: var(--navy-dark);
  line-height: 1.5;
}
.yd-panel-features li::before {
  content: "✓"; position: absolute; left: 12px; top: 4px; color: var(--accent); font-weight: 700;
}

/* Yacht detail panel fiyatı siyah */
.yd-panel-price strong { color: #0b1320 !important; }

/* Rezervasyon — lacivert katman + arka planda yat görseli */
.reservation-section {
  background:
    linear-gradient(135deg, rgba(3, 14, 30, 0.94) 0%, rgba(6, 22, 44, 0.92) 50%, rgba(10, 30, 58, 0.88) 100%),
    url("/images/hero-yachts.png") center/cover no-repeat !important;
}

/* Saat seçimi — multi-select görünümü, mavi rez. arka plan üzerinde belirgin */
.time-picker { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 10px !important; margin: 12px 0 14px !important; }
@media (max-width: 640px) { .time-picker { grid-template-columns: repeat(3, 1fr) !important; } }
.time-slot {
  padding: 12px 6px !important;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: #0b1320 !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
}
.time-slot:hover:not(:disabled),
.time-slot:focus:not(:disabled) {
  background: #fff !important;
  border-color: var(--gold) !important;
  transform: translateY(-1px);
}
.time-slot.selected {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #0b1320 !important;
}
.time-slot.booked, .time-slot:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  text-decoration: line-through !important;
}

/* Rezervasyon textarea (not) */
#reservationNote {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #0b1320;
  font-family: inherit;
  font-size: 0.94rem;
  line-height: 1.55;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#reservationNote:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 106, 0.22);
}
#reservationNote::placeholder { color: #6e7c8a; }

/* Toplam fiyat kutusu — siyah yazı */
.reservation-total {
  margin-top: 10px;
  padding: 14px 18px;
  background: #fff;
  color: #0b1320;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-weight: 600;
}
.reservation-total span { font-size: 0.84rem; color: #5b6b7a; letter-spacing: 0.04em; }
.reservation-total strong { font-size: 1.5rem; color: #0b1320; font-family: var(--heading-font); }
.reservation-total.is-empty { display: none; }

/* Galeri slider — yatay scroll, 3 görsel görünüyor */
.gallery-section .container { width: 100% !important; max-width: none !important; padding-inline: clamp(20px, 3vw, 56px); }
.gallery-head {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  text-align: center;
}
.gallery-head > div:first-of-type { grid-column: 2; text-align: center; }
.gallery-controls {
  grid-column: 3;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 720px) {
  .gallery-head { grid-template-columns: 1fr; }
  .gallery-head > div:first-of-type { grid-column: 1; }
  .gallery-controls { grid-column: 1; justify-content: center; }
}
.gallery-nav {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(8, 35, 59, 0.15);
  background: #fff;
  font-size: 1.1rem;
  color: var(--navy-dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gallery-nav:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.gallery-nav:disabled { opacity: 0.4; cursor: not-allowed; }

.gallery-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.gallery-slider::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 calc((100% - 6 * 10px) / 7);
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: block;
  cursor: zoom-in;
  background: #eef3f7;
}
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-slide:hover img { transform: scale(1.04); }
.gallery-slider { gap: 10px; }

@media (max-width: 1280px) {
  .gallery-slide { flex-basis: calc((100% - 5 * 10px) / 6); }
}
@media (max-width: 1100px) {
  .gallery-slide { flex-basis: calc((100% - 4 * 10px) / 5); }
}
@media (max-width: 900px) {
  .gallery-slide { flex-basis: calc((100% - 3 * 10px) / 4); }
}
@media (max-width: 720px) {
  .gallery-slide { flex-basis: calc((100% - 2 * 10px) / 3); }
}
@media (max-width: 540px) {
  .gallery-slide { flex-basis: calc((100% - 10px) / 2); aspect-ratio: 3 / 4; }
}

.yacht-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(8, 35, 59, 0.07);
  border: 1px solid rgba(8, 35, 59, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.yacht-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(8, 35, 59, 0.13);
  border-color: rgba(201, 169, 106, 0.35);
}

.yacht-card-v2-main {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--accent-soft);
}

.yacht-card-v2-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.yacht-card-v2:hover .yacht-card-v2-main img { transform: scale(1.05); }

.yacht-card-v2-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-family: var(--body-font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  z-index: 2;
}

.yacht-card-v2-detail-cta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 16px;
  background: rgba(8, 35, 59, 0.78);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.yacht-card-v2:hover .yacht-card-v2-detail-cta {
  opacity: 1;
  transform: translateY(0);
}

.yacht-card-v2-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: #fff;
}

.yacht-card-v2-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}

.yacht-card-v2-thumbs img:hover { opacity: 0.85; }

.yacht-card-v2-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 34px 34px;
  border-top: 1px solid rgba(8, 35, 59, 0.06);
}

.yacht-card-v2-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.yacht-card-v2 h3 {
  font-size: clamp(1.85rem, 2.4vw, 2.4rem);
  margin: 0;
  color: var(--navy-dark);
}

.yacht-card-v2-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.yacht-card-v2-price small {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.yacht-card-v2-price strong {
  font-family: var(--heading-font);
  font-size: 1.65rem;
  font-weight: 600;
  color: #0b1320;
  letter-spacing: -0.01em;
}

.yacht-card-v2-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  font-size: 0.95rem;
  color: var(--muted);
}

.yacht-card-v2-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.yacht-card-v2-meta span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.yacht-card-v2-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px dashed rgba(8, 35, 59, 0.08);
}

.yacht-card-v2-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.yacht-card-v2-detail::after { content: "→"; transition: transform 0.2s ease; }
.yacht-card-v2:hover .yacht-card-v2-detail::after { transform: translateX(4px); }

.yacht-card-v2-mini {
  padding: 10px 18px;
  border: 1px solid var(--navy-dark);
  background: var(--navy-dark);
  color: #fff;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease;
  cursor: pointer;
}

.yacht-card-v2-mini:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ==========================================================
   Sailing scene v2 — kaliteli yat + dalga + gökyüzü öğeleri
   ========================================================== */

.sailing-scene {
  height: 280px;
  background: linear-gradient(180deg, #f5ecd9 0%, #ecf3f7 60%, #d6e7ef 100%);
}

.sun-disc {
  position: absolute;
  top: 36px;
  right: 14%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe6a3 0%, #f1c25e 60%, rgba(241, 194, 94, 0) 100%);
  opacity: 0.95;
  animation: sun-glow 6s ease-in-out infinite;
  z-index: 1;
}

.cloud {
  position: absolute;
  top: 30px;
  width: 140px;
  height: 36px;
  background: radial-gradient(60% 100% at 30% 50%, #fff 0%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,0) 100%);
  filter: blur(2px);
  animation: cloud-drift 70s linear infinite;
  z-index: 1;
}

.cloud-1 { left: 10%; animation-duration: 80s; }
.cloud-2 { left: 40%; top: 18px; width: 180px; height: 28px; opacity: 0.8; animation-duration: 110s; animation-direction: reverse; }
.cloud-3 { right: 5%; top: 55px; width: 120px; height: 30px; opacity: 0.7; animation-duration: 95s; }

.sea-wave-back {
  animation: wave-shift-back 9s ease-in-out infinite;
  transform-origin: center;
}
.sea-wave-mid {
  animation: wave-shift-mid 7s ease-in-out infinite reverse;
  transform-origin: center;
}
.sea-wave-front {
  animation: wave-shift-front 5.5s ease-in-out infinite;
  transform-origin: center;
}

.sailing-track {
  position: absolute;
  left: -300px;
  bottom: 78px;
  width: 280px;
  height: 110px;
  animation: sail-across 38s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  z-index: 3;
}

.animated-yacht {
  width: 280px;
  height: 110px;
  filter: drop-shadow(0 16px 22px rgba(3, 23, 40, 0.32));
  animation: yacht-bob 4.5s ease-in-out infinite;
}

.yacht-wake {
  position: absolute;
  bottom: 16px;
  left: -22px;
  width: 80px;
  height: 8px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 75%);
  filter: blur(2px);
  animation: wake-pulse 1.6s ease-in-out infinite;
}

.bird {
  position: absolute;
  top: 50px;
  width: 18px;
  height: 18px;
  opacity: 0.7;
  z-index: 2;
  animation: bird-fly 36s linear infinite;
}
.bird-1 { left: -30px; }
.bird-2 { left: -30px; top: 70px; animation-delay: -10s; opacity: 0.55; }

@keyframes sun-glow {
  0%, 100% { opacity: 0.92; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes cloud-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-150vw); }
}

@keyframes bird-fly {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(55vw) translateY(-14px); }
  100% { transform: translateX(115vw) translateY(0); }
}

@keyframes wake-pulse {
  0%, 100% { opacity: 0.65; transform: scaleX(1); }
  50% { opacity: 0.95; transform: scaleX(1.18); }
}

@keyframes sail-across {
  from { transform: translateX(0); }
  to { transform: translateX(calc(100vw + 600px)); }
}

@keyframes yacht-bob {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50% { transform: translateY(-6px) rotate(0.6deg); }
}

@keyframes wave-shift-back {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-18px) translateY(3px); }
}
@keyframes wave-shift-mid {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(14px) translateY(2px); }
}
@keyframes wave-shift-front {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-10px) translateY(-1px); }
}

@media (prefers-reduced-motion: reduce) {
  .sailing-track, .animated-yacht, .yacht-wake,
  .sea-wave-back, .sea-wave-mid, .sea-wave-front,
  .cloud, .bird, .sun-disc { animation: none; }
}

/* Hero copy biraz daha geniş alan kullansın (sağ-sol boş hissini kır) */
.hero-content { padding: 120px 0 140px; }
.hero-copy { max-width: 780px; }

/* ============================================================
   HERO — Tipografi yenileme
   Playfair Display italic, daha zarif ve magazin hissi
   ============================================================ */
.hero-copy h1 {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.4rem, 6.6vw, 6.4rem);
  letter-spacing: -0.014em;
  line-height: 1.04;
}

.eyebrow {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--gold);
  opacity: 0.88;
}

.hero-copy p {
  font-size: 1.12rem;
  font-weight: 300;
  letter-spacing: 0.014em;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.70);
  max-width: 50ch;
  margin-top: 20px;
}

/* Hero butonları biraz daha sade */
.hero-actions { margin-top: 36px; gap: 12px; }

.btn-accent {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 28px;
}

.btn-outline-light {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 26px;
}

/* Section başlık ayracı kaldırıldı */
.section-title::after { display: none !important; }

/* Reservation form: time-picker 2 saat aralıkta ferah */
.time-picker { gap: 10px; }

/* ============================================================
   HAKKIMIZDA — Tam yeniden tasarım
   Dark editorial: görsel solda tam yükseklik, içerik sağda
   ============================================================ */
.intro-section {
  padding: 0;
  background: var(--navy-dark);
  overflow: hidden;
}

/* Hakkımızda iç sayfasında section beyaz arka plan */
.page-hero + .intro-section {
  margin: 80px auto;
  border-radius: var(--radius-lg);
  background: #fff !important;
  max-width: 1280px;
}
.page-hero + .intro-section .intro-grid { background: #fff !important; }
.page-hero + .intro-section .intro-copy { background: #fff !important; color: var(--navy-dark) !important; padding: 56px 48px !important; }
.page-hero + .intro-section .intro-copy p,
.page-hero + .intro-section .intro-copy .intro-highlights span,
.page-hero + .intro-section .intro-copy .intro-highlights strong {
  color: var(--navy-dark) !important;
}
.page-hero + .intro-section .intro-copy .intro-highlights span { color: #5b6b7a !important; }
.page-hero + .intro-section .intro-highlights {
  border-top-color: rgba(8, 35, 59, 0.08) !important;
  border-bottom-color: rgba(8, 35, 59, 0.08) !important;
}
.page-hero + .intro-section .intro-highlights div + div {
  border-left-color: rgba(8, 35, 59, 0.08) !important;
}
.page-hero + .intro-section .text-link { color: var(--accent) !important; }
@media (max-width: 991px) {
  .page-hero + .intro-section { margin: 48px 16px; border-radius: 16px; }
  .page-hero + .intro-section .intro-copy { padding: 40px 28px !important; }
}

.intro-grid {
  width: 100%;
  max-width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 660px;
}

/* Görsel sola al */
.intro-media {
  order: -1;
  position: relative;
}

.intro-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

/* Görsel üstüne subtle gradient */
.intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 23, 40, 0.08), rgba(3, 23, 40, 0.22));
  pointer-events: none;
}

/* Badge yeniden konumlandır: görselin sağ altı */
.intro-badge {
  position: absolute;
  left: auto;
  right: -1px;
  bottom: 48px;
  max-width: 220px;
  background: rgba(201, 169, 106, 0.12);
  border: 1px solid rgba(201, 169, 106, 0.4);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  padding: 18px 20px;
  z-index: 2;
}

.intro-badge span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
}

.intro-badge strong {
  color: var(--gold);
  font-size: 1.45rem;
  margin-top: 6px;
}

/* İçerik alanı */
.intro-copy {
  padding: clamp(48px, 6vw, 88px) clamp(36px, 5vw, 72px);
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Kicker rengi dark zemin için */
.intro-section .section-kicker {
  color: var(--gold);
  opacity: 0.85;
}

/* H2 dark zemin + italic serif */
.intro-grid h2 {
  color: #fff;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  letter-spacing: -0.012em;
  line-height: 1.1;
  margin-top: 16px;
  margin-bottom: 20px;
}

/* Paragraf */
.intro-grid p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Highlights: yatay 3-sütun stat satırı */
.intro-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 36px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-highlights div {
  padding: 24px 16px 24px 0;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: none;
}

.intro-highlights div:first-child { padding-left: 0; }
.intro-highlights div:last-child { border-right: none; padding-right: 0; }

.intro-highlights div + div { padding-left: 20px; }

.intro-highlights strong {
  color: #fff;
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.25;
}

.intro-highlights span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  line-height: 1.55;
  margin-top: 6px;
}

/* CTA linki dark zemin */
.intro-copy .text-link {
  color: var(--gold);
  border-bottom-color: rgba(201, 169, 106, 0.4);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.intro-copy .text-link:hover {
  border-bottom-color: var(--gold);
}

/* Responsive: tablet */
@media (max-width: 991px) {
  .intro-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .intro-media { order: 0; }

  .intro-media img {
    height: 420px;
    min-height: auto;
  }

  .intro-badge {
    right: auto;
    left: 24px;
    bottom: 24px;
    border-radius: var(--radius-lg);
  }

  .intro-copy {
    padding: 52px 36px;
  }

  .intro-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive: mobil */
@media (max-width: 640px) {
  .intro-section { padding: 0; } /* site.css mobile override'ını iptal et */

  .intro-media img {
    height: 300px;
    border-radius: 0; /* site.css'in 22px'ini sıfırla */
  }

  .intro-badge {
    position: absolute; /* site.css relative'ini geç */
    left: 20px;
    right: auto;
    bottom: 20px;
    margin: 0;         /* site.css -48px override */
    max-width: 200px;
    border-radius: var(--radius-lg);
  }

  .intro-copy { padding: 40px 24px 48px; }

  .intro-highlights {
    grid-template-columns: 1fr;
    border-bottom: none;
  }

  .intro-highlights div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
  }

  .intro-highlights div:last-child { border-bottom: none; }
  .intro-highlights div + div { padding-left: 0; }
}

/* ==========================================================
   HERO SECTION — v2 sol hizalı tasarım
   ========================================================== */

/* Hero copy: sol tarafa kısıtla, sola yasla */
.hero-copy {
  max-width: 620px;
  text-align: left;
  margin-left: 0 !important;
  margin-right: auto;
  padding-left: clamp(0px, 1vw, 12px);
}
.hero-content { padding-left: clamp(20px, 4vw, 56px) !important; padding-right: clamp(20px, 4vw, 56px) !important; }

/* H1: bold sans-serif */
.hero-copy h1 {
  font-family: var(--body-font);
  font-weight: 800;
  font-style: normal;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 4px;
}

/* Üst rozet (pill badge) */
.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 22px;
}

/* Canlı nokta (animasyonlu) */
.hero-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50%       { box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
}

/* Dekoratif çizgi (h1 altında) */
.hero-rule {
  width: 52px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 18px 0 20px;
}

/* Alt başlık (subtitle) */
.hero-copy > p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.01em;
  max-width: 52ch;
  margin: 0 0 24px;
}

/* Fiyat etiketi (altın yıldız + metin) */
.hero-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.hero-price-tag svg {
  flex-shrink: 0;
  opacity: 0.85;
}

/* Güven rozetleri */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 32px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

.hero-trust svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* İstatistikler */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat strong {
  font-family: var(--body-font);
  font-weight: 800;
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
}

.hero-stat span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* CTA buton grubu */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 15px 30px;
  background: var(--gold);
  color: #031728;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.22s, transform 0.18s;
}

.btn-hero-primary:hover {
  background: #d4b478;
  transform: translateY(-1px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.22s, color 0.22s;
}

.btn-hero-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* Dipnot */
.hero-footnote {
  font-size: 0.72rem !important;
  color: rgba(255, 255, 255, 0.42) !important;
  letter-spacing: 0.04em;
  margin: 0 !important;
  max-width: none !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
}

/* Scroll göstergesi (sağ alt köşe, sabit konumlandırma) */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.45);
  writing-mode: vertical-rl;
}

.hero-scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.hero-scroll-wheel {
  width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  animation: scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* Mobil */
@media (max-width: 768px) {
  .hero-copy { max-width: 100%; }
  .hero-copy h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.4rem; }
  .hero-scroll { display: none; }
  .btn-hero-primary, .btn-hero-secondary { padding: 13px 22px; font-size: 0.75rem; }
}

/* ==========================================================
   AUTH SAYFALARI — Giriş / Kayıt
   ========================================================== */
.auth-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f7 100%);
  min-height: 70vh;
}

.auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 60px rgba(8, 35, 59, 0.10);
}

.auth-card h1 {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--navy-dark);
  margin: 8px 0 12px;
}

.auth-lead {
  font-size: 0.92rem;
  color: #5b6b7a;
  margin-bottom: 28px;
  line-height: 1.55;
}

.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-form label { display: flex; flex-direction: column; gap: 6px; }
.auth-form span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #364757;
  letter-spacing: 0.02em;
}
.auth-form input {
  padding: 12px 14px;
  border: 1px solid #d6dde5;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(33, 108, 153, 0.12);
}

.auth-error {
  background: #fff0f0;
  color: #b91c1c;
  border: 1px solid #fecaca;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.86rem;
}

.auth-submit {
  margin-top: 8px;
  padding: 14px 24px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.auth-foot {
  margin: 22px 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: #5b6b7a;
}
.auth-foot a { color: var(--accent); font-weight: 600; text-decoration: none; }
.auth-foot a:hover { text-decoration: underline; }

/* ==========================================================
   HESABIM PANELİ
   ========================================================== */
.account-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f7 100%);
  min-height: 70vh;
}

.account-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.account-head h1 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--navy-dark);
  margin: 6px 0 4px;
}
.account-sub { color: #5b6b7a; font-size: 0.92rem; margin: 0; }

.account-logout {
  padding: 10px 18px;
  border: 1px solid #d6dde5;
  border-radius: 10px;
  background: #fff;
  color: var(--navy-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.account-logout:hover { border-color: var(--accent); color: var(--accent); }

.account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.account-stat {
  background: #fff;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(8, 35, 59, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.account-stat strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
}
.account-stat span {
  font-size: 0.78rem;
  color: #5b6b7a;
  letter-spacing: 0.02em;
}

.account-block {
  background: #fff;
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(8, 35, 59, 0.06);
  margin-bottom: 22px;
}
.account-block h2 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin: 0 0 16px;
}
.account-empty {
  color: #7a8a99;
  font-size: 0.92rem;
  margin: 0;
}

.reservation-list { display: flex; flex-direction: column; gap: 10px; }
.reservation-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #f5f8fb;
  border-radius: 10px;
  gap: 14px;
}
.reservation-row--approved { background: #f0fdf4; border-left: 3px solid #16a34a; }
.reservation-row--past { opacity: 0.78; }

.reservation-yacht strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.reservation-yacht span {
  display: block;
  font-size: 0.84rem;
  color: #5b6b7a;
  margin-top: 2px;
}

.reservation-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  flex-shrink: 0;
}
.reservation-badge--approved { background: #16a34a; color: #fff; }
.reservation-badge--pending { background: #fef3c7; color: #92400e; }
.reservation-badge--rejected { background: #fee2e2; color: #991b1b; }
.reservation-badge--past { background: #e2e8f0; color: #475569; }

@media (max-width: 640px) {
  .account-stats { grid-template-columns: 1fr; }
  .auth-card { padding: 36px 28px; }
  .reservation-row { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================
   WhatsApp sabit buton — sağ alt, tüm sayfalarda
   ========================================================== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.wa-float:hover,
.wa-float:focus {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0, 0, 0, 0.2);
}

.wa-float svg {
  width: 32px;
  height: 32px;
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0%   { transform: scale(0.9); opacity: 0.8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 640px) {
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::after { animation: none; }
  .wa-float:hover { transform: none; }
}
