:root {
  --navy: #08233b;
  --navy-dark: #031728;
  --accent: #216c99;
  --accent-hover: #185a82;
  --accent-soft: #e8f2f7;
  --gold: #c9a96a;
  --gold-soft: #f3ead6;
  --cream: #fbf7ef;
  --ink: #17212c;
  --muted: #5a606a;
  --line: #e8dfd2;
  --white: #fff;
  --shadow: 0 24px 70px rgba(8, 35, 59, 0.14);
  --shadow-sm: 0 12px 34px rgba(8, 35, 59, 0.06);
  --shadow-md: 0 18px 48px rgba(8, 35, 59, 0.1);

  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --space-section: clamp(80px, 9vw, 120px);
  --space-section-sm: clamp(48px, 6vw, 72px);

  --lh-heading: 1.06;
  --lh-body: 1.75;

  --heading-font: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --body-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body-font);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #031728;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(8, 35, 59, 0.1);
  box-shadow: 0 10px 30px rgba(8, 35, 59, 0.08);
}

.navbar {
  padding: 14px 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--white);
}

.site-header.is-scrolled .navbar-brand,
.site-header.is-scrolled .navbar-brand:hover,
.site-header.is-scrolled .navbar-brand:focus {
  color: var(--navy-dark);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--gold);
  transition: color 0.2s ease;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.site-header.is-scrolled .brand-mark {
  color: var(--accent);
}

/* Marka logosu — JPEG/WebP görsel */
.navbar-brand picture {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-logo-footer {
  height: 96px;
}

@media (max-width: 991px) {
  .brand-logo { height: 58px; }
}

@media (max-width: 640px) {
  .brand-logo { height: 48px; }
  .brand-logo-footer { height: 80px; }
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.site-header.is-scrolled .navbar-toggler {
  border-color: rgba(8, 35, 59, 0.22);
}

.site-header.is-scrolled .navbar-toggler-icon {
  filter: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 22px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent);
}

.site-header.is-scrolled .nav-link {
  color: var(--navy-dark);
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link:focus {
  color: var(--accent);
}

.nav-cta {
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
  padding: 10px 20px !important;
  letter-spacing: 0.12em;
}

.nav-cta:hover,
.nav-cta:focus {
  color: var(--white);
  background: var(--accent-hover);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 74px);
  color: var(--white);
  background: url("../images/hero-yachts.png") center/cover;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, #031728 0%, rgba(3, 23, 40, 0) 13%),
    linear-gradient(90deg, rgba(3, 23, 40, 0.92), rgba(3, 23, 40, 0.58) 44%, rgba(3, 23, 40, 0.18));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 160px);
  height: calc(100% + 120px);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -52%);
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 110px 0 132px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.hero-copy h1,
.intro-grid h2,
.section-title h2,
.reservation-copy h2 {
  margin: 12px 0 18px;
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero-copy h1 {
  max-width: 720px;
  margin-top: 22px;
  font-size: clamp(3.4rem, 6.4vw, 6.2rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.022em;
}

.hero-copy p {
  max-width: 46ch;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions .btn-outline-light span {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.hero-actions .btn-outline-light:hover span {
  transform: translateX(4px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-accent,
.btn-outline-light,
.mini-btn,
.submit-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-accent,
.submit-btn {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(33, 108, 153, 0.28);
}

.btn-accent {
  padding: 14px 24px;
}

.btn-outline-light {
  color: var(--white);
  padding: 13px 23px;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.btn-accent:hover,
.submit-btn:hover {
  color: var(--white);
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline-light:hover {
  color: var(--navy-dark);
  background: var(--white);
}

.section-pad {
  padding: var(--space-section) 0 var(--space-section-sm);
}

.intro-section {
  padding: var(--space-section) 0 var(--space-section-sm);
}

.intro-grid {
  display: grid;
  width: min(1360px, calc(100% - 24px));
  grid-template-columns: minmax(420px, 0.95fr) minmax(560px, 1.15fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: center;
}

.intro-copy {
  max-width: 660px;
}

.intro-grid h2,
.section-title h2,
.reservation-copy h2 {
  color: var(--navy-dark);
  font-size: clamp(2.35rem, 4.5vw, 3.8rem);
  line-height: var(--lh-heading);
}

.intro-grid p,
.reservation-copy p {
  color: var(--muted);
  line-height: var(--lh-body);
}

.intro-highlights {
  display: grid;
  gap: 12px;
  margin: 28px 0 24px;
}

.intro-highlights div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(8, 35, 59, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.intro-highlights strong,
.intro-highlights span {
  display: block;
}

.intro-highlights strong {
  color: var(--navy-dark);
  font-family: var(--heading-font);
  font-size: 1.38rem;
  line-height: 1.2;
}

.intro-highlights span {
  color: var(--muted);
  margin-top: 7px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.intro-media {
  position: relative;
}

.intro-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.intro-badge {
  position: absolute;
  left: -32px;
  bottom: 32px;
  max-width: 250px;
  padding: 20px 22px;
  color: var(--white);
  background: rgba(3, 23, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(3, 23, 40, 0.22);
  backdrop-filter: blur(12px);
}

.intro-badge span,
.intro-badge strong {
  display: block;
}

.intro-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-badge strong {
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--heading-font);
  font-size: 1.7rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.text-link {
  width: fit-content;
  color: var(--navy);
  margin-top: 12px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
}

.section-title {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-title .section-kicker {
  margin-bottom: 14px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

.fleet-section .container {
  width: min(1320px, calc(100% - 48px));
}

.fleet-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 7vw, 120px);
  margin-top: 48px;
}

.yacht-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(36px, 4.5vw, 80px);
  align-items: start;
}

.yacht-feature .yacht-feature-media {
  grid-column: 1;
  min-width: 0;
}

.yacht-feature .yacht-feature-body {
  grid-column: 2;
  min-width: 0;
}

.yacht-feature:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
}

.yacht-feature:nth-child(even) .yacht-feature-media {
  grid-column: 2;
}

.yacht-feature:nth-child(even) .yacht-feature-body {
  grid-column: 1;
}

.yacht-index {
  display: none;
}

/* media side handled by grid-column above */

.yacht-feature-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.yacht-feature-main {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--accent-soft);
  cursor: pointer;
}

.yacht-feature-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.yacht-feature-cta {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: var(--white);
  background: rgba(8, 35, 59, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.yacht-feature-main:hover .yacht-feature-cta {
  opacity: 1;
  transform: translateY(0);
}

.yacht-feature:hover .yacht-feature-main img {
  transform: scale(1.04);
}

.yacht-feature-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.yacht-feature-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}

.yacht-feature-thumbs img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.yacht-feature-body {
  display: flex;
  flex-direction: column;
}

.yacht-index {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.yacht-feature h3 {
  color: var(--navy-dark);
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.yacht-feature .yacht-description {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 52ch;
}

.yacht-feature .yacht-meta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  gap: 22px;
}

.yacht-feature .yacht-features {
  margin-top: 20px;
}

.yacht-feature .price-row {
  margin: 28px 0 18px;
  padding-top: 0;
}

.yacht-feature .mini-btn {
  width: auto;
  align-self: flex-start;
  padding: 14px 28px;
}

@media (max-width: 900px) {
  .yacht-feature,
  .yacht-feature:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .yacht-feature .yacht-feature-media,
  .yacht-feature .yacht-feature-body,
  .yacht-feature:nth-child(even) .yacht-feature-media,
  .yacht-feature:nth-child(even) .yacht-feature-body {
    grid-column: 1;
  }

  .yacht-feature .yacht-feature-media,
  .yacht-feature:nth-child(even) .yacht-feature-media {
    grid-row: 1;
  }

  .yacht-feature .mini-btn {
    width: 100%;
  }
}

.yacht-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8, 35, 59, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yacht-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.yacht-card.featured {
  border-color: rgba(33, 108, 153, 0.42);
  box-shadow: var(--shadow);
}

.yacht-card-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--accent-soft);
}

.yacht-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.yacht-card:hover .yacht-card-media img {
  transform: scale(1.04);
}

.yacht-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 36px 36px 32px;
}

.yacht-card h3 {
  color: var(--navy-dark);
  font-family: var(--heading-font);
  font-size: 2.35rem;
  font-weight: 700;
  margin: 0 0 14px;
}

.yacht-description {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 20px;
}

.yacht-meta {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.yacht-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.yacht-features span {
  color: var(--navy);
  background: var(--accent-soft);
  border: 1px solid rgba(33, 108, 153, 0.12);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 700;
}

.yacht-meta span,
.price-row span {
  display: inline-flex;
  align-items: center;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: auto 0 22px;
  padding-top: 22px;
}

.price-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.price-row strong {
  color: var(--navy-dark);
  font-family: var(--heading-font);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.price-row strong::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--gold);
}

.mini-btn {
  width: 100%;
  color: var(--white);
  background: var(--navy);
  padding: 12px 18px;
}

.mini-btn:hover {
  color: var(--white);
  background: var(--navy-dark);
}

.services-section {
  padding: var(--space-section-sm) 0 var(--space-section);
}

.services-wrap {
  width: min(1360px, calc(100% - 24px));
}

.services-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.services-title {
  max-width: none;
  margin: 0;
  text-align: left;
}

.services-title h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.35rem);
  white-space: nowrap;
}

.services-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.service-nav {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-nav:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.services-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 8px;
  scroll-padding-inline: 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 4);
  min-height: 190px;
  overflow: hidden;
  background: var(--navy-dark);
  border: 1px solid rgba(8, 35, 59, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  scroll-snap-align: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 23, 40, 0.08), rgba(3, 23, 40, 0.74) 68%, rgba(3, 23, 40, 0.94));
  z-index: 1;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 18px 16px;
}

.service-card-body span {
  display: inline-flex;
  color: #000;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-card-body strong {
  display: block;
  color: var(--white);
  margin-top: 4px;
  font-family: var(--heading-font);
  font-size: 1.35rem;
  line-height: 1.1;
}

.service-card-body p {
  color: rgba(255, 255, 255, 0.76);
  margin: 8px 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.gallery-section {
  padding: var(--space-section-sm) 0 var(--space-section);
}

.gallery-section .section-title {
  margin-bottom: 36px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr 1.15fr;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.reservation-section {
  padding: var(--space-section) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 23, 40, 0.96), rgba(8, 35, 59, 0.9)),
    url("../images/hero-yachts.png") center/cover;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.reservation-copy h2 {
  color: var(--white);
}

.reservation-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.reservation-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--navy-dark);
  font-weight: 800;
}

.form-row select,
.form-row input,
.form-split input {
  width: 100%;
  color: var(--ink);
  background: #fbfbfb;
  border: 1px solid #ddd6cc;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: 0;
}

.form-row select:focus,
.form-row input:focus,
.form-split input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(33, 108, 153, 0.16);
}

.time-picker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.time-slot {
  position: relative;
  min-height: 48px;
  color: var(--navy-dark);
  background: var(--accent-soft);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.time-slot:hover:not(:disabled),
.time-slot.selected {
  color: var(--white);
  background: var(--navy);
}

.time-slot:disabled {
  color: #a8a8a8;
  background: #f2f2f2;
  cursor: not-allowed;
}

.time-slot:disabled::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  height: 2px;
  background: #b45a5a;
  transform: rotate(-8deg);
}

.reservation-summary {
  color: var(--navy-dark);
  background: #edfafa;
  border: 1px dashed rgba(33, 108, 153, 0.72);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 700;
}

.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-btn {
  min-height: 52px;
  width: 100%;
}

.sailing-scene {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #fbf7ef;
}

.sea-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sea-wave-back {
  animation: wave-shift 10s ease-in-out infinite;
  transform-origin: center;
}

.sea-wave-front {
  animation: wave-shift 7s ease-in-out infinite reverse;
  transform-origin: center;
}

.sailing-track {
  position: absolute;
  left: -260px;
  bottom: 76px;
  width: 220px;
  height: 90px;
  animation: sail-across 26s linear infinite;
  z-index: 2;
}

.animated-yacht {
  width: 220px;
  height: 90px;
  filter: drop-shadow(0 14px 18px rgba(3, 23, 40, 0.28));
  animation: yacht-bob 3.5s ease-in-out infinite;
}

.site-footer {
  padding: var(--space-section-sm) 0;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid rgba(8, 35, 59, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer .navbar-brand,
.site-footer .navbar-brand:hover,
.site-footer .navbar-brand:focus {
  color: var(--navy-dark);
}

.site-footer .brand-mark {
  color: var(--gold);
}

.site-footer strong {
  display: block;
  color: var(--accent);
  margin-bottom: 10px;
}

.site-footer a:not(.navbar-brand) {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.site-footer a:not(.navbar-brand):hover {
  color: var(--accent);
}

.site-footer p {
  margin: 0;
  line-height: 1.8;
}

@keyframes sail-across {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(100vw + 480px));
  }
}

@keyframes yacht-bob {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }

  50% {
    transform: translateY(-4px) rotate(0.5deg);
  }
}

@keyframes wave-shift {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(-12px) translateY(2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sailing-track,
  .animated-yacht,
  .sea-wave-back,
  .sea-wave-front {
    animation: none;
  }

  .sailing-track {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .nav-cta {
    display: inline-flex;
    margin-top: 8px;
    padding: 10px 18px !important;
  }

  .hero-content,
  .intro-grid,
  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 720px;
  }

  .intro-media img {
    height: 440px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .yacht-card {
    grid-template-columns: 1fr;
  }

  .yacht-card-media {
    min-height: 280px;
  }

  .yacht-card-body {
    padding: 26px 24px;
  }

  .yacht-card.featured {
    transform: none;
  }

  .services-grid {
    gap: 18px;
  }

  .services-title h2 {
    white-space: normal;
  }

  .service-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-section,
  .hero-content {
    min-height: calc(100vh - 74px);
  }

  .hero-content {
    padding: 86px 0 104px;
  }

  .footer-grid,
  .form-split {
    grid-template-columns: 1fr;
  }

  .yacht-card-media {
    min-height: 220px;
  }

  .services-head {
    align-items: start;
    flex-direction: column;
  }

  .services-title h2 {
    white-space: normal;
  }

  .services-controls {
    align-self: flex-end;
  }

  .intro-section {
    padding: 72px 0 34px;
  }

  .intro-grid,
  .services-wrap {
    width: min(100% - 32px, 1240px);
  }

  .intro-media img {
    height: 340px;
    border-radius: 22px;
  }

  .intro-badge {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin-top: -48px;
    margin-inline: 16px;
  }

  .service-card,
  .service-card img {
    min-height: 260px;
  }

  .service-card {
    flex-basis: 82%;
  }

  .time-picker {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 220px;
  }
}

.page-hero {
  position: relative;
  padding: clamp(140px, 18vw, 220px) 0 clamp(80px, 10vw, 130px);
  color: #fff;
  text-align: center;
  background: #08233b;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg, url("../images/hero-yachts.png"));
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 23, 40, 0.45), rgba(3, 23, 40, 0.85));
  z-index: 0;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero .section-kicker {
  justify-content: center;
  color: var(--gold);
}

.page-hero h1 {
  margin: 18px auto 14px;
  max-width: 22ch;
  font-family: var(--heading-font);
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}

.page-hero-lead {
  max-width: 56ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card-tall {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  background: var(--navy-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card-tall:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card-tall img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.service-card-tall:hover img {
  transform: scale(1.08);
}

.service-card-tall::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 23, 40, 0.05), rgba(3, 23, 40, 0.78) 64%, rgba(3, 23, 40, 0.95));
}

.service-card-tall .service-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 22px;
}

.service-card-tall .service-card-body span {
  color: var(--gold);
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 700;
}

.service-card-tall .service-card-body strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.5rem;
  line-height: 1.1;
}

.service-card-tall .service-card-body p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.55;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-page-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.gallery-page-grid img:hover {
  transform: translateY(-4px);
}

.gallery-page-grid img:nth-child(7n+1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1 / 1;
}

.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 28px;
}

.contact-info > div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.contact-info span {
  display: block;
  color: var(--accent);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-info strong {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy-dark);
}

.contact-info a {
  color: inherit;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid img:nth-child(7n+1) { grid-column: span 2; aspect-ratio: 4/3; grid-row: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .services-page-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr; }
}

.yacht-hero .back-link-light {
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.yacht-hero .back-link-light:hover {
  color: #fff;
}

.yacht-hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.yacht-hero-meta strong {
  color: var(--gold);
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 500;
  margin-right: 4px;
}

.yacht-detail-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.yacht-detail-copy h2 {
  margin: 14px 0 18px;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  line-height: 1.1;
}

.yacht-detail-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

.yacht-detail-specs {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.yacht-detail-specs h3 {
  margin: 0 0 16px;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--navy-dark);
}

.yacht-detail-specs ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 8px;
}

.yacht-detail-specs li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.95rem;
}

.yacht-detail-specs li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.yacht-detail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.yacht-detail-stats > div {
  text-align: left;
}

.yacht-detail-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.yacht-detail-stats strong {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  color: var(--navy-dark);
}

.yacht-detail-gallery { background: var(--cream); }

.yacht-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.yacht-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  background: var(--accent-soft);
}

.yacht-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.yacht-gallery-item:hover img {
  transform: scale(1.05);
}

.yacht-gallery-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1 / 1;
}

.yacht-detail-cta {
  background: var(--navy-dark);
  color: #fff;
  padding-block: clamp(60px, 8vw, 100px);
}

.yacht-detail-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.yacht-detail-cta-card h2 {
  margin: 12px 0 8px;
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
}

.yacht-detail-cta-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  max-width: 56ch;
}

.yacht-detail-cta .section-kicker {
  color: var(--gold);
}

@media (max-width: 900px) {
  .yacht-detail-intro-grid { grid-template-columns: 1fr; }
  .yacht-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .yacht-gallery-large { grid-column: span 2; aspect-ratio: 4/3; grid-row: auto; }
}

@media (max-width: 640px) {
  .yacht-gallery-grid { grid-template-columns: 1fr; }
  .yacht-detail-stats { grid-template-columns: 1fr; }
}

.yacht-detail-hero .back-link {
  display: inline-block;
  color: var(--accent);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.yacht-detail-hero h1 {
  margin: 14px 0 18px;
  font-family: var(--heading-font);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
}

.yacht-detail-lead {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 14, 24, 0.94);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-open {
  opacity: 1;
}

.lightbox-image {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transition: opacity 0.2s ease;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--heading-font);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 56px;
  height: 56px;
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 32px;
}

.lightbox-next {
  right: 32px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
/* ====== Eklenen: Footer sosyal & alt bant ====== */
.footer-social { display: flex; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.footer-social a { color: rgba(255,255,255,0.7); font-size: 0.82rem; text-decoration: none; padding: 6px 12px; border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; transition: all .2s; }
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); }
.footer-base { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-base small { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ====== Eklenen: İletişim haritası ====== */
.contact-map { padding: 0 0 64px; }
.contact-map-frame { border-radius: 18px; overflow: hidden; box-shadow: 0 16px 50px rgba(15,37,54,0.18); }
.contact-map-frame iframe { display: block; width: 100%; }

/* ====== Eklenen: Yasal sayfalar ====== */
.legal-content { font-family: "Inter", system-ui, sans-serif; line-height: 1.75; color: #233447; }
.legal-content h2 { margin: 28px 0 12px; font-size: 1.18rem; color: #08233b; font-family: "Cormorant Garamond", serif; }
.legal-content p, .legal-content li { font-size: 0.95rem; }
.legal-content ul { padding-left: 22px; }
.legal-content a { color: #c9a96a; text-decoration: underline; }
