/* ============================================================
   NNvipRent — Premium Style Sheet
   Aesthetic: Dark Luxury · Gold Accent · Editorial Typography
   Fonts: Cormorant Garamond (display) + Outfit (body)
   ============================================================ */

:root {
  --bg:        #080809;
  --bg-soft:   #0e0e10;
  --bg-card:   #111114;
  --text:      #ece9e3;
  --muted:     #9a9890;
  --gold:      #c9a96e;
  --gold-2:    #a07a3a;
  --gold-pale: rgba(201,169,110,.12);
  --gold-glow: rgba(201,169,110,.25);
  --border:    rgba(255,255,255,.07);
  --border-gold: rgba(201,169,110,.25);
  --shadow:    0 20px 60px rgba(0,0,0,.6);
  --radius:    16px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-2); border-radius: 3px; }

.container { width: min(1240px, 92%); margin-inline: auto; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(36px, 6vw, 88px); font-weight: 300; }
h2 { font-size: clamp(26px, 3.5vw, 52px); }
h3 { font-size: clamp(17px, 2vw, 26px); font-weight: 600; }
em { font-style: italic; color: var(--gold); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(201,169,110,.3);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,.45);
  filter: brightness(1.08);
}
.btn--ghost {
  background: rgba(255,255,255,.05);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
}
.btn--outline {
  background: transparent;
  border-color: rgba(201,169,110,.5);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}
.btn--lg { padding: 15px 32px; font-size: 15px; }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }

/* ===== SECTION ===== */
.section { padding: 90px 0; }
.section--dark { background: var(--bg-soft); }
.section__header {
  text-align: center;
  margin-bottom: 52px;
}
.section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section__header h2 { margin-bottom: 10px; }
.section__header p { color: var(--muted); max-width: 540px; margin-inline: auto; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,9,.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border-gold);
  transition: box-shadow var(--transition);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.brand__logo { height: 34px; width: auto; }
.brand__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
}

/* Nav */
.nav { margin-left: auto; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav__list a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav__list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__list a:hover { color: var(--text); }
.nav__list a:hover::after { width: 100%; }

/* Header right */
.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}

/* Lang switch */
.lang-switch select {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 8px;
  padding: 7px 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.lang-switch select:hover { border-color: var(--gold); color: var(--text); }

/* Social header */
.social-btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-shrink: 0;
}
.social-btn-header:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  filter: grayscale(.15) contrast(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(8,8,9,.75) 0%,
    rgba(8,8,9,.4) 50%,
    rgba(8,8,9,.85) 100%
  );
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 8vh;
  padding-bottom: 80px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero__line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero h1 {
  margin-bottom: 20px;
  max-width: 820px;
  animation: heroFadeUp .9s ease both;
}
.hero h1 em {
  display: block;
  font-weight: 300;
}
.hero p {
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 18px);
  margin-bottom: 36px;
  letter-spacing: .06em;
  animation: heroFadeUp .9s .15s ease both;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: heroFadeUp .9s .25s ease both;
}

/* Stats bar */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 20px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
  animation: heroFadeUp .9s .35s ease both;
}
.hero__stat {
  text-align: center;
  padding: 0 28px;
}
.hero__stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero__stat span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
  display: block;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-gold);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-inline: auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%       { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 1px var(--border-gold);
}
.service-card:hover::before { opacity: 1; }
.service-card--featured {
  background: linear-gradient(145deg, #13120e, var(--bg-card));
  border-color: var(--border-gold);
}
.service-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(201,169,110,.1);
  line-height: 1;
  margin-bottom: 12px;
  user-select: none;
}
.service-card__icon {
  font-size: 26px;
  margin-bottom: 14px;
}
.service-card h3 { margin-bottom: 10px; font-size: 22px; }
.service-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.service-card__arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  color: var(--gold);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}
.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== VEHICLES ===== */
.vehicles-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold);
}
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.vehicle-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.vehicle-card.hidden { display: none; }
.vehicle-card__img-wrap {
  position: relative;
  background: linear-gradient(180deg, #0f0e0b 0%, #111 100%);
  padding: 24px 20px 16px;
  overflow: hidden;
}
.vehicle-card__img-wrap img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  transition: transform var(--transition);
}
.vehicle-card:hover .vehicle-card__img-wrap img {
  transform: scale(1.04);
}
.vehicle-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(201,169,110,.15);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.vehicle-badge--gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #0a0a0a; border-color: transparent; }
.vehicle-badge--green { background: rgba(52,211,153,.15); border-color: rgba(52,211,153,.3); color: #34d399; }
.vehicle-badge--blue { background: rgba(59,130,246,.15); border-color: rgba(59,130,246,.3); color: #60a5fa; }
.vehicle-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.vehicle-card__body h3 {
  font-size: 18px;
  color: var(--text);
}
.vehicle-card__body p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: auto;
}
.vehicle-card__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  width: fit-content;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  /* Mobilde tıklanabilir alan büyüt */
  padding: 8px 0;
  margin-top: 10px;
}
.vehicle-card__cta:hover { border-color: var(--gold); gap: 4px; }
.vehicle-card__cta::after { content: ' →'; }

/* ===== GALLERY ===== */
.gallery-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}
.gallery-main {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: #0a0a0a;
}
.gallery-main-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main-media img,
.gallery-main-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}
.slider-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider-wrapper {
  overflow: hidden;
  flex: 1;
}
.slider-track {
  display: flex;
  gap: 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 0;
}
.slider-track img,
.slider-track video {
  height: 120px;
  min-width: 200px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  cursor: pointer;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: all var(--transition);
  filter: brightness(.8);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.slider-track img:hover,
.slider-track video:hover,
.slider-track img.active,
.slider-track video.active {
  border-color: var(--gold);
  filter: brightness(1);
  transform: scale(1.02);
}
.slider__nav {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: all var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
}
.slider__nav:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.slider__nav:active { background: var(--gold); color: #0a0a0a; }

/* ===== FLEET ===== */
.fleet {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}
.fleet__nav {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 22px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
}
.fleet__nav:hover { border-color: var(--gold); color: var(--gold); }
.fleet__nav:active { border-color: var(--gold); color: var(--gold); }
.fleet__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 18px;
  overflow: auto;
  scroll-behavior: smooth;
  padding: 8px 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.fleet__track::-webkit-scrollbar { display: none; }
.fleet__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.fleet__item:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.fleet__item img { width: 100%; height: 200px; object-fit: cover; }
.fleet__item-body { padding: 18px 20px 22px; }
.fleet__item h3 { font-size: 20px; margin-bottom: 6px; }
.fleet__item p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }

/* ===== RESERVATION ===== */
.reserve-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.reserve-info .section__label { display: block; margin-bottom: 12px; }
.reserve-info h2 { margin-bottom: 14px; }
.reserve-info > p { color: var(--muted); margin-bottom: 32px; }
.reserve-features { display: flex; flex-direction: column; gap: 14px; }
.reserve-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
}
.reserve-feature__icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
}

/* Form */
.form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px; /* iOS zoom önleme için 16px */
  outline: none;
  transition: all var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,.05);
  box-shadow: 0 0 0 3px rgba(201,169,110,.1);
}
.field input::placeholder { color: rgba(154,152,144,.5); }
.field select option { background: var(--bg-soft); }
.form__actions {
  display: flex;
  gap: 12px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 18px;
}
.contact__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.contact__card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.contact__card--featured {
  border-color: var(--border-gold);
  background: linear-gradient(145deg, #12100b, var(--bg-card));
}
.contact__icon { font-size: 28px; margin-bottom: 12px; }
.contact__card h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact__card a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  display: block;
  margin-bottom: 8px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.contact__card a:hover { color: var(--gold); }
.contact__badge {
  display: inline-block;
  background: rgba(52,211,153,.1);
  border: 1px solid rgba(52,211,153,.2);
  color: #34d399;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 6px;
}

/* ===== TURSAB ===== */
.tursab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 48px 0;
  border-top: 1px solid var(--border-gold);
}
.tursab-left p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.tursab-left strong { color: var(--gold); font-weight: 700; }
.tursab-badge img {
  width: 180px;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  filter: grayscale(.3);
}
.tursab-badge img:hover {
  filter: grayscale(0);
  transform: scale(1.03);
  border-color: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
  background: #050506;
  border-top: 1px solid var(--border-gold);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo { height: 26px; opacity: .85; }
.footer__brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
}
.footer__copy { font-size: 13px; color: rgba(154,152,144,.6); }
.footer__right { display: flex; align-items: center; gap: 14px; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.social-icon:hover { color: var(--gold); border-color: var(--gold); }
.to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.to-top:hover { border-color: var(--gold); color: var(--gold); }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.whatsapp-fab:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
}
.whatsapp-fab:active {
  transform: scale(0.96);
}
.whatsapp-fab__pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reserve-layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid .contact__card:last-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  /* Nav */
  .nav__toggle { display: flex; }
  .nav {
    position: static;
  }
  .nav__list {
    position: fixed;
    right: 4%;
    top: 66px;
    background: rgba(10,10,12,.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
    display: none;
    min-width: 220px;
    z-index: 200;
    box-shadow: 0 20px 60px rgba(0,0,0,.7);
  }
  .nav__list.open { display: flex; }
  .nav__list li { width: 100%; }
  .nav__list a {
    font-size: 15px;
    color: var(--text);
    padding: 8px 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav__list li:last-child a { border-bottom: none; }

  /* Hero stats */
  .hero__stats {
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
    justify-content: center;
    padding: 16px 10px;
  }
  .hero__stat { flex: 1; min-width: 110px; padding: 8px 16px; }
  .hero__stat-divider { display: none; }
}

@media (max-width: 700px) {
  /* Genel */
  .section { padding: 56px 0; }
  .section__header { margin-bottom: 36px; }

  /* Header */
  .header__inner { gap: 8px; padding: 11px 0; }
  .header__right { gap: 6px; margin-left: 6px; }

  /* Küçük butonlar */
  .header__right .btn {
    padding: 8px 12px;
    font-size: 12px;
    gap: 4px;
  }
  .header__right .btn svg { width: 12px; height: 12px; }
  .social-btn-header { width: 32px; height: 32px; }
  .lang-switch select { padding: 6px 8px; font-size: 12px; }

  /* Hero */
  .hero__content { padding-top: 5vh; padding-bottom: 50px; }
  .hero__eyebrow { font-size: 10px; gap: 10px; margin-bottom: 16px; }
  .hero__line { max-width: 30px; }
  .hero h1 { margin-bottom: 16px; }
  .hero p { margin-bottom: 28px; }
  .hero__actions { gap: 10px; margin-bottom: 40px; }
  .hero__actions .btn--lg { padding: 13px 24px; font-size: 14px; }
  .hero__stats { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 20px; }
  .service-card__num { font-size: 40px; }
  .service-card h3 { font-size: 20px; }

  /* Vehicles - 2 kolon */
  .vehicles-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .vehicles-filter { gap: 8px; }
  .filter-btn { padding: 7px 14px; font-size: 11px; letter-spacing: .04em; }
  .vehicle-card__img-wrap { padding: 16px 14px 10px; }
  .vehicle-card__img-wrap img { height: 120px; }
  .vehicle-card__body { padding: 12px 14px 14px; gap: 4px; }
  .vehicle-card__body h3 { font-size: 14px; }
  .vehicle-card__body p { font-size: 11px; }
  .vehicle-card__cta { font-size: 11px; }
  .vehicle-badge { font-size: 9px; padding: 3px 7px; }

  /* Gallery */
  .gallery-main-media { max-height: 56vw; }
  .slider-track { gap: 10px; }
  .slider-track img, .slider-track video { height: 80px; min-width: 130px; }
  .slider__nav { width: 32px; height: 32px; font-size: 18px; }

  /* Fleet */
  .fleet__track { grid-auto-columns: minmax(240px, 1fr); }
  .fleet__nav { width: 38px; height: 38px; font-size: 18px; border-radius: 10px; }
  .fleet__item img { height: 170px; }

  /* Reservation */
  .form { padding: 20px 16px; border-radius: 16px; }
  .form__grid { grid-template-columns: 1fr; gap: 12px; }
  .form__actions { flex-direction: column; gap: 10px; }
  .form__actions .btn { width: 100%; justify-content: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .contact__card:last-child { grid-column: unset; }
  .contact__card { padding: 22px 18px; }

  /* Tursab */
  .tursab { flex-direction: column; align-items: center; text-align: center; padding: 36px 0; }

  /* Footer */
  .footer__inner { flex-wrap: wrap; gap: 12px; justify-content: center; text-align: center; padding: 20px 0; }

  /* WhatsApp FAB */
  .whatsapp-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  /* Brand */
  .brand__name { display: none; }
  .brand__logo { height: 28px; }

  /* Header — sadece önemli elemanlar */
  .social-btn-header { display: none; }
  /* Ara butonu yerine sadece tel linki */
  .header__right #callTop {
    padding: 8px 12px;
    font-size: 12px;
  }
  .header__right .btn--gold {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* Nav */
  .nav__list { right: 2%; min-width: 200px; top: 60px; }

  /* Hero */
  .hero__eyebrow { font-size: 9px; letter-spacing: .12em; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn--lg { width: 100%; justify-content: center; }

  /* Vehicles — küçük ekranda 2 kolon kalsın ama daha ufak */
  .vehicles-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .vehicle-card__img-wrap img { height: 95px; }
  .vehicle-card__body h3 { font-size: 13px; }
  .vehicle-card__body p { display: none; } /* yerden tasarruf */
  .vehicle-card__cta { margin-top: 6px; padding: 6px 0; }

  /* Gallery */
  .slider-track img, .slider-track video { height: 65px; min-width: 100px; }

  /* Sections */
  .section { padding: 44px 0; }
  .section__header { margin-bottom: 28px; }
  h2 { font-size: clamp(22px, 6vw, 36px); }
}

/* ===== TOUCH CIHAZLAR — hover takılmasını önle ===== */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .vehicle-card:hover,
  .fleet__item:hover,
  .contact__card:hover {
    transform: none;
    box-shadow: none;
  }
  .btn--gold:hover {
    transform: none;
    filter: none;
  }
  .whatsapp-fab:hover { transform: none; }
  /* Active states ile feedback ver */
  .btn:active { opacity: .85; transform: scale(.97); }
  .filter-btn:active { background: var(--gold-pale); border-color: var(--gold); color: var(--gold); }
  .vehicle-card__cta:active { color: var(--gold-2); }
  .slider__nav:active, .fleet__nav:active { background: var(--gold); color: #0a0a0a; }
}

/* ===== FOCUS / A11Y ===== */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ===== RTL SUPPORT ===== */
[dir="rtl"] .nav { margin-left: 0; margin-right: auto; }
[dir="rtl"] .header__right { margin-left: 0; margin-right: 16px; }
[dir="rtl"] .hero__stat-divider { display: none; }
[dir="rtl"] .nav__list { right: auto; left: 4%; }

/* ===== SAFARİ / WEBKİT DÜZELTMELER ===== */

/* Safari'de position:sticky sorunları */
.header {
  position: -webkit-sticky;
  position: sticky;
}

/* Safari'de backdrop-filter için fallback */
@supports not (backdrop-filter: blur(1px)) {
  .header { background: rgba(8,8,9,.98); }
  .nav__list { background: rgba(10,10,12,.99); }
  .hero__stats { background: rgba(20,18,14,.95); }
}

/* Safari'de min-height: 100svh desteği */
@supports not (min-height: 100svh) {
  .hero { min-height: 100vh; min-height: -webkit-fill-available; }
}

/* Safari'de gap ile flexbox sorunu */
.hero__actions { gap: 14px; }
.header__right { gap: 10px; }
.form__actions { gap: 12px; }

/* Safari'de width: fit-content */
.hero__stats {
  width: -webkit-fit-content;
  width: fit-content;
}
.vehicle-card__cta {
  width: -webkit-fit-content;
  width: fit-content;
}

/* Safari'de aspect-ratio fallback */
@supports not (aspect-ratio: 16/9) {
  .gallery-main-media {
    padding-top: 56.25%;
    position: relative;
    height: 0;
  }
  .gallery-main-media img,
  .gallery-main-media video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
  }
}

/* Safari'de select görünümü */
.lang-switch select,
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239a9890' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* Safari'de input date/time renk sorunu */
input[type="date"],
input[type="time"] {
  color-scheme: dark;
  color: var(--text);
}

/* Safari'de grid auto-flow sorun */
.fleet__track {
  display: -webkit-grid;
  display: grid;
}

/* Safari'de transform + border-radius overflow sorunu */
.vehicle-card,
.service-card,
.fleet__item,
.gallery-main {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  isolation: isolate;
}

/* Safari'de animasyon */
@keyframes heroFadeUp {
  from { opacity: 0; -webkit-transform: translateY(24px); transform: translateY(24px); }
  to   { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes waPulse {
  0%   { -webkit-transform: scale(1); transform: scale(1); opacity: .5; }
  100% { -webkit-transform: scale(1.6); transform: scale(1.6); opacity: 0; }
}
@keyframes scrollLine {
  0%, 100% { opacity: 0; -webkit-transform: scaleY(0); transform: scaleY(0); -webkit-transform-origin: top; transform-origin: top; }
  50%       { opacity: 1; -webkit-transform: scaleY(1); transform: scaleY(1); -webkit-transform-origin: top; transform-origin: top; }
}

/* Safari mobil — safe area (notch/home bar) */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .whatsapp-fab {
    bottom: calc(28px + env(safe-area-inset-bottom));
    right: calc(28px + env(safe-area-inset-right));
  }
  .footer {
    padding-bottom: env(safe-area-inset-bottom);
  }
  @media (max-width: 700px) {
    .whatsapp-fab {
      bottom: calc(20px + env(safe-area-inset-bottom));
      right: calc(20px + env(safe-area-inset-right));
    }
  }
}

/* Safari'de overflow:hidden ile sticky header çakışması */
body { overflow-x: clip; }

/* iPhone Safari'de 100vh sorununu tamamen çöz */
@media screen and (max-width: 900px) {
  .hero {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
}