/* ============================================
   LuxawayVIP — Ultra-Luxury Transfer Theme
   ============================================ */

:root {
  --black: #0a0a0b;
  --charcoal: #141416;
  --charcoal-light: #1c1c1f;
  --gray: #2a2a2e;
  --gray-muted: #6b6b72;
  --white: #f5f3ef;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #9a7b3c;
  --champagne: #d4c4a0;
  --emerald: #1a3d32;
  --emerald-accent: #2d5a4a;
  --glass: rgba(20, 20, 22, 0.72);
  --glass-border: rgba(201, 169, 98, 0.18);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 88px;
  --img-hero: url("https://images.unsplash.com/photo-1765461734605-34657fa04db2?w=1920&q=90&auto=format&fit=crop");
  --bg-services: #141210;
  --bg-why: #111318;
  --bg-info: #0c0c0e;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-muted);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s var(--ease-out);
}

ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
}

em {
  font-style: italic;
  color: var(--gold-light);
}

.gold { color: var(--gold-light); }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s;
}

.header.scrolled {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 0.1rem;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.logo-vip {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}

.footer .logo-name {
  font-size: 1.65rem;
}

.footer .logo-vip {
  font-size: 0.78rem;
}

.logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  object-position: left center;
}

.footer .logo {
  margin-bottom: 0.25rem;
}

.footer .logo-img {
  height: 64px;
  max-width: 220px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 0;
}

.nav-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 1025px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  .logo { justify-self: start; }

  .nav-links { justify-self: center; }

  .nav-end { justify-self: end; }
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem;
  background: rgba(10, 10, 11, 0.55);
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 3px;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  padding: 3px 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 2px;
  opacity: 0.55;
  transition: opacity 0.3s, background 0.3s, box-shadow 0.3s;
}

.lang-btn:hover {
  opacity: 0.9;
  background: rgba(201, 169, 98, 0.08);
}

.lang-btn.is-active {
  opacity: 1;
  background: rgba(201, 169, 98, 0.18);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.45);
}

.lang-flag {
  width: 28px;
  height: 20px;
  display: block;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--gold-dark);
  color: var(--gold-light) !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  background-size: 200% 200%;
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}

.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 8px 40px rgba(201, 169, 98, 0.35);
  transform: translateY(-2px);
}

.btn-primary:hover::after { transform: translateX(100%); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245, 243, 239, 0.25);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute;
  inset: -15%;
  background-image: var(--img-hero);
  background-size: cover;
  background-position: center 45%;
  filter: brightness(1.1) contrast(1.08) saturate(1.12);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.32) 0%, rgba(10,10,11,0.15) 42%, rgba(10,10,11,0.72) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.45) 0%, transparent 52%, rgba(10,10,11,0.38) 100%),
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 90px rgba(0,0,0,0.45);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--header-h);
  padding-bottom: 6rem;
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15em 0.35em;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--white);
  margin-bottom: 1.75rem;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.65),
    0 0 48px rgba(0, 0, 0, 0.4);
}

.hero-location {
  color: #ffffff;
}

.hero-location-sep {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.15em;
  color: var(--gold-light);
  opacity: 0.95;
  padding: 0 0.1em;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero-title-line {
  display: block;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  max-width: 500px;
  margin-inline: auto;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
}

.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--glass-border);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-muted);
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Sections */
.section {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-left: 2.25rem;
  position: relative;
}

.section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.2rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.section-desc {
  max-width: 480px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-tag {
  padding-left: 0;
}

.section-header--center .section-tag::before { display: none; }

.section-header--center .section-desc {
  margin-inline: auto;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Services — renk arka plan (fotoğraf yok) */
.services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--bg-services);
  background-image:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(201, 169, 98, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 0% 100%, rgba(201, 169, 98, 0.05) 0%, transparent 50%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 80px,
      rgba(201, 169, 98, 0.02) 80px,
      rgba(201, 169, 98, 0.02) 81px
    );
  border-top: 1px solid rgba(201, 169, 98, 0.22);
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.services > .container {
  position: relative;
  z-index: 1;
}

.services .section-header {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  margin-bottom: 0.5rem;
  max-width: 100%;
}

.services .section-title {
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
}

.services .section-desc {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  color: rgba(245, 243, 239, 0.95);
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: linear-gradient(145deg, rgba(18, 18, 20, 0.88) 0%, rgba(10, 10, 11, 0.92) 100%);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(201, 169, 98, 0.3);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.5s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.55);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(201, 169, 98, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-card--wide {
  grid-column: 1 / -1;
  max-width: 100%;
}

@media (min-width: 900px) {
  .service-card--wide {
    grid-column: span 2;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.service-card p {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 500;
  line-height: 1.7;
  color: rgba(245, 243, 239, 0.92);
}

.service-card-line {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover .service-card-line { opacity: 1; }

/* Fleet */
.fleet {
  background: var(--black);
  overflow: hidden;
}

.fleet-showcase { margin-top: 3rem; }

.fleet-main {
  position: relative;
  margin-bottom: 2rem;
}

.fleet-main-image {
  aspect-ratio: 21/9;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.fleet-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}

.fleet-main:hover .fleet-main-image img {
  transform: scale(1.05);
}

.fleet-main-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 560px);
  padding: 1.75rem 2rem;
  text-align: center;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
}

.fleet-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.fleet-main-caption h3 {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.fleet-main-caption p {
  font-size: 0.9rem;
  color: var(--champagne);
}

.fleet-intro {
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fleet-item--maybach figcaption {
  color: var(--gold-light);
}

.fleet-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 4/3;
}

.fleet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s;
}

.fleet-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.fleet-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(transparent, rgba(10,10,11,0.9));
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

.fleet-item:hover figcaption { transform: translateY(0); }

.fleet-specs {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.specs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 4rem;
}

.specs-list li {
  text-align: center;
}

.specs-list span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-bottom: 0.35rem;
}

.specs-list strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-light);
}

/* Why Us — farklı renk tonu */
.why {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-why);
  background-image:
    linear-gradient(180deg, rgba(201, 169, 98, 0.04) 0%, transparent 28%),
    linear-gradient(0deg, rgba(10, 10, 11, 0.6) 0%, transparent 35%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(255, 255, 255, 0.012) 120px,
      rgba(255, 255, 255, 0.012) 121px
    );
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.why-accent {
  position: absolute;
  top: 10%;
  right: -15%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.why-layout {
  display: grid;
  gap: 4rem;
}

@media (min-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.why-card {
  padding: 2rem;
  border-left: 2px solid var(--glass-border);
  transition: border-color 0.4s, background 0.4s;
}

.why-card:hover {
  border-left-color: var(--gold);
  background: rgba(201, 169, 98, 0.06);
}

.why-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-dark);
  opacity: 0.6;
  display: block;
  margin-bottom: 0.5rem;
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  background: var(--black);
  border-top: 1px solid var(--glass-border);
}

.testimonials-slider {
  margin-top: 3rem;
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

.testimonial {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  padding: 3rem 2rem;
  text-align: center;
  box-sizing: border-box;
  opacity: 1;
  transform: none;
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--gold);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gray);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.testimonials-dots button.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* Booking — bilgilendirme bölgesi (renk) */
.booking {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-info);
  background-image:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 60%),
    linear-gradient(165deg, #101012 0%, #0c0c0e 45%, #12100e 100%);
  border-top: 1px solid rgba(201, 169, 98, 0.18);
}

.booking-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
    gap: 4rem;
  }
}

.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.booking-contact a {
  font-size: 1rem;
  color: var(--champagne);
}

.booking-contact a:hover { color: var(--gold-light); }

.booking-contact .whatsapp { color: var(--emerald-accent); }

.booking-form {
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.date-selects {
  display: flex;
  gap: 0.5rem;
}

.date-selects select {
  flex: 1;
  min-width: 0;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  background-position: right 0.5rem center !important;
}

.booking-form label span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: rgba(10, 10, 11, 0.6);
  border: 1px solid var(--glass-border);
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.booking-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a962'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.booking-form select option {
  background-color: var(--charcoal);
  color: var(--white);
}

.form-full { margin-bottom: 1.5rem; }

.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  text-align: center;
  opacity: 0.7;
}

/* Footer — bilgilendirme alt bölüm */
.footer {
  background-color: #080809;
  background-image:
    linear-gradient(0deg, rgba(201, 169, 98, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, #0a0a0c 0%, #060607 100%);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-trust span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--glass-border);
  color: var(--gold);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--gold-light); }

.footer-contact p,
.footer-contact a {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.footer-locations {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white) !important;
  margin-bottom: 0.75rem !important;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--glass-border);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.8rem;
}

.footer-legal a:hover { color: var(--gold-light); }

/* Booking confirmation overlay */
.booking-confirm {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 10, 11, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}

.booking-confirm.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-confirm-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: min(420px, 92vw);
  padding: 1.1rem 1.35rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.booking-confirm-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.booking-confirm-text {
  flex: 1;
  min-width: 0;
}

.booking-confirm-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-muted);
  margin: 0.45rem 0 0;
}

.booking-confirm-btn {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.7rem;
}

.booking-confirm-card.is-done .booking-confirm-btn {
  display: inline-flex;
}

.booking-confirm-icon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
}

.booking-confirm-spinner {
  width: 26px;
  height: 26px;
  border: 2px solid rgba(201, 169, 98, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: bookingSpin 0.85s linear infinite;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.booking-confirm-check {
  position: absolute;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.booking-confirm-icon.is-success .booking-confirm-spinner {
  opacity: 0;
  transform: scale(0.5);
  animation: none;
}

.booking-confirm-icon.is-success .booking-confirm-check {
  opacity: 1;
  transform: scale(1);
}

@keyframes bookingSpin {
  to { transform: rotate(360deg); }
}

.booking-confirm-msg {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--champagne);
  margin: 0;
}

.booking-confirm-msg em,
.booking-confirm-msg strong {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 600;
  color: var(--white);
}

/* Touch devices — captions always visible */
@media (hover: none), (pointer: coarse) {
  .fleet-item figcaption {
    transform: translateY(0);
  }
}

body.nav-open {
  overflow: hidden;
}

/* Tablet & mobile */
@media (max-width: 1024px) {
  :root {
    --header-h: 72px;
  }

  .header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .container {
    width: min(1200px, calc(100vw - 1.5rem));
  }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.25rem 1.5rem 1.75rem;
    padding-bottom: calc(1.75rem + env(safe-area-inset-bottom));
    margin: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(10, 10, 11, 0.98);
    border-bottom: 1px solid var(--glass-border);
    gap: 0.25rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out), visibility 0.4s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    min-height: 44px;
    line-height: 1.4;
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .logo-name {
    font-size: 1.2rem;
  }

  .logo-vip {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
  }

  .logo-img {
    height: 44px;
    max-width: min(160px, 50vw);
  }

  .lang-btn {
    width: 46px;
    height: 34px;
    min-height: 44px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 1rem);
    padding-bottom: 4rem;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-subtitle {
    letter-spacing: 0.12em;
    font-size: 0.75rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .hero-stats {
    gap: 1.25rem;
    width: 100%;
  }

  .hero-stat-divider { display: none; }

  .section {
    padding: clamp(3.5rem, 10vw, 5rem) 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .fleet-main-caption {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: -1px;
    padding: 1.5rem 1.25rem;
  }

  .fleet-main-image { aspect-ratio: 16/10; }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .specs-list {
    gap: 1.5rem 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 2rem 1.25rem;
  }

  .testimonial p {
    font-size: clamp(1.15rem, 4.5vw, 1.45rem);
  }

  .testimonials-nav {
    gap: 1.25rem;
  }

  .testimonial-btn {
    min-width: 48px;
    min-height: 48px;
  }

  .testimonials-dots button {
    width: 12px;
    height: 12px;
    padding: 6px;
    background-clip: content-box;
  }

  .booking-form {
    padding: 1.5rem 1.25rem;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 16px;
  }

  .footer {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .booking-confirm-card {
    padding: 1rem 1.15rem;
    gap: 0.85rem;
  }

  .booking-confirm-msg {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .hero-eyebrow {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
  }

  .hero-location-sep {
    display: none;
  }

  .hero-eyebrow .hero-location:not(:last-child)::after {
    content: " · ";
    color: var(--gold-light);
    margin: 0 0.15em;
  }

  .section-title {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Regions overview */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.region-card {
  display: block;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--glass-border);
  background: rgba(20, 20, 22, 0.65);
  transition: border-color 0.35s, background 0.35s, transform 0.35s;
  text-align: center;
}

.region-card:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.08);
  transform: translateY(-3px);
}

.region-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.region-card span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.regions-cta {
  text-align: center;
  margin-top: 2rem;
}

/* How it works */
.howto-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.howto-step {
  padding: 1.75rem 1.5rem;
  border-left: 2px solid var(--gold-dark);
  background: rgba(20, 20, 22, 0.5);
}

.howto-step-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.howto-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.howto-step p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 2.5rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
}

.faq-q::after {
  content: "+";
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.is-open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.is-open .faq-a {
  max-height: 280px;
}

.faq-a p {
  padding-bottom: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--champagne);
}

/* Fleet summary */
.fleet-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem auto 2.5rem;
  max-width: 720px;
}

.fleet-summary li {
  text-align: center;
  padding: 1rem 0.75rem;
  border: 1px solid var(--glass-border);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
}

.fleet-summary-title {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 1rem;
}

.testimonial-verified {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 98, 0.35);
  padding: 0.35rem 0.75rem;
}

.booking-form .form-note a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: 1rem 1.25rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  background: rgba(10, 10, 11, 0.96);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  flex: 1;
  min-width: 200px;
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
}

.cookie-inner a {
  color: var(--gold-light);
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 0.55rem 1.25rem;
  font-size: 0.7rem;
}

.cookie-more {
  padding: 0.55rem 1rem;
  font-size: 0.7rem;
  border: 1px solid var(--glass-border);
  color: var(--champagne);
}

/* Floating bar */
.float-bar {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom));
  right: 1rem;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body:has(.cookie-banner:not([hidden])) .float-bar {
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
}

.float-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0.5rem 0.85rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s, background 0.3s;
}

.float-bar-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.float-bar-btn--wa {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.45);
}

.float-bar-btn--book {
  background: rgba(201, 169, 98, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Legal pages */
.legal-page {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.legal-page h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.8rem;
  color: var(--gray-muted);
  margin-bottom: 2rem;
}

.legal-body h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--gold-light);
}

.legal-body p,
.legal-body li {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-body a {
  color: var(--gold-light);
  text-decoration: underline;
}

.legal-back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
}

.legal-back:hover {
  color: var(--gold-light);
}

.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--header-h) 1.5rem 3rem;
}

@media (max-width: 1024px) {
  .float-bar-btn--book span {
    display: none;
  }

  .float-bar-btn--book {
    min-width: 48px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: opacity 0.3s; transform: none; }
  .hero-scroll-line { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
