/* ============================================
   TAVŞANOĞLU RENT A CAR - PREMIUM CSS
   Mavi-Beyaz Premium Tema
   ============================================ */

:root {
  /* Ana Renkler */
  --primary: #0A2540;          /* Derin Lacivert */
  --primary-light: #1E5BC6;    /* Kraliyet Mavisi */
  --primary-dark: #061829;     /* Koyu Lacivert */
  --secondary: #2D8CFF;        /* Açık Mavi */
  --accent: #FFB800;           /* Altın CTA */
  --accent-hover: #FF9500;     /* Altın Hover */
  
  /* Nötr */
  --white: #FFFFFF;
  --bg-light: #F5F8FC;         /* Çok açık mavi-beyaz */
  --bg-cream: #FAFCFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Efektler */
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06);
  --shadow: 0 4px 12px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 16px 40px rgba(10, 37, 64, 0.12);
  --shadow-xl: 0 24px 60px rgba(10, 37, 64, 0.18);
  --shadow-glow: 0 0 30px rgba(45, 140, 255, 0.25);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
  
  /* Geçiş */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;
  
  /* Container */
  --max-width: 1280px;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; outline: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--primary); letter-spacing: -0.02em; }

/* UTILITY */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-gradient { background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* BUTONLAR */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-weight: 600;
  font-size: 15px; cursor: pointer; transition: var(--transition);
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white); box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-accent { background: var(--accent); color: var(--primary); }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 184, 0, 0.4); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-ghost { background: var(--bg-light); color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1DAB57; transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* TOP BAR */
.topbar {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white); padding: 10px 0; font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; opacity: 0.95; }
.topbar-item i { color: var(--accent); }
.topbar-item a { color: var(--white); transition: var(--transition-fast); }
.topbar-item a:hover { color: var(--accent); }
.topbar-social { display: inline-flex; gap: 10px; }
.topbar-social a {
  width: 28px; height: 28px; border-radius: var(--radius-full);
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.12); transition: var(--transition-fast);
}
.topbar-social a:hover { background: var(--accent); color: var(--primary); transform: translateY(-2px); }

/* HEADER / NAVBAR */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 56px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { color: var(--primary); font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.brand-text span { color: var(--gray-500); font-size: 11px; font-weight: 500; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-cta-mobile { display: none !important; }
.nav-menu > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: var(--radius);
  color: var(--gray-700); font-weight: 600; font-size: 14.5px;
  transition: var(--transition-fast);
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--primary-light); background: var(--bg-light); }
.nav-menu > li > a.active { background: linear-gradient(135deg, rgba(30, 91, 198, 0.1) 0%, rgba(45, 140, 255, 0.08) 100%); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--radius);
  background: var(--bg-light); color: var(--primary); font-weight: 700;
  transition: var(--transition-fast); font-size: 14px;
}
.nav-phone i { color: var(--primary-light); }
.nav-phone:hover { background: var(--primary); color: var(--white); }
.nav-phone:hover i { color: var(--accent); }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: var(--radius); background: var(--bg-light); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 22px; height: 2.5px; background: var(--primary); border-radius: 2px; transition: var(--transition-fast); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* HERO - SLIDER */
.hero-slider {
  position: relative; min-height: 760px; overflow: hidden;
  background: var(--primary);
}
.hero-slides { position: relative; min-height: 760px; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex; align-items: center;
  color: var(--white);
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
}
.hero-slide::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='g' width='20' height='20' patternUnits='userSpaceOnUse'><path d='M0 0L20 20M20 0L0 20' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/></pattern></defs><rect width='100' height='100' fill='url(%23g)'/></svg>");
  opacity: 0.5;
}

/* Slide 1 - Ana gradient */
.slide-1 { background: linear-gradient(135deg, #0A2540 0%, #1E5BC6 50%, #0A2540 100%); }
.slide-1::before { background-image: radial-gradient(circle at 20% 20%, rgba(45, 140, 255, 0.4) 0%, transparent 50%), radial-gradient(circle at 80% 60%, rgba(255, 184, 0, 0.2) 0%, transparent 50%); }

/* Slide 2 - Koyu mavi */
.slide-2 { background: linear-gradient(135deg, #061829 0%, #1E5BC6 100%); }
.slide-2::before { background-image: radial-gradient(circle at 80% 30%, rgba(45, 140, 255, 0.5) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(30, 91, 198, 0.4) 0%, transparent 50%); }

/* Slide 3 - Altın aksan */
.slide-3 { background: linear-gradient(135deg, #0A2540 0%, #2D8CFF 100%); }
.slide-3::before { background-image: radial-gradient(circle at 70% 50%, rgba(255, 184, 0, 0.25) 0%, transparent 50%), radial-gradient(circle at 30% 30%, rgba(45, 140, 255, 0.4) 0%, transparent 50%); }

/* Slide 4 - Premium */
.slide-4 { background: linear-gradient(135deg, #0F1B2D 0%, #1E5BC6 50%, #061829 100%); }
.slide-4::before { background-image: radial-gradient(circle at 50% 50%, rgba(45, 140, 255, 0.35) 0%, transparent 70%); }

.hero-slide-content { position: relative; z-index: 3; width: 100%; padding: 80px 0; }
.hero-slide-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }

/* Slider arka plan görseli */
.hero-slide-image {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 600px; height: 400px; z-index: 2; opacity: 0.15;
  background-size: contain; background-repeat: no-repeat; background-position: center;
  filter: brightness(0) invert(1);
}
.slide-1 .hero-slide-image { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z"/></svg>'); }
.slide-2 .hero-slide-image { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"/></svg>'); }
.slide-3 .hero-slide-image { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M21 10c0-4.97-4.03-9-9-9s-9 4.03-9 9c0 3.31 1.79 6.19 4.45 7.78L6 22l1.4-1.4C8.51 20.85 9.74 21 12 21c4.97 0 9-4.03 9-9zm-9 5c-1.38 0-2.5-1.12-2.5-2.5S10.62 12 12 12s2.5 1.12 2.5 2.5S13.38 15 12 15z"/></svg>'); opacity: 0.1; }
.slide-4 .hero-slide-image { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>'); }

.hero-text .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-full);
  background: rgba(255, 184, 0, 0.15); color: var(--accent);
  font-size: 13px; font-weight: 600; border: 1px solid rgba(255, 184, 0, 0.3);
  margin-bottom: 24px;
  opacity: 0; transform: translateY(20px);
  animation: slideInUp 0.8s 0.2s ease forwards;
}
.hero-text h1 {
  font-size: clamp(34px, 5vw, 56px); color: var(--white);
  font-weight: 800; line-height: 1.05; margin-bottom: 24px;
  opacity: 0; transform: translateY(20px);
  animation: slideInUp 0.8s 0.4s ease forwards;
}
.hero-text h1 .highlight { color: var(--accent); display: inline-block; }
.hero-text > p { font-size: 17px; line-height: 1.7; opacity: 0; transform: translateY(20px); margin-bottom: 36px; max-width: 540px; animation: slideInUp 0.8s 0.6s ease forwards; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; opacity: 0; animation: slideInUp 0.8s 0.8s ease forwards; }
.hero-features { display: flex; gap: 28px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.12); opacity: 0; animation: slideInUp 0.8s 1s ease forwards; }
.hero-feature { display: flex; align-items: center; gap: 10px; }
.hero-feature i { width: 36px; height: 36px; border-radius: var(--radius-full); background: rgba(255, 184, 0, 0.2); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; }
.hero-feature-text strong { display: block; font-size: 22px; font-weight: 800; color: var(--white); }
.hero-feature-text span { font-size: 12px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.05em; }

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

/* Slider minimal pagination - altta */
.slider-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: 8px;
}
.slider-dot {
  width: 30px; height: 4px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.3); cursor: pointer;
  transition: all 0.4s ease; position: relative; border: none; padding: 0;
}
.slider-dot:hover { background: rgba(255, 255, 255, 0.5); }
.slider-dot.active {
  background: var(--accent);
  width: 56px;
}
.slider-dot.active::before {
  content: ''; position: absolute; inset: 0; border-radius: 2px;
  background: var(--accent);
  animation: dotProgress 6s linear;
}
@keyframes dotProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* Slider play/pause */
.slider-control {
  position: absolute; bottom: 32px; right: 40px; z-index: 10;
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition); backdrop-filter: blur(10px);
}
.slider-control:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }

/* Slider sayaç */
.slider-counter {
  position: absolute; bottom: 32px; left: 40px; z-index: 10;
  color: rgba(255, 255, 255, 0.8); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.slider-counter strong { color: var(--white); font-size: 16px; }
.slider-counter span { opacity: 0.5; }

/* Geriye uyumluluk için eski hero sınıfları (eğer başka sayfalarda varsa) */
.hero {
  position: relative; min-height: 720px; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  overflow: hidden; color: var(--white);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(45, 140, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(255, 184, 0, 0.15) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='g' width='20' height='20' patternUnits='userSpaceOnUse'><path d='M0 0L20 20M20 0L0 20' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/></pattern></defs><rect width='100' height='100' fill='url(%23g)'/></svg>");
  opacity: 0.5;
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }

/* Hero - Rezervasyon Formu */
.hero-form-wrap { position: relative; }
.hero-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-xl); color: var(--gray-800);
}
.hero-form h3 { font-size: 22px; margin-bottom: 6px; }
.hero-form p { color: var(--gray-500); font-size: 14px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border-radius: var(--radius); border: 1.5px solid var(--gray-200);
  background: var(--bg-light); color: var(--gray-800); font-size: 14px;
  transition: var(--transition-fast);
  width: 100%; min-width: 0; max-width: 100%;
  -webkit-appearance: none; appearance: none;
  box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary-light); background: var(--white); box-shadow: 0 0 0 3px rgba(30, 91, 198, 0.12); }
.form-submit { width: 100%; padding: 16px; margin-top: 6px; }

/* STATS BAR */
.stats-bar {
  background: var(--white);
  margin-top: -60px; position: relative; z-index: 10;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 32px 40px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; padding: 0 10px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 10%; height: 80%;
  width: 1px; background: var(--gray-200);
}
.stat-item i { font-size: 32px; color: var(--primary-light); margin-bottom: 10px; }
.stat-item strong { display: block; font-size: 32px; color: var(--primary); font-weight: 800; line-height: 1; }
.stat-item span { font-size: 13px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }

/* SECTION */
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--radius-full);
  background: rgba(30, 91, 198, 0.1); color: var(--primary-light);
  font-size: 12.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-header p { color: var(--gray-600); font-size: 17px; line-height: 1.6; }
.section-dark .section-header p { color: rgba(255, 255, 255, 0.8); }

/* HIZMETLER */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: var(--transition);
  border: 1px solid var(--gray-100);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--primary-light) 0%, var(--secondary) 100%);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 26px; margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(30, 91, 198, 0.25);
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--gray-600); font-size: 14.5px; line-height: 1.65; }

/* ARAÇ KARTLARI */
.car-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 20px; border-radius: var(--radius-full);
  background: var(--white); color: var(--gray-700); font-weight: 600;
  border: 1.5px solid var(--gray-200); font-size: 14px; transition: var(--transition-fast);
}
.filter-btn:hover { border-color: var(--primary-light); color: var(--primary-light); }
.filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.car-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-100); transition: var(--transition);
  display: flex; flex-direction: column;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.car-image {
  position: relative; aspect-ratio: 16 / 10; background: var(--bg-light);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  overflow: hidden;
}
.car-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 37, 64, 0.04) 100%);
}
.car-image img { max-width: 100%; max-height: 100%; object-fit: contain; position: relative; z-index: 1; transition: var(--transition-slow); }
.car-card:hover .car-image img { transform: scale(1.06); }
.car-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 12px; border-radius: var(--radius-full);
  background: var(--accent); color: var(--primary); font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; z-index: 2;
}
.car-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.car-cat { font-size: 12px; font-weight: 600; color: var(--primary-light); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.car-title { font-size: 19px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.car-specs { display: flex; flex-wrap: wrap; gap: 8px 16px; padding: 12px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); margin-bottom: 14px; }
.car-spec { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--gray-600); }
.car-spec i { color: var(--primary-light); font-size: 14px; }
.car-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.car-price { display: flex; flex-direction: column; }
.car-price small { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.04em; }
.car-price strong { font-size: 24px; color: var(--primary); font-weight: 800; }
.car-price strong small { font-size: 12px; color: var(--gray-500); font-weight: 500; text-transform: none; }
.car-card .btn { padding: 10px 18px; font-size: 13px; }

/* TRANSFER TABS / TABLE */
.transfer-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.transfer-tab {
  padding: 14px 26px; border-radius: var(--radius-full);
  background: var(--white); color: var(--gray-700); font-weight: 700;
  border: 1.5px solid var(--gray-200); font-size: 15px; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.transfer-tab i { font-size: 18px; }
.transfer-tab.active { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: var(--white); border-color: transparent; box-shadow: var(--shadow-md); }

.transfer-panel { display: none; }
.transfer-panel.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.transfer-panel table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.transfer-panel th { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: var(--white); padding: 14px 18px; text-align: left; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.transfer-panel th:last-child, .transfer-panel td:last-child { text-align: right; }
.transfer-panel td { padding: 14px 18px; border-top: 1px solid var(--gray-100); font-size: 14.5px; color: var(--gray-700); }
.transfer-panel tr:hover td { background: var(--bg-light); }
.transfer-panel td:last-child { font-weight: 700; color: var(--primary); }

/* NEDEN BİZ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.why-item { text-align: center; }
.why-icon {
  width: 80px; height: 80px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 32px; margin-bottom: 20px;
  box-shadow: 0 12px 30px rgba(30, 91, 198, 0.25);
  position: relative;
}
.why-icon::after {
  content: ''; position: absolute; inset: -6px; border-radius: var(--radius-full);
  border: 2px dashed rgba(30, 91, 198, 0.3);
}
.why-item h3 { font-size: 18px; margin-bottom: 8px; }
.why-item p { color: var(--gray-600); font-size: 14px; line-height: 1.6; }

/* HAKKIMIZDA BÖLÜMÜ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10, 37, 64, 0.3) 0%, transparent 100%); z-index: 1; }
.about-image img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }
.about-floating {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: var(--white); border-radius: var(--radius-md); padding: 18px 22px;
  box-shadow: var(--shadow-lg); z-index: 2; display: flex; align-items: center; gap: 16px;
}
.about-floating strong { font-size: 36px; color: var(--primary-light); line-height: 1; font-weight: 800; }
.about-floating span { font-size: 13px; color: var(--gray-600); line-height: 1.3; }
.about-content h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 18px; }
.about-content p { color: var(--gray-600); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.about-list { margin: 24px 0; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; color: var(--gray-700); font-size: 15px; }
.about-list i { color: var(--primary-light); font-size: 18px; margin-top: 2px; }

/* SAYILAR / SAYIMLAR */
.counters { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: var(--white); padding: 70px 0; position: relative; overflow: hidden; }
.counters::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 50%, rgba(45, 140, 255, 0.4) 0%, transparent 50%), radial-gradient(circle at 80% 30%, rgba(255, 184, 0, 0.15) 0%, transparent 50%); }
.counters .container { position: relative; }
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.counter { text-align: center; }
.counter i { font-size: 36px; color: var(--accent); margin-bottom: 14px; }
.counter strong { display: block; font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.counter span { font-size: 14px; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }

/* YORUMLAR */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--gray-100);
  transition: var(--transition); position: relative;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote {
  position: absolute; top: 24px; right: 24px;
  font-size: 48px; color: var(--primary-light); opacity: 0.15; line-height: 1;
}
.testimonial-stars { color: var(--accent); margin-bottom: 14px; font-size: 14px; }
.testimonial-text { color: var(--gray-700); font-size: 15px; line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--gray-100); }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 18px;
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--primary); }
.testimonial-author span { font-size: 12.5px; color: var(--gray-500); }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl); padding: 56px 60px; color: var(--white);
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 184, 0, 0.2) 0%, transparent 70%); }
.cta-banner h2 { color: var(--white); font-size: 32px; margin-bottom: 12px; position: relative; }
.cta-banner p { font-size: 16px; opacity: 0.9; position: relative; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 12px; position: relative; }

/* İLETİŞİM SAYFASI */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 26px; display: flex; gap: 18px; align-items: flex-start;
  border: 1px solid var(--gray-100); transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; box-shadow: 0 6px 16px rgba(30, 91, 198, 0.2);
}
.contact-card h4 { font-size: 16px; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--gray-600); font-size: 14.5px; line-height: 1.6; }
.contact-card a:hover { color: var(--primary-light); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.contact-form h3 { font-size: 24px; margin-bottom: 8px; }
.contact-form p { color: var(--gray-500); font-size: 14px; margin-bottom: 24px; }
.contact-form .form-row { grid-template-columns: 1fr 1fr; }
.contact-form .form-row.full { grid-template-columns: 1fr; }
.contact-form textarea { resize: vertical; min-height: 130px; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 30px; height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* SSS / AKORDİYON */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-100); margin-bottom: 12px;
  overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(30, 91, 198, 0.2); }
.faq-item.active { box-shadow: var(--shadow-md); border-color: transparent; }
.faq-q {
  width: 100%; padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; text-align: left;
  font-weight: 600; font-size: 16px; color: var(--primary);
}
.faq-q i { color: var(--primary-light); font-size: 18px; transition: var(--transition); }
.faq-item.active .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: var(--transition); }
.faq-a-inner { padding: 0 24px 22px; color: var(--gray-600); font-size: 14.5px; line-height: 1.75; }
.faq-item.active .faq-a { max-height: 500px; }

/* BLOG / HABERLER */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 28px; }
.news-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-100); transition: var(--transition); display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-image { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.news-card:hover .news-image img { transform: scale(1.06); }
.news-cat { position: absolute; top: 14px; left: 14px; background: var(--primary); color: var(--white); padding: 5px 12px; border-radius: var(--radius-full); font-size: 11.5px; font-weight: 700; }
.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 12.5px; color: var(--gray-500); margin-bottom: 8px; display: inline-flex; align-items: center; gap: 6px; }
.news-date i { color: var(--primary-light); }
.news-card h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.news-card p { color: var(--gray-600); font-size: 14px; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.news-link { color: var(--primary-light); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition-fast); }
.news-link:hover { gap: 10px; }

/* DETAY SAYFASI */
.car-detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.car-detail-image { background: var(--bg-light); border-radius: var(--radius-lg); padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 360px; border: 1px solid var(--gray-100); }
.car-detail-image img { max-width: 100%; max-height: 380px; object-fit: contain; }
.car-detail-info h1 { font-size: 36px; margin-bottom: 12px; }
.car-detail-info .car-cat { font-size: 14px; margin-bottom: 12px; }
.car-detail-info .car-price-detail { font-size: 40px; color: var(--primary); font-weight: 800; margin: 20px 0; }
.car-detail-info .car-price-detail small { font-size: 14px; color: var(--gray-500); font-weight: 500; }
.car-specs-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; padding: 24px; background: var(--bg-light); border-radius: var(--radius-md); }
.car-spec-item { display: flex; align-items: center; gap: 10px; }
.car-spec-item i { color: var(--primary-light); font-size: 18px; width: 32px; height: 32px; border-radius: var(--radius-sm); background: rgba(30, 91, 198, 0.1); display: inline-flex; align-items: center; justify-content: center; }
.car-spec-item strong { display: block; font-size: 13px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.04em; }
.car-spec-item span { font-size: 15px; color: var(--primary); font-weight: 700; }
.car-features-list { margin: 24px 0; }
.car-features-list h3 { font-size: 20px; margin-bottom: 16px; }
.car-features-list ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.car-features-list li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--gray-700); }
.car-features-list i { color: var(--primary-light); }

/* BREADCRUMB */
.breadcrumb { background: var(--bg-light); padding: 18px 0; font-size: 14px; }
.breadcrumb ol { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; color: var(--gray-500); }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--gray-300); }
.breadcrumb a { color: var(--gray-600); transition: var(--transition-fast); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb li:last-child { color: var(--primary); font-weight: 600; }

/* PAGE HEADER */
.page-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: var(--white); padding: 80px 0 100px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 30%, rgba(45, 140, 255, 0.3) 0%, transparent 50%); }
.page-header h1 { color: var(--white); font-size: clamp(32px, 4.5vw, 48px); margin-bottom: 14px; position: relative; }
.page-header p { font-size: 17px; opacity: 0.9; max-width: 640px; position: relative; }

/* SÖZLEŞME METİN */
.legal-content { max-width: 900px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow); }
.legal-content h2 { font-size: 24px; margin: 32px 0 14px; color: var(--primary); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 18px; margin: 24px 0 10px; }
.legal-content p { color: var(--gray-700); font-size: 15.5px; line-height: 1.85; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { list-style: disc; color: var(--gray-700); font-size: 15px; line-height: 1.85; margin-bottom: 6px; }

/* FOOTER - GENİŞLETİLMİŞ */
.footer { background: var(--primary-dark); color: rgba(255, 255, 255, 0.75); padding: 80px 0 0; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-light) 0%, var(--accent) 50%, var(--primary-light) 100%); }
.footer::after { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(45, 140, 255, 0.08) 0%, transparent 70%); pointer-events: none; }

/* Footer üst bölüm - bülten */
.footer-top {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.3);
}
.footer-top::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 30%, rgba(255, 184, 0, 0.15) 0%, transparent 50%); border-radius: var(--radius-xl); pointer-events: none; }
.footer-top h3 { color: var(--white); font-size: 24px; margin-bottom: 8px; position: relative; }
.footer-top p { color: rgba(255, 255, 255, 0.85); font-size: 15px; margin: 0; position: relative; }
.footer-top i.fa-envelope { color: var(--accent); font-size: 28px; margin-right: 12px; }
.footer-newsletter { position: relative; }
.footer-newsletter form { display: flex; gap: 10px; }
.footer-newsletter input {
  flex: 1; padding: 14px 18px; border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95); border: 2px solid transparent;
  color: var(--gray-800); font-size: 14.5px; transition: var(--transition);
}
.footer-newsletter input:focus { background: var(--white); border-color: var(--accent); outline: none; }
.footer-newsletter button {
  padding: 14px 24px; border-radius: var(--radius);
  background: var(--accent); color: var(--primary); font-weight: 700;
  font-size: 14.5px; cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.footer-newsletter button:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 184, 0, 0.4); }

/* Footer 5 sütun */
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1fr; gap: 36px; padding-bottom: 50px; position: relative; z-index: 1; }
.footer h4 { color: var(--white); font-size: 16px; margin-bottom: 20px; position: relative; padding-bottom: 10px; font-weight: 700; letter-spacing: 0.02em; }
.footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2.5px; background: var(--accent); border-radius: 2px; }
.footer-brand img { height: 54px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.footer-stats-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; padding: 16px; background: rgba(255, 255, 255, 0.04); border-radius: var(--radius); }
.footer-stats-mini > div { text-align: center; }
.footer-stats-mini strong { display: block; color: var(--accent); font-size: 22px; font-weight: 800; line-height: 1; }
.footer-stats-mini span { font-size: 11.5px; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.05em; }

.footer-social { display: flex; gap: 8px; margin-top: 8px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: var(--radius-full);
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.85);
  transition: var(--transition); font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-social a:hover { background: var(--accent); color: var(--primary); transform: translateY(-3px); border-color: var(--accent); }
.footer-social a.fb:hover { background: #1877F2; color: var(--white); border-color: #1877F2; }
.footer-social a.ig:hover { background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); color: var(--white); border-color: transparent; }
.footer-social a.tw:hover { background: #1DA1F2; color: var(--white); border-color: #1DA1F2; }
.footer-social a.yt:hover { background: #FF0000; color: var(--white); border-color: #FF0000; }
.footer-social a.tk:hover { background: #000; color: var(--white); border-color: #000; }
.footer-social a.wa:hover { background: #25D366; color: var(--white); border-color: #25D366; }

.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 14px; transition: var(--transition-fast); display: inline-flex; align-items: center; gap: 8px; }
.footer-links a i { font-size: 10px; color: var(--accent); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); transform: translateX(4px); }
.footer-links a:hover i { transform: translateX(2px); }

.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; line-height: 1.55; align-items: flex-start; }
.footer-contact i { color: var(--accent); margin-top: 3px; min-width: 16px; font-size: 15px; }
.footer-contact strong { color: var(--white); display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; font-weight: 600; }
.footer-contact a { color: rgba(255, 255, 255, 0.7); transition: var(--transition-fast); }
.footer-contact a:hover { color: var(--accent); }

.footer-hours { background: rgba(255, 255, 255, 0.04); border-radius: var(--radius); padding: 16px; margin-top: 16px; }
.footer-hours-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 13px; }
.footer-hours-row span:first-child { color: rgba(255, 255, 255, 0.6); }
.footer-hours-row span:last-child { color: var(--white); font-weight: 600; }
.footer-hours-row.always span:last-child { color: #4ade80; }

.footer-payments { margin-top: 16px; }
.footer-payments-title { font-size: 12px; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.footer-payments-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-payments-icons i {
  width: 44px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.08); border-radius: 4px; font-size: 14px; color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-apps { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.footer-app-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); color: rgba(255, 255, 255, 0.85); transition: var(--transition);
  font-size: 13px;
}
.footer-app-btn i { font-size: 22px; color: var(--accent); }
.footer-app-btn small { display: block; font-size: 10px; opacity: 0.7; line-height: 1; }
.footer-app-btn strong { font-size: 13px; line-height: 1.1; }
.footer-app-btn:hover { background: var(--white); color: var(--primary); }
.footer-app-btn:hover i { color: var(--primary-light); }

/* Orta şerit - özellikler */
.footer-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 30px 0; margin: 30px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative; z-index: 1;
}
.footer-feature { display: flex; align-items: center; gap: 14px; }
.footer-feature i {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(255, 184, 0, 0.12); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.footer-feature strong { display: block; color: var(--white); font-size: 14.5px; margin-bottom: 2px; }
.footer-feature span { font-size: 12.5px; color: rgba(255, 255, 255, 0.6); }

.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; position: relative; z-index: 1; }
.footer-bottom-left { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.footer-bottom a { color: rgba(255, 255, 255, 0.65); transition: var(--transition-fast); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom-cert { display: flex; gap: 8px; align-items: center; }
.footer-bottom-cert span {
  padding: 4px 10px; background: rgba(255, 184, 0, 0.1);
  color: var(--accent); font-size: 11px; font-weight: 700;
  border-radius: 4px; border: 1px solid rgba(255, 184, 0, 0.2);
  letter-spacing: 0.04em;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 60px; height: 60px; border-radius: var(--radius-full);
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; opacity: 0.4; animation: pulse 2s infinite; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.4); opacity: 0; } }

/* ANİMASYONLAR */
.fade-up { transition: opacity 0.7s ease, transform 0.7s ease; }
/* JS yüklendiğinde ve henüz in almamışsa sadece translateY ile başla, opacity görünür kalsın */
.js-loaded .fade-up:not(.in) { opacity: 0.001; transform: translateY(30px); }
.fade-up.in { opacity: 1 !important; transform: translateY(0) !important; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
  .footer-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .hero { min-height: 600px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-slider, .hero-slides { min-height: 700px; }
  .hero-slide-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-slide-image { width: 300px; height: 200px; right: 50%; top: auto; bottom: 10%; transform: translateX(50%); opacity: 0.1; }
  .hero-form-wrap { max-width: 100%; margin: 0; }
  .footer-top { grid-template-columns: 1fr; padding: 28px; text-align: center; }
  .footer-top h3 { font-size: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-features { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { margin-top: -40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-item:not(:last-child)::after { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .car-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px 30px; text-align: center; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
  .topbar { font-size: 12px; }
  .topbar-left, .topbar-right { gap: 12px; }
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .navbar { padding: 12px 0; }
  .brand img { height: 44px; }
  .brand-text strong { font-size: 15px; }
  .brand-text span { font-size: 10px; }
  .nav-menu {
    position: fixed; top: 0; right: 0; width: 86%; max-width: 360px; height: 100vh;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 90px 24px 30px; gap: 6px; transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12); overflow-y: auto;
    right: -100%; visibility: hidden;
  }
  .nav-menu.open { right: 0; visibility: visible; }
  .nav-menu > li > a { padding: 14px 18px; font-size: 15.5px; border-radius: var(--radius); }
  .nav-cta { display: none; }
  .nav-cta-mobile {
    display: flex; flex-direction: column; gap: 10px; margin-top: 20px;
    padding-top: 20px; border-top: 1px solid var(--gray-200);
  }
  .nav-cta-mobile { display: flex !important; }
  .nav-cta-mobile .btn { width: 100%; }
  .menu-toggle { display: inline-flex; }
  
  .hero { min-height: auto; padding: 40px 0 80px; }
  .hero-content { padding: 40px 0; }
  .hero-text h1 { font-size: 32px; }
  .hero-text p { font-size: 15px; }
  .hero-features { flex-direction: column; gap: 14px; }
  .hero-cta .btn { width: 100%; }

  /* Slider mobilde form içeriği yüzünden taşmasın */
  .hero-slider { min-height: 580px; }
  .hero-slides { min-height: 580px; }
  .hero-slide { position: absolute; inset: 0; min-height: 580px; }
  .hero-slide.active { position: relative; }
  .hero-slide-content { padding: 40px 0; }
  .hero-slide-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-slide-image { display: none; }
  .hero-form-wrap { max-width: 100%; width: 100%; }
  .hero-form h3 { font-size: 18px; }
  .hero-form p { font-size: 13px; margin-bottom: 16px; }
  /* Mobilde slider counter ve pause butonu gizle */
  .slider-counter { display: none; }
  .slider-control { display: none; }
  .slider-dots { bottom: 12px; }
  
  .stats-bar { padding: 24px 20px; margin-top: -30px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-item strong { font-size: 26px; }
  
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 26px; }
  
  .car-specs, .car-foot { flex-wrap: wrap; }
  .car-price strong { font-size: 22px; }
  .car-card .btn { width: 100%; margin-top: 12px; }
  
  .transfer-panel table { font-size: 13px; }
  .transfer-panel th, .transfer-panel td { padding: 12px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 30px; }
  .footer-features { grid-template-columns: 1fr; gap: 14px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom-left { justify-content: center; }
  .footer-newsletter form { flex-direction: column; }
  .footer-newsletter button { justify-content: center; }
  .slider-dots { bottom: 24px; }
  .slider-dot { width: 22px; }
  .slider-dot.active { width: 40px; }
  .slider-control { right: 16px; bottom: 24px; width: 32px; height: 32px; }
  .slider-counter { left: 16px; bottom: 24px; }
  
  .form-row { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .hero-form { padding: 24px; }
  .legal-content { padding: 28px 20px; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .counter strong { font-size: 36px; }
  
  .page-header { padding: 50px 0 70px; }
  .car-detail-info h1 { font-size: 28px; }
  .car-detail-image { padding: 24px; min-height: 240px; }
  .car-specs-detail { grid-template-columns: 1fr; }
  .car-features-list ul { grid-template-columns: 1fr; }
  
  .whatsapp-float { width: 54px; height: 54px; font-size: 24px; bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
  .topbar-left, .topbar-right { width: 100%; justify-content: space-between; }
  .hero-text h1 { font-size: 28px; }
  .filter-btn { padding: 8px 14px; font-size: 13px; }
  .transfer-tab { padding: 10px 18px; font-size: 13px; }
}

/* MENU OVERLAY */
.menu-overlay {
  position: fixed; inset: 0; background: rgba(10, 37, 64, 0.5);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s ease; z-index: 998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.menu-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }

/* ===== Çoklu Dil + Kullanıcı Menüsü + Arama + Çerez ===== */
.topbar-lang { position: relative; }
.topbar-lang .lang-toggle { background: transparent; color: #fff; border: 0; cursor: pointer; padding: 4px 8px; font-size: 13px; display: inline-flex; align-items: center; gap: 4px; }
.topbar-lang .lang-menu { position: absolute; top: 100%; right: 0; background: #fff; color: #334155; min-width: 100px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border-radius: 6px; padding: 4px 0; display: none; z-index: 100; }
.topbar-lang .lang-menu.open { display: block; }
.topbar-lang .lang-option { display: block; padding: 8px 12px; text-decoration: none; color: #334155; font-size: 13px; }
.topbar-lang .lang-option:hover, .topbar-lang .lang-option.active { background: #f1f5f9; color: #0A2540; }
.nav-compare, .nav-search { background: transparent; border: 0; color: #0A2540; cursor: pointer; padding: 8px; font-size: 16px; position: relative; }
.nav-compare .compare-count { position: absolute; top: -4px; right: -4px; background: #FFB800; color: #0A2540; font-size: 10px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; padding: 0 4px; }
.user-menu { position: relative; }
.user-menu-btn { background: #f1f5f9; color: #0A2540; padding: 6px 12px; border-radius: 6px; text-decoration: none; font-size: 13px; font-weight: 500; }
.user-menu-btn:hover { background: #e2e8f0; }
.user-menu-dropdown { position: absolute; top: 100%; right: 0; background: #fff; min-width: 200px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border-radius: 6px; padding: 4px 0; display: none; z-index: 100; }
.user-menu:hover .user-menu-dropdown { display: block; }
.user-menu-dropdown a { display: block; padding: 8px 14px; color: #334155; text-decoration: none; font-size: 14px; }
.user-menu-dropdown a:hover { background: #f1f5f9; color: #0A2540; }
.user-menu-dropdown a i { width: 18px; }
.btn-ghost { background: transparent; color: #0A2540; border: 1px solid #cbd5e1; padding: 8px 16px; border-radius: 6px; text-decoration: none; display: inline-block; font-size: 14px; }
.btn-ghost:hover { background: #f1f5f9; }

@media (max-width: 768px) {
  .topbar-lang { display: none; }
  .user-menu-btn { padding: 4px 8px; font-size: 12px; }
  .nav-compare, .nav-search { padding: 6px; }
}

/* ===== MINIMAL HEADER v2 ===== */
.brand img { max-height: 56px; }
.brand-text { display: none !important; }
.topbar { font-size: 12.5px; padding: 6px 0; }
.topbar-item { font-size: 12.5px; }
.topbar-left .topbar-item:not(:last-child)::after {
  content: "•";
  margin: 0 12px;
  opacity: 0.4;
}
.topbar-social a { width: 26px; height: 26px; font-size: 12px; }
.topbar-lang .lang-toggle { font-size: 12.5px; padding: 2px 8px; }
.topbar-lang .lang-current { font-weight: 600; }
.nav-cta { gap: 4px; display: flex; align-items: center; }
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: #0A2540;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.nav-icon:hover {
  background: #f1f5f9;
  color: #1E5FBF;
  transform: translateY(-1px);
}
.nav-icon-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #FFB800;
  color: #0A2540;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.nav-cta-btn { margin-left: 8px; padding: 8px 18px !important; }
.nav-menu li a { font-size: 14px; padding: 6px 12px; }

/* Eski stilleri temizle */
.nav-phone, .btn-ghost.btn-sm[href*="login"] { display: none; }

@media (max-width: 1024px) {
  .topbar { display: none; }
  .nav-icon { width: 38px; height: 38px; font-size: 15px; }
  .nav-cta-btn { display: none; }
}

@media (max-width: 768px) {
  .brand img { max-height: 44px; }
  .nav-icon { width: 36px; height: 36px; font-size: 14px; }
}

/* ===== Eticmax Footer Credit ===== */
.footer-credit {
  margin-top: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}
.footer-credit a:hover {
  color: #FFB800;
  background: rgba(255, 184, 0, 0.1);
  border-color: #FFB800;
  transform: translateY(-1px);
}
.footer-credit a i {
  font-size: 12px;
  color: #FFB800;
}
.footer-credit a strong {
  color: inherit;
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-credit { font-size: 11.5px; }
  .footer-credit a { padding: 3px 8px; }
}
