/* Ayasandra — tanıtım / ana sayfa */
:root {
  --sea: #08b0f8;
  --sea-deep: #0077c2;
  --leaf: #6fd400;
  --leaf-deep: #4eae00;
  --ink: #12202c;
  --ink-soft: #4a5d6c;
  --sand: #f3f7fa;
  --line: rgba(18, 32, 44, 0.12);
  --white: #ffffff;
  --nav-h: 4.25rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.home {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
}

body.home.nav-open {
  overflow: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ——— Nav ——— */
.home-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 1.25rem;
  min-height: var(--nav-h);
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(18, 32, 44, 0.58), transparent);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.home-nav.is-scrolled {
  background: rgba(18, 32, 44, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  z-index: 2;
}

.home-nav .logo {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  height: var(--nav-h);
}

.nav-desktop a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.86);
  padding: 0 0.85rem;
  transition: color 0.2s ease;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.95rem;
  height: 2px;
  border-radius: 1px;
  background: var(--sea);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--white);
}

.nav-desktop a.is-active::after,
.nav-desktop a:hover::after {
  transform: scaleX(1);
}

.nav-desktop a.is-active {
  text-shadow: none;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
  height: var(--nav-h);
  z-index: 2;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--white);
  background: var(--sea);
  border: 0;
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--sea-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 45;
}

.nav-drawer[hidden] {
  display: none !important;
}

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 24, 0.55);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  padding: calc(var(--nav-h) + 1.5rem) 1.75rem 2rem;
  background: linear-gradient(165deg, #0f1c27 0%, #163044 100%);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
  animation: slideIn 0.3s ease;
}

.nav-drawer-kicker {
  margin: 0 0 0.75rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea);
}

.nav-drawer-panel > a[data-nav] {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease;
}

.nav-drawer-panel > a[data-nav]:hover,
.nav-drawer-panel > a[data-nav].is-active {
  color: var(--sea);
}

.nav-drawer-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  background: var(--sea);
  border-radius: 10px;
  padding: 0.95rem 1.25rem;
  text-align: center;
}

.nav-drawer-cta:hover {
  background: var(--sea-deep);
}

/* ——— Hero ——— */
.home-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slides .slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slides .slide.is-active {
  opacity: 1;
}

.hero-slides .slide.is-active img {
  animation: kenBurns 7s ease-out both;
}

.hero-slides .slide picture,
.hero-slides .slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slides .slide img {
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 24, 34, 0.32) 0%, rgba(12, 24, 34, 0.12) 38%, rgba(12, 24, 34, 0.78) 100%),
    linear-gradient(90deg, rgba(12, 24, 34, 0.42), transparent 58%);
  pointer-events: none;
  animation: veilIn 1.2s ease both;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  padding: clamp(5.5rem, 12vh, 8rem) clamp(1.2rem, 4vw, 3rem) clamp(4.5rem, 10vh, 6rem);
  animation: rise 1s ease both;
}

.hero-brand {
  max-width: min(360px, 78vw);
  height: auto;
  margin: 0 0 1.1rem;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.5));
  animation: rise 1s 0.05s ease both;
}

.hero-title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: none;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  animation: rise 1s 0.12s ease both;
}

.hero-lead {
  margin: 0.75rem 0 0;
  max-width: 52rem;
  font-size: clamp(0.98rem, 1.7vw, 1.1rem);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  animation: rise 1s 0.2s ease both;
}

.hero-body {
  margin: 0.85rem 0 0;
  max-width: 54rem;
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  animation: rise 1s 0.24s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  animation: rise 1s 0.28s ease both;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  padding: 0.9rem 1.45rem;
  border: 0;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-home:hover { transform: translateY(-2px); }

.btn-home--primary {
  background: var(--sea);
  color: var(--white);
}
.btn-home--primary:hover { background: var(--sea-deep); }

.btn-home--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-home--ghost:hover { background: rgba(255, 255, 255, 0.24); }

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  animation: bounceHint 2.2s ease-in-out infinite;
}

.hero-scroll:hover { color: var(--white); }

.hero-dots {
  position: absolute;
  z-index: 3;
  right: clamp(1.2rem, 4vw, 3rem);
  bottom: 1.5rem;
  display: flex;
  gap: 0.45rem;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 22px;
  background: var(--white);
  animation: dotPulse 2.5s ease-in-out infinite;
}

.home-section {
  padding: clamp(3.5rem, 9vw, 6.5rem) clamp(1.2rem, 4vw, 3rem);
}

.home-section .inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

#vizyon,
#galeri,
#iletisim,
#konum,
#kvkk {
  scroll-margin-top: calc(var(--nav-h) + 0.75rem);
}

.section-head {
  max-width: 40rem;
}

.section-kicker {
  margin: 0 0 0.55rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea-deep);
  line-height: 1.2;
}

.section-title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.section-lead {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.7;
}

.home-vm {
  background:
    linear-gradient(165deg, rgba(243, 247, 250, 0.94) 0%, rgba(232, 244, 251, 0.9) 55%, rgba(243, 247, 250, 0.95) 100%),
    url("../img/site/hero-08.jpg") center / cover fixed;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  margin-top: 2.5rem;
  align-items: start;
}

.vm-block {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0 0 0 1.15rem;
  border-left: 3px solid var(--sea);
  min-height: 100%;
}

.vm-block--mission {
  border-left-color: var(--leaf-deep);
}

.vm-tag {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea-deep);
  line-height: 1;
}

.vm-block--mission .vm-tag {
  color: var(--leaf-deep);
}

.vm-block h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}

.vm-block > p:last-child {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.65;
}

.vm-note {
  margin: 2rem 0 0;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--leaf-deep);
  line-height: 1;
}

.home-contact {
  background: #0f1c27;
  color: var(--white);
}

.home-contact .section-kicker { color: var(--sea); }
.home-contact .section-lead { color: rgba(255, 255, 255, 0.72); }

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list li:first-child {
  padding-top: 0;
}

.contact-list a,
.contact-list span:not(.label) {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  letter-spacing: -0.02em;
  color: var(--white);
}

.contact-list .label {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.contact-list a:hover { color: var(--sea); }

.btn-home--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(18, 32, 44, 0.22);
}
.btn-home--ghost-dark:hover {
  background: rgba(8, 176, 248, 0.1);
  border-color: var(--sea);
}

.contact-cta {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Galeri ——— */
.home-gallery-wrap {
  background: #0f1c27;
  padding-top: clamp(3rem, 7vw, 4.5rem);
}

.gallery-intro {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 3rem) 1.75rem;
}

.gallery-intro .section-kicker { color: var(--sea); }
.gallery-intro .section-title { color: var(--white); }
.gallery-intro .section-lead { color: rgba(255, 255, 255, 0.68); }

.gallery-hint {
  margin: 0.75rem 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.home-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  background: #0f1c27;
}

.home-gallery--mosaic {
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(140px, 18vw);
}

.home-gallery--mosaic .gallery-item--feature {
  grid-column: span 3;
  grid-row: span 2;
}

.home-gallery--mosaic .gallery-item:not(.gallery-item--feature) {
  grid-column: span 3;
}

@media (min-width: 861px) {
  .home-gallery--mosaic .gallery-item:nth-child(2),
  .home-gallery--mosaic .gallery-item:nth-child(3) {
    grid-column: span 3;
  }
  .home-gallery--mosaic .gallery-item:nth-child(n+4) {
    grid-column: span 2;
  }
}

.home-gallery .gallery-item {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
  width: 100%;
}

.home-gallery .gallery-item picture,
.home-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
}

.home-gallery img {
  object-fit: cover;
  transition: transform 0.7s ease;
}

.home-gallery .gallery-item:hover img,
.home-gallery .gallery-item:focus-visible img {
  transform: scale(1.05);
}

.home-gallery .gallery-item:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: -2px;
}

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 14, 20, 0.92);
  color: var(--white);
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}
.lightbox-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 3rem 3.5rem;
}
.lightbox-inner img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(8, 176, 248, 0.45); }

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
}

body.lightbox-open { overflow: hidden; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: 2.25rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--sea);
}

.contact-form-title {
  margin: 0 0 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

.contact-form label > span {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sea);
  background: rgba(8, 176, 248, 0.1);
  box-shadow: 0 0 0 3px rgba(8, 176, 248, 0.22);
}

.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 120, 120, 0.65);
}

.contact-form input:valid:not(:placeholder-shown),
.contact-form textarea:valid:not(:placeholder-shown) {
  border-color: rgba(111, 212, 0, 0.45);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.form-flash {
  margin: 1.25rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-weight: 700;
}
.form-flash--ok {
  background: rgba(111, 212, 0, 0.15);
  color: #b8f06a;
}
.form-flash--err {
  background: rgba(255, 90, 90, 0.15);
  color: #ffb4b4;
}

/* Konum — iletişim altında, üstte metin + altta geniş harita */
.home-location--stack {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #e8f4fb;
}

.loc-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.2rem, 4vw, 3rem) 1.5rem;
}

.loc-bar .section-lead {
  color: var(--ink-soft);
  margin-top: 0.55rem;
  max-width: 36rem;
}

.loc-address {
  margin: 0.65rem 0 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  max-width: 36rem;
  line-height: 1.45;
}

.loc-map--wide {
  position: relative;
  width: 100%;
  min-height: min(56vh, 520px);
  height: 520px;
  background: #0f1c27;
}

.loc-map--wide::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 48px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, #e8f4fb, transparent);
}

.home-location {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  min-height: min(70vh, 640px);
  background: #e8f4fb;
}

.home-location.home-location--stack {
  display: flex;
  min-height: 0;
}

.loc-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.2rem, 4vw, 3rem);
}

.loc-copy .section-lead {
  color: var(--ink);
  font-size: 1.12rem;
  max-width: 28rem;
}

.loc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.loc-bar .loc-actions {
  margin-top: 0;
}

.loc-map {
  position: relative;
  min-height: 320px;
  background: #0f1c27;
}

.loc-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.08) contrast(1.04) brightness(0.98);
}

.home-foot {
  padding: 2rem clamp(1.2rem, 4vw, 3rem);
  background: #0a141c;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-weight: 600;
}

.foot-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
}

.foot-inner img {
  height: 36px;
  width: auto;
  opacity: 0.92;
}

.foot-inner p { margin: 0; }

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  justify-content: center;
}

.foot-links a {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.foot-links a:hover { color: var(--sea); }

/* Dil seçici */
.lang-switch {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0.7rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch a.is-active {
  background: var(--sea);
  color: var(--white);
}
.lang-switch a:hover:not(.is-active) { color: var(--white); }
.lang-switch--drawer {
  margin: 1rem 0 0.5rem;
  width: fit-content;
}
.lang-switch--drawer a { color: rgba(255, 255, 255, 0.85); }

/* Sticky WhatsApp */
.wa-fab {
  position: fixed;
  z-index: 55;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, background 0.2s ease, opacity 0.28s ease;
}
.wa-fab:hover {
  transform: translateY(-3px) scale(1.04);
  background: #1ebe57;
}
.wa-fab.is-away {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
body.has-cookie-bar .wa-fab {
  bottom: calc(clamp(1rem, 3vw, 1.5rem) + 4.25rem);
}
body.has-cookie-bar .wa-fab.is-away {
  transform: translateY(160%);
}

.cookie-bar {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.7rem clamp(1rem, 3vw, 2rem);
  background: rgba(10, 20, 28, 0.96);
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.cookie-bar[hidden] { display: none !important; }
.cookie-bar p {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cookie-bar a {
  color: var(--sea);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-bar .btn-home { flex: 0 0 auto; padding: 0.55rem 1rem; font-size: 0.88rem; }

.home-kvkk {
  background: #e8f0f5;
}
.home-kvkk .kvkk-intro {
  max-width: 46rem;
}
.kvkk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 1.75rem);
  margin-top: 2rem;
}
.kvkk-grid article h3 {
  margin: 0 0 0.45rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sea-deep);
}
.kvkk-grid article p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
}
.kvkk-note {
  margin: 1.75rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes veilIn {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes bounceHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.72; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(16px); opacity: 0.6; }
  to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 960px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .home-nav {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 900px) {
  .home-location:not(.home-location--stack) { grid-template-columns: 1fr; }
  .loc-map { min-height: 360px; }
  .loc-map--wide { height: 360px; min-height: 360px; }
}

@media (max-width: 860px) {
  .vm-grid { grid-template-columns: 1fr; }
  .home-gallery,
  .home-gallery--mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(140px, 28vw); }
  .home-gallery--mosaic .gallery-item--feature,
  .home-gallery--mosaic .gallery-item:not(.gallery-item--feature),
  .home-gallery--mosaic .gallery-item:nth-child(n+4) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .home-gallery--mosaic .gallery-item--feature {
    grid-column: span 2;
  }
  .home-vm { background-attachment: scroll; }
  .hero-scroll { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { padding-left: 0; border-left: 0; border-top: 3px solid var(--sea); padding-top: 1.25rem; }
  .kvkk-grid { grid-template-columns: 1fr; }
  .lightbox-inner { padding: 3.5rem 0.75rem; }
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
  .cookie-bar {
    flex-wrap: wrap;
  }
  .cookie-bar p {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .loc-actions,
  .contact-cta { flex-direction: column; align-items: stretch; }
  .nav-cta { display: none; }
  .home-nav .logo { height: 36px; }
}
