/* =====================================================
   ONAT VIP – style.css
   Bu dosya sitenin tamamını güzel gösteren stil dosyası.
   Renkler, yazı tipleri, kutucuklar, animasyonlar hepsi buradan geliyor
   ===================================================== */

/* === RESET & BASE ===
    bu kısım önce tarayıcıların kendi varsayılan stillerini sıfırlıyor.
   Her tarayıcı farklı boşluk ekliyor, biz onu sıfırılayarak temiz başlıyoruz */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Buraya bak, sitenin renk paleti ve yazı tipleri burada tanımlanıyor.
   Bu değişkenleri bir kez yazıyoruz, sürekli tekrar tekrar yazmak zorunda kalmıyoruz */
:root {
  --dark: #1a1a2e;
  /* Koyu lacivert - navbar, footer, araç kartları */
  --dark2: #16213e;
  /* Biraz daha koyu lacivert - hover efektleri */
  --gold: #c5a55a;
  /* Altın rengi - Sena bu renk her yerde! Başlıklar, butonlar, çizgiler */
  --gold-light: #d4b96a;
  /* Açık altın - hover anında değişen renk */
  --white: #ffffff;
  /* Beyaz */
  --gray-bg: #f5f5f5;
  /* Hafif gri arka plan - altın renk bölümler için */
  --gray-light: #e8e8e8;
  /* Çerçeveler için açık gri */
  --gray-text: #666;
  /* Gri metin rengi - açıklamalar için */
  --text: #333;
  /* Ana metin rengi - koyu gri */
  --font-heading: 'Playfair Display', Georgia, serif;
  /* Süslü serif yazı - başlıklar için */
  --font-body: 'Inter', -apple-system, sans-serif;
  /* Modern sans-serif - normal metinler için */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === TOPBAR ===
   Bu en üstteki ince koyu şerit. Tel ve dil butonları buraya ait. */
.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  padding: 6px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-phone {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.topbar-phone:hover {
  color: var(--gold-light);
}

.topbar-right {
  display: flex;
  gap: 4px;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  padding: 2px 8px;
  font-size: 11px;
  cursor: pointer;
  border-radius: 3px;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* === NAVBAR ===
   Cücüm bu sayfaya yapışık kalan üst menü. Sayfa aşağı kaydırılınca hafif gölge alıyor */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.site-logo {
  max-height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--dark);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--dark2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: 0.3s;
}

/* === HERO ===
   Bu sayfanın en üstündeki büyük görsel alan. Arka plan resmi + karanlık filtre +
   üstünde başlık ve hızlı arama formu var. */
.hero {
  position: relative;
  height: 500px;
  background: url('images/hero-bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 46, 0.7) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  margin-bottom: 32px;
  font-weight: 300;
}

/* === HERO BOOKING FORM ===
   bu hero içindeki beyaz kutucuk arama formu. Nereden, nereye, kaç kişi ve ARA butonu. */
.hero-booking {
  background: var(--white);
  border-radius: 6px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.booking-field label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.booking-field select {
  border: 1px solid var(--gray-light);
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  appearance: auto;
}

.booking-field select:focus {
  border-color: var(--gold);
  outline: none;
}

.booking-btn {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 10px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 1px;
  transition: background 0.2s;
  white-space: nowrap;
}

.booking-btn:hover {
  background: var(--gold-light);
}

/* === TICKER ===
    Bu soldan sağa sürekli kayan yazı bandı. CSS animation ile sonsuz döngüde kayan metin yapılıyor  */
.ticker-wrap {
  background: var(--dark);
  overflow: hidden;
  padding: 10px 0;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}

.ticker span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0 6px;
}

.ticker-dot {
  color: rgba(197, 165, 90, 0.4);
  font-size: 10px;
  padding: 0 4px;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === HOW IT WORKS ===
    "Nasıl Çalışır?" bölümü. 3 adım yan yana sıralanıyor, mobilde alta alta ınıyor. */
.how-it-works {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.how-step {
  position: relative;
}

.how-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.how-step h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 8px;
}

.how-step p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* === TRUST STRIP ===
    bu "✓ Sabit Fiyat, ✓ 7/24 Hizmet..." yazan güven rozetleri şeridi. */
.trust-strip {
  padding: 16px 0;
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-light);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.trust-check {
  color: var(--gold);
  font-weight: 700;
  margin-right: 4px;
}

/* === SECTIONS ===
    Sayfadaki tüm bölümler bu .section sınıfını kullanıyor. .section-alt gri arka plan veriyor. */
.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--gray-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
}

.title-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
}

.section-desc {
  color: var(--gray-text);
  margin-top: 14px;
  font-size: 15px;
}

/* === SERVICE CARDS ===
    hizmet kartları bunlar (Havalimanı Transferi vs.). Üzerine gelinince hafif yukarı kalkıyor  */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.service-card.featured {
  border-color: var(--gold);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 3px;
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--gray-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray-text);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.card-features {
  margin-bottom: 20px;
}

.card-features li {
  font-size: 13px;
  color: var(--text);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.card-btn {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.card-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* === ROUTES ===
    popüler güzergah kartları (Antalya → Alanya gibi). Tıklanınca rezervasyon formunu dolduruyor. */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.route-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 20px;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.route-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.route-from-to {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 6px;
}

.route-arrow {
  color: var(--gold);
}

.route-details {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-text);
}

.route-call {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 14px;
  border-radius: 3px;
  text-align: center;
  transition: all 0.2s;
}

.route-call:hover {
  background: var(--gold);
  color: var(--white);
}

/* === GALLERY ===
   Araç fotograf galerisi. Üzerine gelinince fotoğraflar hafif büyüyor  */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4 / 3;
}

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

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

/* === VEHICLE SELECTION ===
   Rezervasyon formunun üzerindeki araç seçim kartları. Seçilince altın çerçeve alıyor. */
.vehicle-selection {
  margin-bottom: 36px;
}

.vehicle-title {
  font-family: var(--font-heading);
  font-size: 22px;
  text-align: center;
  color: var(--dark);
  margin-bottom: 24px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vehicle-card {
  background: var(--dark);
  border: 1px solid rgba(197, 165, 90, 0.25);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.vehicle-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(197, 165, 90, 0.15);
  transform: translateY(-4px);
}

.vehicle-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold), 0 8px 30px rgba(197, 165, 90, 0.2);
}

.vehicle-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.vehicle-img-wrap {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 6px;
}

.vehicle-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.vehicle-card:hover .vehicle-img-wrap img {
  transform: scale(1.05);
}

.vehicle-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}

.vehicle-specs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.vehicle-spec {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--gold);
  background: rgba(197, 165, 90, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
}

.vehicle-features {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.vehicle-features span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 8px;
  border-radius: 3px;
}

.vehicle-select-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 24px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  transition: all 0.2s;
  width: 100%;
}

.vehicle-select-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.vehicle-card.selected .vehicle-select-btn {
  background: var(--gold);
  color: var(--dark);
}

.vehicle-selected-info {
  margin-top: 20px;
  background: rgba(197, 165, 90, 0.08);
  border: 1px solid rgba(197, 165, 90, 0.25);
  border-radius: 6px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.vehicle-selected-info span:first-child {
  font-size: 16px;
}

.vehicle-change-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  margin-left: 8px;
  transition: all 0.2s;
}

.vehicle-change-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* === FORM ===
   asıl rezervasyon formu bunun stilleri. İki sütunlu layout, odaklanınca altın kenarlık. */
.form-wrap {
  max-width: 740px;
  margin: 0 auto;
}

.booking-form {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 12px 32px;
  font-size: 15px;
}

.btn-gold:hover {
  background: var(--gold-light);
}

.form-submit {
  width: 100%;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 14px;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--dark);
}

.form-success p {
  color: var(--gray-text);
  margin-bottom: 20px;
}

/* === FAQ ===
   Akordiyon (açılır-kapanır) SSS bölümü. "open" sınıfı eklenince cevap açılıyor */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* === CONTACT ===
   iletişim kartları. WhatsApp kartı üzerine gelinince tamamen yeşile dönüşüyor */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.contact-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
}

.contact-action {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

.whatsapp-card {
  border-color: #25D366;
}

.whatsapp-card:hover {
  background: #25D366;
}

.whatsapp-card:hover h4,
.whatsapp-card:hover p,
.whatsapp-card:hover .contact-action {
  color: var(--white);
}

/* === FOOTER ===
   en alttaki koyu footer. Logo, linkler, sosyal medya ve telif hakkı var  */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo .site-logo {
  max-height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-links-col h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-col ul li {
  margin-bottom: 8px;
}

.footer-links-col ul li a,
.footer-links-col ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* === FLOATING ===
    Bunlar ekranda sürünen sabit butonlar. WhatsApp (sağ-alt), Instagram (sağ-alt üstünde),
   ve Yukarı Çık butonu (sol-alt). position: fixed ile ekranda sabit duruyorlar canım! */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: transform 0.2s;
}

.float-whatsapp:hover {
  transform: scale(1.1);
}

.float-instagram {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
  z-index: 999;
  transition: transform 0.2s;
}

.float-instagram:hover {
  transform: scale(1.1);
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 42px;
  height: 42px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold);
}

/* === TOAST ===
    bu form gönderilince ekranın köşesinden süzülen bildirim kutusu!
   .show sınıfı eklenince sağdan kaymaya başlıyor, 4 saniye sonra geri gidiyor. */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transform: translateX(120%);
  transition: transform 0.4s;
  z-index: 10000;
  border-left: 3px solid var(--gold);
}

.toast.show {
  transform: translateX(0);
}

/* === KVKK ===
   çerez (cookie) bannerı ekranın tam altına yapışık. Kabul/Reddet butonları var. */
.kvkk-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 16px 0;
  z-index: 9999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kvkk-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.kvkk-inner p {
  font-size: 13px;
}

.kvkk-link {
  color: var(--gold);
}

.kvkk-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.kvkk-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
}

.kvkk-accept {
  background: var(--gold);
  color: var(--white);
}

.kvkk-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* === MOBILE STICKY ===
   Bu sadece telefonda (768px altı) görünen yapışık alt buton şeridi.
   Ara, Rezervasyon ve WhatsApp butonları hep görünür kalıyor  */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  z-index: 998;
  padding: 8px 12px;
  gap: 8px;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.mobile-cta-call {
  background: var(--dark);
  color: var(--white);
}

.mobile-cta-book {
  background: var(--gold);
  color: var(--white);
}

.mobile-cta-wa {
  background: #25D366;
  color: var(--white);
}

/* === RESPONSIVE ===
   Burası çok önemli. Farklı ekran boyutlarında (tablet, telefon)
   layout'un bozulmaması için sütunları tek sütuna dönüştürüyoruz. */
@media (max-width: 1024px) {

  /*bu tablet boyutu. Bazı çok sütunlu alanlar 2 sütuna iniyor. */
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {

  /* Topbar gizle */
  .topbar {
    display: none;
  }

  /* Navbar */
  .nav-container {
    height: 56px;
  }

  .logo-main {
    font-size: 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px;
    gap: 0;
    border-bottom: 1px solid var(--gray-light);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero - mobil optimize */
  .hero {
    height: auto;
    min-height: 480px;
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-booking {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 14px !important;
    border-radius: 8px !important;
    width: 100% !important;
  }

  .booking-field {
    width: 100% !important;
    flex: none !important;
  }

  .booking-field select {
    padding: 12px 14px !important;
    font-size: 16px !important;
    border-radius: 6px !important;
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .booking-field label {
    font-size: 12px !important;
    margin-bottom: 3px !important;
    text-align: left !important;
    display: block !important;
  }

  .booking-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
    margin-top: 4px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Ticker */
  .ticker-wrap {
    padding: 8px 0;
  }

  .ticker span {
    font-size: 12px;
  }

  /* How it works */
  .how-it-works {
    padding: 28px 0;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-num {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .how-step h4 {
    font-size: 15px;
  }

  .how-step p {
    font-size: 13px;
  }

  /* Trust strip */
  .trust-strip {
    padding: 14px 0;
  }

  .trust-items {
    gap: 10px 20px;
    justify-content: center;
  }

  .trust-item {
    font-size: 12px;
  }

  /* Sections */
  .section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-desc {
    font-size: 14px;
  }

  .title-line {
    margin: 10px auto 0;
  }

  /* Service cards */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 13px;
  }

  .card-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 6px;
  }

  .card-icon-wrap {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .featured-badge {
    font-size: 10px;
    padding: 3px 10px;
    top: -10px;
    right: 14px;
  }

  /* Routes */
  .routes-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-card {
    flex-direction: column;
    padding: 16px;
    gap: 8px;
  }

  .route-from-to {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .route-details {
    font-size: 12px;
  }

  .route-call {
    margin-top: 4px;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 6px;
    white-space: nowrap;
    display: block;
    text-align: center;
    width: 100%;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .booking-form {
    padding: 20px 16px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px;
    /* iOS zoom önleme */
    border-radius: 6px;
  }

  .form-submit {
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
  }

  .form-note {
    font-size: 11px;
  }

  .form-success {
    padding: 32px 16px;
  }

  .form-success h3 {
    font-size: 20px;
  }

  /* FAQ */
  .faq-question {
    padding: 16px 0;
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-card {
    padding: 20px 14px;
  }

  .contact-card h4 {
    font-size: 12px;
  }

  .contact-card p {
    font-size: 14px;
  }

  .contact-action {
    font-size: 12px;
  }

  /* Footer */
  .footer {
    padding: 36px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-links-col h5 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-links-col ul li a {
    font-size: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 0;
  }

  /* Floating butonlar - mobilde sağ alt */
  .float-whatsapp {
    bottom: 72px !important;
    right: 16px !important;
    left: auto !important;
    width: 50px !important;
    height: 50px !important;
  }

  .float-instagram {
    bottom: 130px !important;
    right: 16px !important;
    left: auto !important;
    width: 46px !important;
    height: 46px !important;
  }

  /* Mobile sticky CTA */
  .mobile-sticky-cta {
    display: flex;
    padding: 8px 10px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .mobile-cta-btn {
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
  }

  /* Scroll top */
  .scroll-top {
    bottom: 72px;
    left: 16px;
    right: auto;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  /* KVKK */
  .kvkk-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .kvkk-inner p {
    font-size: 12px;
  }

  .kvkk-banner {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}

/* Çok küçük ekranlar (iPhone SE vb.) */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 22px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .hero-booking {
    padding: 12px;
  }

  .booking-field select {
    padding: 10px 12px;
    font-size: 15px;
  }

  .section-title {
    font-size: 21px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .route-from-to {
    font-size: 14px;
  }

  .mobile-cta-btn {
    font-size: 12px;
    padding: 10px 6px;
  }
}