/* ============================================
   EYE Uluslararası Taşımacılık - Main CSS
   Premium Dark Theme Logistics Website
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* ---- Marka renkleri ----
     Palet doğrudan logodan (images/eye/eyelogo.png) türetilmiştir.
     Logo iki renkten oluşur:
       #2C0A5C  derin mor  — hsl(265,80%,20%) — logo pikselinin %70'i
       #E2A94F  altın      — hsl( 37,72%,60%) — logo pikselinin %29'u
     Logoda kırmızı YOKTUR; eski kırmızı CTA rengi marka moruna taşındı.
     Yüzey ve metin tonları logonun 265° mor hue'sundan üretilmiştir. */
  --brand-violet: #2C0A5C;   /* logodan birebir */
  --brand-gold:   #E2A94F;   /* logodan birebir */

  /* Yüzeyler — beyaz tema, mor tonlu açık kademeler */
  --primary: #FFFFFF;        /* sayfa zemini */
  --primary-light: #FBF9FD;  /* kart / dropdown / üst bar */
  --primary-mid: #F5F2FA;    /* alternatif bölüm */
  --secondary: #E9E1F4;      /* chip / yumuşak yüzey */

  /* Altın — logodan. Beyaz üstünde DOLGU/ÇİZGİ olarak kullanılır;
     metin ve ikon için --accent-gold-deep gerekir (2.10:1 vs 5.97:1). */
  --accent-gold: #E2A94F;
  --accent-gold-light: #ECB357;
  --accent-gold-dark: #CB933C;
  --accent-gold-deep: #885A11;   /* metin altını: beyaz 5.97:1, footer 5.39:1, chip 4.70:1 */

  /* Mor — birincil CTA. Beyaz zeminde logonun gerçek moru birebir kullanılır. */
  --accent-violet: #2C0A5C;
  --accent-violet-hover: #451095;

  /* Metin — siyah eksenli nötrler. Mor tonlu metin footer gibi
     yoğun kullanılan yerlerde fazla baskın duruyordu; marka rengi
     artık yalnızca vurgu ve dolgularda. */
  --text-strong: #12121A;    /* başlık      18.63:1 */
  --text-light: #2B2B33;     /* gövde       14.04:1 */
  --text-muted: #55555F;     /* soluk        7.37:1 */
  --text-dark: #7C7C87;      /* en soluk     4.13:1 */

  --border-subtle: rgba(44,10,92,0.11);
  --border-strong: rgba(44,10,92,0.28);
  --border-gold: rgba(226,169,79,0.55);
  --glass: rgba(44,10,92,0.04);
  --glass-hover: rgba(44,10,92,0.07);
  --card-bg: #FFFFFF;
  --overlay-dark: rgba(20,8,40,0.62);
  --overlay-darker: rgba(20,8,40,0.78);

  /* ---- Bağlama duyarlı belirteçler ----
     Beyaz zeminde altın metin okunmaz (2.10:1), bu yüzden metin/ikon rengi
     ayrı bir belirteçtir. Koyu bölümler (.hero, .page-banner, .cta-strip,
     .cta-panel) bu belirteçleri kendi içlerinde parlak tona geri çevirir. */
  --gold-text: var(--accent-gold-deep);  /* altın metin/ikon */
  --on-violet: #FFFFFF;                  /* mor dolgu üstündeki metin */
  --on-gold: #2A1505;                    /* altın dolgu üstündeki metin */

  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Spacing */
  --section-py: 96px;
  --container-max: 1280px;
  --container-padding: 24px;

  /* Geçişler — yay benzeri eğri.
     apple-design: hareket, süre eğrisi yerine yay gibi davranmalı;
     hızlı çıkıp yumuşak oturur, sonda "fren" hissi vermez.
     cubic-bezier(.16,1,.3,1) kritik sönümlü yayın yakın karşılığıdır. */
  --ease-spring: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --transition: all 0.32s var(--ease-spring);
  --transition-slow: all 0.55s var(--ease-spring);
  --transition-press: all 0.06s linear;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(30,17,49,0.08);
  --shadow-md: 0 6px 20px rgba(30,17,49,0.10);
  --shadow-lg: 0 20px 50px rgba(30,17,49,0.14);
  --shadow-gold: 0 4px 18px rgba(226,169,79,0.42);
  --shadow-violet: 0 6px 22px rgba(44,10,92,0.26);

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--primary);
  color: var(--text-strong);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- Utility Classes ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-strong);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-violet {
  background: var(--accent-violet);
  color: var(--on-violet);
  box-shadow: var(--shadow-violet);
}
.btn-violet:hover {
  background: var(--accent-violet-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(44,10,92,0.34);
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--on-gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(226,169,79,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-strong);
  border: 2px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--gold-text);
  color: var(--gold-text);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--glass);
  color: var(--text-light);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--glass-hover);
  border-color: var(--gold-text);
  color: var(--gold-text);
}

/* Arrow Icon */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-text);
  transition: var(--transition);
}
.btn-arrow:hover { gap: 10px; }
.btn-arrow svg { transition: var(--transition); }

/* ============================================
   TOP INFO BAR
   ============================================ */
.top-bar {
  background: var(--primary-light);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  transition: var(--transition);
}
.top-bar-item:hover { color: var(--gold-text); }
.top-bar-item svg { color: var(--gold-text); flex-shrink: 0; }

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #15803D;
}
.live-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 1.5s ease infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.lang-switcher {
  display: flex;
  gap: 4px;
}
.lang-switcher a {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.lang-switcher a:hover, .lang-switcher a.active {
  color: var(--gold-text);
  background: rgba(226,169,79,0.1);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 6px 28px rgba(30,17,49,0.10);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--accent-violet);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}
.logo-icon span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.logo-icon small {
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1;
}
.logo-text small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-item:hover .nav-link {
  color: var(--text-strong);
  background: var(--glass);
}
.nav-link.active {
  color: var(--gold-text);
}
.nav-link svg { transition: var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--primary-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
  overflow: hidden;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover {
  color: var(--gold-text);
  background: var(--glass);
  padding-left: 24px;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--primary-light);
  border-top: 1px solid var(--border-subtle);
  padding: 16px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold-text); padding-left: 32px; }
.mobile-menu .mobile-sub a {
  font-size: 13px;
  padding-left: 40px;
  color: var(--text-dark);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: wa-pulse 3s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14,7,24,0.92) 0%,
    rgba(14,7,24,0.75) 55%,
    rgba(14,7,24,0.5) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  min-height: 92vh;
}

/* Hero Content */
.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(226,169,79,0.1);
  border: 1px solid rgba(226,169,79,0.25);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text-strong);
}
.hero-title .highlight {
  color: var(--gold-text);
  display: block;
}
.hero-title .highlight-red {
  color: var(--accent-violet);
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.hero-feature svg { color: var(--gold-text); }

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Quote Form */
.quote-form {
  background: var(--card-bg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226,169,79,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.quote-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.quote-form-header svg { color: var(--gold-text); }
.quote-form-header h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-strong);
}

.form-group {
  margin-bottom: 12px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-strong);
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-text);
  background: rgba(226,169,79,0.05);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--primary-light); color: var(--text-strong); }

.quote-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 14px;
  padding: 16px;
}

.form-security {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-dark);
}
.form-security svg { color: #15803D; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--primary-mid);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  border-right: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--glass); }

.stat-icon {
  width: 48px; height: 48px;
  background: rgba(226,169,79,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-text);
}

.stat-content {}
.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--text-strong);
  line-height: 1;
  margin-bottom: 2px;
  /* Sayaç dolarken düzen kaymasın:
     · tabular-nums  -> her rakam eşit genişlikte, sayı titremez
     · min-width     -> "0" ile "250+" arasında kutu daralmaz
     Öncesinde rakam büyüdükçe kutu genişliyor ve komşu
     öğeleri itiyordu (görünür düzen kayması). */
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
  min-width: 4ch;
  display: block;
  white-space: nowrap;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--primary);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  group: true;
}
.service-card:hover {
  border-color: var(--gold-text);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(226,169,79,0.1);
}

.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.service-card:hover .service-img img { transform: scale(1.05); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,7,24,0.9) 0%, transparent 60%);
}

.service-icon-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 44px; height: 44px;
  background: var(--accent-violet);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-violet);
}

.service-body {
  padding: 20px;
}
.service-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-text);
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { transition: var(--transition); }

/* ============================================
   MAP / COUNTRIES SECTION
   ============================================ */
.map-section {
  padding: var(--section-py) 0;
  background: var(--primary-light);
  position: relative;
  overflow: hidden;
}
.map-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* Tek odaklı dikey düzen: başlık -> animasyonlu harita -> ülke şeridi.
   Eski iki sütunlu ızgara (1fr 280px) kaldırıldı; harita, rota şeridi ve
   bayraklar sütunlara dağılıp birbiriyle yarışıyordu. */
.map-section .container { display: block; }

.map-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.map-head .section-subtitle { margin-bottom: 0; }
.map-btn { margin-top: 26px; }

.countries-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}
.more-countries {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gold-text);
  font-weight: 600;
  text-align: center;
}

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet {
  padding: var(--section-py) 0;
  background: var(--primary);
}

.fleet-header {
  text-align: center;
  margin-bottom: 56px;
}

.fleet-slider-wrapper {
  position: relative;
  overflow: hidden;
}
.fleet-slider {
  display: flex;
  gap: 20px;
  /* Konum artık script.js'te yay ile kare kare sürülüyor.
     CSS geçişi bırakılırsa her kare ayrıca geçişe girip
     hareketi geciktirir — bu yüzden yok. */
  will-change: transform;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.fleet-slider.dragging { cursor: grabbing; }
.fleet-slider:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: 4px; }
.fleet-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-width: calc(25% - 15px);
  flex-shrink: 0;
  transition: var(--transition);
}
.fleet-card:hover {
  border-color: var(--gold-text);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.fleet-card-img {
  height: 180px;
  overflow: hidden;
}
.fleet-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.05); }

.fleet-card-body {
  padding: 20px;
}
.fleet-card-body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 12px;
}
.fleet-specs {
  display: flex;
  gap: 16px;
}
.fleet-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}
.fleet-spec svg { color: var(--gold-text); }

/* Slider Controls */
.fleet-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.fleet-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.fleet-btn:hover {
  background: var(--accent-gold);
  border-color: var(--gold-text);
  color: var(--on-gold);
}
.fleet-dots {
  display: flex;
  gap: 6px;
}
.fleet-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-subtle);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.fleet-dot.active {
  background: var(--accent-gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   WHY EYE SECTION
   ============================================ */
.why-eye {
  padding: var(--section-py) 0;
  background: var(--primary-mid);
  position: relative;
  overflow: hidden;
}
.why-eye::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(226,169,79,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-eye-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.why-feature {
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
}
.why-feature:hover {
  background: var(--glass-hover);
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.why-feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(226,169,79,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-text);
  margin-bottom: 14px;
}
.why-feature h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 6px;
}
.why-feature p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Panel */
.cta-panel {
  background: var(--accent-violet);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-violet);
}
.cta-panel::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-panel::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-panel-content { position: relative; z-index: 1; }
.cta-panel h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-panel p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-panel .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-mid);
  border-top: 1px solid var(--border-subtle);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--accent-gold);
  border-color: var(--gold-text);
  color: var(--on-gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-strong);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold-text); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg { color: var(--gold-text); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-contact-item strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-dark);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-dark);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-text); }

/* ============================================
   ANIMATIONS & SCROLL
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .hero .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: auto;
    gap: 48px;
  }
  .quote-form { max-width: 500px; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { border-top: 1px solid var(--border-subtle); }
  .stat-item:nth-child(5) { border-right: none; }

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

  .map-head { margin-bottom: 28px; }
  .map-image { order: -1; }

  .fleet-card { min-width: calc(50% - 10px); }

  .why-eye-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; --container-padding: 16px; }

  .top-bar { display: none; }

  .hero-title { font-size: clamp(30px, 7vw, 48px); }
  .hero-features { gap: 16px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border-subtle); }
  .stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4), .stat-item:nth-child(5) {
    border-top: 1px solid var(--border-subtle);
  }
  .stat-item:nth-child(5) { border-right: none; grid-column: 1 / -1; justify-content: center; }

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

  .fleet-card { min-width: calc(100% - 0px); }

  .why-features { grid-template-columns: 1fr; }

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

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .fleet-card { min-width: 100%; }

  .cta-panel { padding: 32px 24px; }
  .cta-panel h3 { font-size: 22px; }

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

/* ============================================
   MARKA LOGOSU (images/eye/eyelogo.png)
   Logo şeffaf zeminli, koyu mor + altın renkli.
   Koyu navbar üzerinde okunabilmesi için açık bir
   zemin plakası üzerine yerleştirilir.
   ============================================ */
.logo-img {
  display: block;
  height: 40px;
  width: auto;
  transition: var(--transition);
}
.navbar-logo:hover .logo-img {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.navbar.scrolled .logo-img { height: 34px; }
.footer-logo .logo-img { height: 48px; }

@media (max-width: 768px) {
  .logo-img { height: 34px; }
  .navbar.scrolled .logo-img { height: 30px; }
}
@media (max-width: 480px) {
  .logo-img { height: 30px; }
}

/* ============================================
   KOYU BÖLÜMLER — kapsamlı belirteç geçersiz kılma
   Fotoğraf/gradyan üstüne oturan bölümler beyaz tema
   içinde koyu kalır. Değişkenler burada yeniden
   tanımlanınca alt bileşenlerin tamamı otomatik uyar.
   ============================================ */
.hero,
.page-banner,
.cta-strip,
.cta-panel {
  --text-strong: #FFFFFF;
  --text-light: rgba(255,255,255,0.92);
  --text-muted: rgba(255,255,255,0.76);
  --text-dark: rgba(255,255,255,0.58);
  --gold-text: var(--accent-gold);
  --border-subtle: rgba(255,255,255,0.16);
  --border-strong: rgba(255,255,255,0.36);
  --glass: rgba(255,255,255,0.08);
  --glass-hover: rgba(255,255,255,0.14);
  --primary-light: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.08);
  color: var(--text-light);
}
