/* =========================================================
   BODRUM ADA YACHTING — Global CSS
   Birebir WordPress/Stratego tema renkleri ve tipografisi
   ========================================================= */

/* ─── CSS DESIGN TOKENS ────────────────────────────────── */
:root {
  /* Renkler — scheme_teal_light */
  --bg:            #FFFFFF;
  --bg-alt:        #ECF4F5;
  --border:        #C0D1D2;
  --text:          #5A676F;
  --text-light:    #808A91;
  --text-dark:     #051521;
  --teal:          #19B4C7;
  --teal-hover:    #129DAE;
  /* Açık/aydınlık zeminlerde kullanılan koyu marka mavisi */
  --blue:          #003586;
  --blue-hover:    #0A4FB0;
  --gold:          #FFB039;
  --gold-hover:    #F89E18;
  --dark-navy:     #0D1A24;
  --dark-navy-2:   #1C2834;

  /* Dark bölümler için */
  --extra-bg:      #0D1A24;
  --extra-text:    #CCD1D9;
  --extra-light:   #818A92;
  --extra-dark:    #FFFFFF;
  --extra-border:  #1F2C36;

  /* Tipografi — birebir tema değerleri */
  --font-body:     "DM Sans", sans-serif;
  --font-heading:  "Outfit", sans-serif;

  /* Layout */
  --max-width:     1320px;
  --gap:           30px;

  /* Geçişler */
  --transition:    0.3s ease;
}

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Orijinal tema 17px köke göre tasarlanmış — tüm em ölçeği buna dayanır.
   16px kullanmak başlık/metni ~%6 küçültüp "cılız" gösteriyordu. */
html { font-size: 17px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65em;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ─── TYPOGRAPHY — Birebir tema font boyutları ──────────── */
h1, .h1 {
  font-family: var(--font-body);
  font-size: 3.353em;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: -1.7px;
  color: var(--text-dark);
}
h2, .h2 {
  font-family: var(--font-heading);
  font-size: 2.765em;
  line-height: 1.021em;
  font-weight: 500;
  letter-spacing: -1.4px;
  color: var(--text-dark);
}
h3, .h3 {
  font-family: var(--font-heading);
  font-size: 2.059em;
  line-height: 1.086em;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--text-dark);
}
h4, .h4 {
  font-family: var(--font-heading);
  font-size: 1.647em;
  line-height: 1.214em;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: var(--text-dark);
}
h5, .h5 {
  font-family: var(--font-heading);
  font-size: 1.412em;
  line-height: 1.208em;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}
h6, .h6 {
  font-family: var(--font-heading);
  font-size: 1.118em;
  line-height: 1.474em;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--text-dark);
}

p { margin-bottom: 1.57em; }
p:last-child { margin-bottom: 0; }

/* ─── LAYOUT ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
}
.page_wrap { min-height: 100vh; display: flex; flex-direction: column; }
.page_content_wrap { flex: 1; }

/* ─── BUTTONS — Birebir tema buton stili ────────────────── */
.theme_button,
.sc_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0;
  text-transform: none;
  padding: 17px 52px;
  border-radius: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
/* Sade lacivert/beyaz buton sistemi — orijinaldeki gibi teal dolgu ve
   sarı/turuncu hover YOK. Vurgu rengi (teal) yalnızca küçük detaylarda. */
.theme_button_primary {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
}
.theme_button_primary:hover {
  background: var(--dark-navy-2);
  border-color: var(--dark-navy-2);
  color: #fff;
}
.theme_button_outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.theme_button_outline:hover {
  background: var(--text-dark);
  color: #fff;
}
.theme_button_white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.theme_button_white:hover {
  background: #fff;
  color: var(--text-dark);
}
/* Koyu zeminlerde kullanılan açık buton (eski "gold" varyantı) */
.theme_button_gold {
  background: #fff;
  color: var(--text-dark);
  border-color: #fff;
}
.theme_button_gold:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* Arrow button variant */
.btn_with_arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--blue);
  transition: gap var(--transition), color var(--transition);
}
.btn_with_arrow:hover { gap: 16px; color: var(--blue-hover); }
.btn_with_arrow svg { width: 18px; height: 18px; }

/* ─── HEADER ─────────────────────────────────────────────── */
.header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.header_wrap.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(5, 21, 33, 0.1);
}

/* ─── SECTION TITLES — Birebir sc_item_title yapısı ─────── */
.sc_item_subtitle {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}
.sc_item_title {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -1.7px;
  color: var(--text-dark);
  margin-top: 0;
}
.sc_item_descr {
  color: var(--text);
  line-height: 1.65em;
}

/* Dark scheme overrides */
.scheme_dark .sc_item_subtitle { color: var(--teal); }
.scheme_dark .sc_item_title   { color: #fff; }
.scheme_dark .sc_item_descr   { color: var(--extra-light); }

/* ─── HERO SLIDER — Birebir fullscreen slider ────────────── */
.hero_slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  overflow: hidden;
}
.hero_slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero_slide.active { opacity: 1; z-index: 1; }
.hero_slide.prev   { opacity: 0; z-index: 0; }

.hero_slide_bg,
.hero_slide_video,
.hero_slide_poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.hero_slide_poster { z-index: 0; }
.hero_slide_video { z-index: 1; }
/* Mobilde video yok — yalnızca optimize poster (8.85MB tasarruf) */
@media (max-width: 767px) {
  .hero_slide_video { display: none; }
}
.hero_slide_bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero_slide.active .hero_slide_bg,
.hero_slide.active .hero_slide_video,
.hero_slide.active .hero_slide_poster { transform: scale(1); }

.hero_slide_overlay {
  position: absolute;
  inset: 0;
  /* Orijinal gibi ferah/havadar — yalnızca metnin oturduğu sol-alt bölgede
     hafif bir koyulaşma, görselin üstü açık kalır */
  background: linear-gradient(to top, rgba(5, 21, 33, 0.55) 0%, rgba(5, 21, 33, 0.12) 38%, transparent 62%),
              linear-gradient(105deg, rgba(5, 21, 33, 0.30) 0%, transparent 45%),
              linear-gradient(to bottom, rgba(5, 21, 33, 0.62) 0%, rgba(5, 21, 33, 0.30) 12%, transparent 28%);
}

.hero_slide_content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px 0;
}
.hero_slide_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}
.hero_slide_subtitle {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}
.hero_slide_title {
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 5.6vw, 5.2rem);
  font-weight: 200;
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: #fff;
  max-width: 760px;
  margin-bottom: 36px;
  text-shadow: 0 2px 24px rgba(5, 21, 33, 0.25);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s;
}
.hero_slide_btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}
.hero_slide.active .hero_slide_subtitle,
.hero_slide.active .hero_slide_title,
.hero_slide.active .hero_slide_btn {
  opacity: 1;
  transform: translateY(0);
}

/* Slider controls */
.hero_slider_controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero_slider_btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.hero_slider_btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}
.hero_slider_btn svg { width: 18px; height: 18px; }

/* Progress bar — birebir orijinal */
.hero_slider_progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(255,255,255,0.3);
  width: 100%;
  z-index: 10;
}
.hero_slider_progress_bar {
  height: 100%;
  background: #fff;
  width: 0%;
  transition: width linear;
}

/* Slide counter */
.hero_slide_counter {
  position: absolute;
  bottom: 46px;
  left: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
}
.hero_slide_counter .current {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  min-width: 26px;
}
.hero_slide_counter .divider {
  width: 44px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  display: inline-block;
}

/* ─── SECTION — About Us & Hizmetlerimiz (görsel / metin split) ────────── */
.section_split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #ffffff;
}
.section_split.split_reversed {
  grid-template-columns: 1fr 1fr;
}
.section_split_image {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.section_split_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 12% 11%;
  background: rgba(44, 94, 153, 0.08);
}

/* Hakkımızda split kolon marjin ve derzleri */
#hakkimizda .section_split_image {
  margin: 11px 0px 11px 0px;
  border-right: 5px solid #ffffff;
  border-style: solid;
  border-width: 0px 5px 0px 0px;
  border-color: #ffffff;
}
#hakkimizda .section_split_content {
  margin: 11px 0px 11px 0px;
  border-left: 5px solid #ffffff;
  border-style: solid;
  border-width: 0px 0px 0px 5px;
  border-color: #ffffff;
}

/* Hizmetlerimiz split kolon marjin ve derzleri */
#hizmetlerimiz_split .section_split_content {
  margin: 0px 5px 0px 0px;
  border-left: 5px solid #ffffff;
  border-style: solid;
  border-width: 0px 0px 0px 5px;
  border-color: #ffffff;
}
#hizmetlerimiz_split .section_split_image {
  margin: 0px 0px 0px 5px;
  border-right: 5px solid #ffffff;
  border-style: solid;
  border-width: 0px 5px 0px 0px;
  border-color: #ffffff;
}

/* ─── SERVICES SECTION ───────────────────────────────────── */
.section_services {
  position: relative;
  overflow: hidden;
}
.services_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.service_card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}
.service_card:hover .service_card_img { transform: scale(1.06); }
.service_card_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,21,33,0.85) 0%, rgba(5,21,33,0.2) 60%, transparent 100%);
  transition: background var(--transition);
}
.service_card:hover .service_card_overlay {
  background: linear-gradient(to top, rgba(5,21,33,0.9) 0%, rgba(5,21,33,0.4) 70%, rgba(5,21,33,0.1) 100%);
}
.service_card_content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.service_card_arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition), color var(--transition);
}
.service_card:hover .service_card_arrow {
  opacity: 1;
  transform: translateX(0);
}
.service_card_arrow svg { width: 18px; height: 18px; }
.service_card_number {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}
.service_card_title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.service_card_excerpt {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}
.service_card:hover .service_card_excerpt {
  max-height: 100px;
  opacity: 1;
}
.service_card_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.service_card:hover .service_card_link {
  opacity: 1;
  transform: translateY(0);
}
.service_card_link svg { width: 14px; height: 14px; }

/* ─── MARQUEE TEXT — Birebir trx_addons_bg_text ─────────── */
.marquee_wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 80px 0;
  margin: 20px 0;
}
.marquee_inner {
  display: inline-flex;
  animation: marquee 64s linear infinite;
}
.marquee_inner span {
  font-family: var(--font-heading);
  font-size: clamp(68px, 11vw, 161px);
  font-weight: 100;
  letter-spacing: -7.8px;
  color: rgba(44, 94, 153, 0.28);
  line-height: 0.8em;
  padding-right: 72px;
  user-select: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── YACHTS GRID ────────────────────────────────────────── */
.yachts_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Ortalanmış Başlık Düzeni */
.section_head_center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section_head_center .sc_item_title {
  margin-bottom: 16px;
}
.section_head_center .sc_item_subtitle {
  margin-bottom: 8px;
}
.yacht_card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.yacht_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.yacht_card:hover .yacht_card_img { transform: scale(1.05); }
.yacht_card_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,21,33,0.85) 0%, rgba(5,21,33,0.15) 45%, transparent 70%);
  transition: opacity var(--transition);
}
.yacht_card_content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.yacht_card_name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 0;
}
/* Hover'da yalnızca ok — detay yok */
.yacht_card_arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition), color var(--transition);
}
.yacht_card:hover .yacht_card_arrow {
  opacity: 1;
  transform: translateX(0);
}
.yacht_card_arrow:hover { background: #fff; color: var(--text-dark); }
.yacht_card_arrow svg { width: 18px; height: 18px; }

/* ─── GALLERY GRID ───────────────────────────────────────── */
.gallery_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery_item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery_item:hover img { transform: scale(1.08); }
.gallery_item_overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 21, 33, 0.4);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery_item:hover .gallery_item_overlay { opacity: 1; }
.gallery_item_overlay svg { color: #fff; width: 32px; height: 32px; }

/* Lightbox */
.lightbox_overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 21, 33, 0.96);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox_overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox_img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 2px solid rgba(255,255,255,0.1);
}
.lightbox_close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  background: none;
  border: none;
}
.lightbox_close:hover { opacity: 1; }
.lightbox_prev, .lightbox_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}
.lightbox_prev:hover, .lightbox_next:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.lightbox_prev { left: 20px; }
.lightbox_next { right: 20px; }
.lightbox_prev svg, .lightbox_next svg, .lightbox_close svg { width: 24px; height: 24px; }

/* ─── CONTACT / ILETISIM ─────────────────────────────────── */
.contact_hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.contact_hero_bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
}
.contact_hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,21,33,0.85) 0%, rgba(5,21,33,0.3) 60%, transparent 100%);
}
.contact_info_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 0;
}
.contact_info_item h5 {
  color: var(--teal);
  margin-bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.contact_info_item a {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color var(--transition);
}
.contact_info_item a:hover { color: var(--teal); }

/* ─── YACHT DETAIL PAGE ──────────────────────────────────── */
.yacht_detail_hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.yacht_detail_hero_bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.yacht_detail_hero_overlay {
  position: absolute;
  inset: 0;
  /* Alt: başlık okunurluğu — Üst: sabit menünün görünmesi için belirgin koyulaşma */
  background: linear-gradient(to top, rgba(5,21,33,0.82) 0%, rgba(5,21,33,0.2) 55%, transparent 100%),
              linear-gradient(to bottom, rgba(5,21,33,0.80) 0%, rgba(5,21,33,0.42) 13%, transparent 34%);
}
.yacht_specs_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 40px 0;
}
.yacht_spec_item {
  background: var(--bg-alt);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
}
.yacht_spec_label {
  font-size: 11px;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  display: block;
}
.yacht_spec_value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}
.yacht_gallery_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.yacht_gallery_item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.yacht_gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.yacht_gallery_item:hover img { transform: scale(1.05); }

/* ─── FOOTER — Birebir 4 sütun footer ───────────────────── */
.footer_wrap { background: #07131D; color: var(--extra-text); }
.footer_main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 96px 0 64px;
}
.footer_logo { margin-bottom: 24px; }
.footer_logo img { height: 88px; width: auto; filter: brightness(0) invert(1); }
.footer_desc {
  font-size: 0.9rem;
  color: var(--extra-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer_col_title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--extra-text);
  margin-bottom: 22px;
  display: block;
}
.footer_nav { display: flex; flex-direction: column; gap: 13px; }
.footer_nav a {
  color: rgba(255,255,255,0.78);
  font-size: 1.18rem;
  font-weight: 300;
  letter-spacing: -0.3px;
  transition: color var(--transition), padding-left var(--transition);
}
.footer_nav a:hover { color: var(--teal); padding-left: 4px; }
.footer_contact_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer_contact_item svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer_contact_item a, .footer_contact_item span {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.footer_contact_item a:hover { color: var(--teal); }

.footer_socials { display: flex; gap: 12px; margin-top: 24px; }
.footer_social_link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--extra-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--extra-light);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer_social_link:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: rgba(25,180,199,0.1);
}
.footer_social_link svg { width: 18px; height: 18px; }

.footer_bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.72rem;
  color: var(--extra-light);
}
.footer_bottom a { color: var(--teal); }
.footer_bottom a:hover { color: var(--teal-hover); }

/* ─── WHATSAPP FLOAT ─────────────────────────────────────── */
.whatsapp_float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp_float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp_float svg { width: 28px; height: 28px; }

/* ─── SCROLL TO TOP ──────────────────────────────────────── */
.scroll_to_top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), background var(--transition);
}
.scroll_to_top.visible { opacity: 1; pointer-events: all; }
.scroll_to_top:hover { background: var(--teal-hover); }
.scroll_to_top svg { width: 20px; height: 20px; }

/* ─── PAGE TITLE — İç sayfalar için başlık bölümü ───────── */
.page_title_section {
  background: var(--dark-navy-2);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page_title_section_bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page_title_section .container { position: relative; z-index: 1; }
.page_title { color: #fff; margin-bottom: 0; }
.page_breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--extra-light);
}
.page_breadcrumb a { color: var(--teal); }
.page_breadcrumb a:hover { color: var(--teal-hover); }
.page_breadcrumb span { color: rgba(255,255,255,0.4); }

/* ─── SECTION PADDINGS ───────────────────────────────────── */
.section { padding: 100px 0; }
.section_sm { padding: 60px 0; }
.section_lg { padding: 140px 0; }
.section_dark {
  background: var(--dark-navy-2);
  color: var(--extra-text);
}
.section_dark h2, .section_dark h3, .section_dark h4 { color: #fff; }
.section_alt { background: var(--bg-alt); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Intersection Observer animasyonu */
.anim_item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim_item.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim_item:nth-child(2) { transition-delay: 0.1s; }
.anim_item:nth-child(3) { transition-delay: 0.2s; }
.anim_item:nth-child(4) { transition-delay: 0.3s; }
.anim_item:nth-child(5) { transition-delay: 0.4s; }
.anim_item:nth-child(6) { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1279px) {
  h1, .h1 { font-size: 2.5em; }
  h2, .h2 { font-size: 2.2em; }
  .section_split, .section_split.split_reversed {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0px 30px !important;
  }
  #hakkimizda .section_split_image,
  #hakkimizda .section_split_content,
  #hizmetlerimiz_split .section_split_image,
  #hizmetlerimiz_split .section_split_content {
    margin: 10px 0px !important;
    border: none !important;
  }
  .section_split_image {
    min-height: 350px;
  }
  .section_split_content, .section_split.split_reversed .section_split_content {
    padding: 60px 40px !important;
    border-left: none;
    border-right: none;
  }
  .services_grid { grid-template-columns: repeat(2, 1fr); }
  .footer_main { grid-template-columns: 1fr 1fr; }
  .contact_info_grid { grid-template-columns: 1fr 1fr; }
  .yacht_specs_grid { grid-template-columns: repeat(2, 1fr); }
  .gallery_grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1023px) {
  .yachts_grid { grid-template-columns: repeat(2, 1fr); }
  .yacht_gallery_grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  h1, .h1 { font-size: 2rem; letter-spacing: -0.5px; }
  h2, .h2 { font-size: 1.8rem; letter-spacing: -0.5px; }
  h3, .h3 { font-size: 1.4rem; }
  .section { padding: 60px 0; }
  .section_lg { padding: 80px 0; }
  .container { padding: 0 20px; }
  .hero_slider { height: 100svh; }
  .hero_slide_content { padding-bottom: 60px; }
  .hero_slide_title { font-size: 1.9rem; letter-spacing: -0.5px; }
  .services_grid { grid-template-columns: 1fr; }
  .gallery_grid { grid-template-columns: repeat(2, 1fr); }
  .yachts_grid { grid-template-columns: 1fr; }
  .footer_main { grid-template-columns: 1fr; gap: 30px; padding: 50px 0 30px; }
  .contact_info_grid { grid-template-columns: 1fr; gap: 24px; padding: 50px 0; }
  .yacht_specs_grid { grid-template-columns: repeat(2, 1fr); }
  .yacht_gallery_grid { grid-template-columns: 1fr; }
  .hero_slide_counter { left: 20px; bottom: 30px; }
  .hero_slider_controls { right: 20px; bottom: 24px; }
  .marquee_inner span { font-size: 60px; letter-spacing: -3px; }
  .section_split_content { padding: 7% 6% !important; }
  .page_title_section { padding: 120px 0 50px; }
  .section_split {
    padding: 0% 6% !important;
  }
  .section_split_image {
    min-height: 30vh !important;
  }
}
