:root {
  --bg: #08111f;
  --bg-alt: #0d1a2e;
  --surface: #111f33;
  --text: #edf2f8;
  --muted: #b7c5d8;
  --primary: #1db3a6;
  --border: #2a3a52;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 4%;
  backdrop-filter: blur(10px);
  background: rgba(8, 17, 31, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 48px;
  max-width: min(300px, 70vw);
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  color: var(--muted);
  border: 0;
  padding: 0.38rem 0.7rem;
  cursor: pointer;
  font-weight: 600;
}

.lang-btn.active {
  background: var(--primary);
  color: #03292a;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  border: 1px solid transparent;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.btn-primary {
  background: var(--primary);
  color: #03292a;
}

.btn-ghost {
  border-color: rgba(237, 242, 248, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #edf2f8;
}

.btn-ghost:disabled {
  opacity: 0.35;
  cursor: default;
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
}

.hero {
  min-height: 78svh;
  position: relative;
  overflow: hidden;
  background-color: #000;
  background-image: url("./videos/hero-01.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.hero-fade {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.28);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-dot:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.55);
}

.hero-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.2);
}

.band {
  width: 100%;
}

.band-a {
  background: var(--bg);
}

.band-b {
  background: var(--bg-alt);
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.intro-section .section {
  padding-top: 2.5rem;
}

.kicker {
  color: var(--primary);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 18ch;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.intro-desc {
  max-width: 60ch;
  color: #dbe6f3;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.section {
  padding: 4.5rem 0;
}

.muted {
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.service-card,
.review,
.cta-box,
.route-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-radius: 18px;
  padding: 1.2rem;
}

.card ul,
.service-card ul {
  padding-left: 1rem;
  color: var(--muted);
}

.quote {
  color: #d6e5f8;
  font-style: italic;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.routes-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.route-card {
  padding: 0;
  overflow: hidden;
}

.route-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.route-card h3 {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  font-size: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.25;
}

.route-card .route-title {
  font-weight: 700;
}

.route-card .route-place {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.filter-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.filter-btn.active {
  background: var(--primary);
  color: #03292a;
  border-color: var(--primary);
}

.gallery {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
  background: transparent;
}

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

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

.pagination {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.pagination-info {
  color: var(--muted);
  font-weight: 600;
}

.instagram-section .section {
  padding-top: 2.5rem;
}

.instagram-feed {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  align-content: start;
}

.instagram-feed.is-loading {
  pointer-events: none;
}

.instagram-feed.is-loading .insta-card-skel {
  animation: insta-skel-pulse 1.2s ease-in-out infinite;
}

@keyframes insta-skel-pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.9;
  }
}

.insta-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #0f1c30;
  cursor: pointer;
  position: relative;
  padding: 0;
  text-align: left;
  color: inherit;
  font: inherit;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.insta-card-skel {
  cursor: default;
  pointer-events: none;
}

.insta-skel-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #152338, #1c2d45 45%, #152338);
}

.insta-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.insta-feed-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0f1c30;
  color: var(--muted);
  text-align: center;
  /* 2 satır × 4:5 kart yüksekliğine yakın sabit alan */
  min-height: calc(2 * ((min(1100px, 92vw) - 2.4rem) / 4 * 1.25) + 0.8rem);
}

.insta-feed-empty p {
  margin: 0;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review p {
  color: var(--muted);
}

.review span {
  color: #d7e7f9;
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.contact a {
  color: #b9f5ef;
}

.footer {
  text-align: center;
  color: var(--muted);
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#lightbox.lightbox {
  border: 0;
  width: min(98vw, 1100px);
  max-height: 92vh;
  background: transparent;
  padding: 0;
  overflow: visible;
}

#lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.lightbox-shell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.lightbox-stage {
  position: relative;
  flex: 1;
  min-width: 0;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.lightbox-stage img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

.lightbox-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 17, 31, 0.75);
  color: #edf2f8;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-counter {
  position: absolute;
  top: 0.75rem;
  left: 0.85rem;
  z-index: 5;
  margin: 0;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(8, 17, 31, 0.55);
  color: rgba(237, 242, 248, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  pointer-events: none;
}

.lightbox-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: #edf2f8;
  color: #08111f;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.lightbox-nav:hover:not(:disabled) {
  background: var(--primary);
  color: #03292a;
}

.lightbox-nav:disabled {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}

@media (max-width: 800px) {
  .lightbox-shell {
    gap: 0.4rem;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.55rem;
  }

  .lightbox-stage img {
    max-height: 72vh;
  }
}

.insta-card-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  z-index: 1;
}

.insta-modal {
  border: 0;
  padding: 0;
  width: min(98vw, 1080px);
  max-height: 92vh;
  background: transparent;
  overflow: visible;
}

.insta-modal::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.insta-modal-shell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  background: transparent;
}

.insta-modal-inner {
  display: grid;
  grid-template-columns: 1fr;
  background: #0a1220;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  max-height: 92vh;
  flex: 1;
  min-width: 0;
}

.insta-modal-inner.has-comments {
  grid-template-columns: 1.35fr 0.85fr;
}

.insta-modal-stage {
  position: relative;
  background: #000;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 17, 31, 0.75);
  color: #edf2f8;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.insta-modal-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: #edf2f8;
  color: #08111f;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.insta-modal-nav:hover:not(:disabled) {
  background: var(--primary);
  color: #03292a;
}

.insta-modal-prev,
.insta-modal-next {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
}

.insta-modal-nav:disabled {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}

.insta-modal-counter {
  position: absolute;
  top: 0.75rem;
  left: 0.85rem;
  z-index: 5;
  margin: 0;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(8, 17, 31, 0.55);
  color: rgba(237, 242, 248, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  pointer-events: none;
}

.insta-modal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 2.4rem 3rem 1.1rem 1rem;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.88), rgba(8, 17, 31, 0.5), transparent);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.insta-modal-header[hidden] {
  display: none !important;
}

.insta-modal-caption {
  margin: 0;
  color: #edf2f8;
  font-size: 0.95rem;
  line-height: 1.4;
  white-space: pre-wrap;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insta-modal-media {
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-modal-media img,
.insta-modal-media video {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  display: block;
}

.insta-modal-link {
  position: absolute;
  right: 0.85rem;
  bottom: 4.6rem;
  left: auto;
  transform: none;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(3, 41, 42, 0.35);
  background: rgba(29, 179, 166, 0.95);
  color: #03292a;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  white-space: nowrap;
}

.insta-modal-link:hover {
  background: #edf2f8;
  color: #08111f;
  border-color: transparent;
}

.insta-modal-side {
  padding: 1.1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: auto;
  background: #0f1c30;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.insta-modal-side[hidden] {
  display: none !important;
}

.insta-modal-side-title {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.insta-modal-comments {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 0;
}

.insta-comment {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.55rem;
}

.insta-comment strong {
  display: block;
  font-size: 0.82rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.insta-comment p {
  margin: 0;
  color: #d8e6f7;
  font-size: 0.88rem;
  line-height: 1.4;
}

.insta-modal-empty {
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 800px) {
  .insta-modal-shell {
    gap: 0.4rem;
  }

  .insta-modal-nav {
    width: 40px;
    height: 40px;
    font-size: 1.55rem;
  }

  .insta-modal-inner,
  .insta-modal-inner.has-comments {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }

  .insta-modal-media img,
  .insta-modal-media video {
    max-height: 56vh;
  }

  .insta-modal-side {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 28vh;
  }

  .insta-modal-link {
    right: 0.65rem;
    bottom: 4.2rem;
    font-size: 0.82rem;
    padding: 0.48rem 0.85rem;
  }
}

@media (max-width: 1100px) {
  .routes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 78px;
    right: 4%;
    display: none;
    flex-direction: column;
    min-width: 220px;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #0d192c;
  }

  .nav.open {
    display: flex;
  }

  .grid-2,
  .services,
  .instagram-feed,
  .gallery,
  .reviews,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .btn-outline {
    display: none;
  }

  .brand img {
    height: 44px;
  }

  .hero {
    min-height: 62svh;
  }

  .routes-grid,
  .grid-2,
  .services,
  .instagram-feed,
  .gallery,
  .reviews,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.55rem 4%;
  background: rgba(8, 17, 31, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.35);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cookie-banner-text {
  margin: 0;
  color: #d8e6f7;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 48rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}

.cookie-banner-actions .btn {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  line-height: 1.4;
}

.cookie-banner-actions .btn-ghost {
  border-color: rgba(237, 242, 248, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: #edf2f8;
}

@media (max-width: 720px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .btn {
    flex: 1;
    text-align: center;
  }
}
