/* ============================================================
   ASIL İŞ MAKİNELERİ — Ana Stil Dosyası
   Renk Paleti: #0f0f0f | #ffffff | #C8962A (altın)
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --black:       #0f0f0f;
  --black-2:     #1a1a1a;
  --black-3:     #222;
  --white:       #ffffff;
  --white-dim:   #cccccc;
  --white-faint: #888888;
  --red:         #C8962A;
  --red-hover:   #a87820;
  --red-light:   rgba(200,150,42,0.12);
  --border:      rgba(255,255,255,0.08);
  --border-red:  rgba(200,150,42,0.45);

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:     0 8px 40px rgba(0,0,0,0.55);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.3);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select {
  font-family: var(--font-body);
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
ul, ol { list-style: none; }

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

/* ============================================================
   NAVİGASYON
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img,
.nav-logo svg {
  height: 42px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand-main {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}
.nav-logo-text .brand-sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color var(--transition);
  cursor: pointer;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 16px; right: 16px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-link .arrow {
  width: 8px; height: 5px;
  transition: transform var(--transition);
}
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: rgba(15,15,15,0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-top: 1px solid var(--red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--white-dim);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
  color: var(--white);
  background: var(--red-light);
  padding-left: 28px;
}
.nav-dropdown .dd-badge {
  margin-left: auto;
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 1px;
}
.dd-available { background: rgba(46,204,113,0.2); color: #2ecc71; }
.dd-unavailable { background: rgba(138,138,138,0.2); color: var(--red); }

/* Nav CTA */
.nav-cta {
  margin-left: 20px;
  padding: 9px 22px;
  border: 1px solid var(--red);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--red);
  color: var(--white);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  border-top: 1px solid var(--border);
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  padding: 20px 0 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 36px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--red); }
.mobile-sub-title {
  padding: 10px 36px 6px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 600;
}
.mobile-sub a { padding-left: 52px; font-size: 12px; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 800px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.55) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  padding: 0 80px;
  z-index: 2;
}
.hero-pretitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.3s;
}
.hero-slide.active .hero-pretitle {
  opacity: 1;
  transform: translateY(0);
}
.hero-pretitle::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--red);
}
.hero-pretitle span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.5s;
}
.hero-slide.active .hero-title {
  opacity: 1;
  transform: translateY(0);
}
.hero-title em {
  font-style: italic;
  color: var(--red);
}
.hero-subtitle {
  font-size: 14px;
  color: var(--white-dim);
  letter-spacing: 1px;
  margin-top: 18px;
  max-width: 460px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.7s;
}
.hero-slide.active .hero-subtitle { opacity: 1; transform: translateY(0); }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.9s;
}
.hero-slide.active .hero-actions { opacity: 1; transform: translateY(0); }

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  right: 80px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 3px;
}
.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 3;
  pointer-events: none;
}
.hero-arrow {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all var(--transition);
  color: var(--white);
}
.hero-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}
.hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.1s linear;
  z-index: 4;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================================
   BUTONLAR
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,150,42,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--border-red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-sm { padding: 9px 20px; font-size: 10px; letter-spacing: 2px; }

/* ============================================================
   LAYOUT YARDIMCILARI
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-fluid { width: 100%; padding: 0 40px; }
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }
.section-dark { background: var(--black); }
.section-darker { background: var(--black-2); }
.section-light { background: #f5f4f0; }

/* ============================================================
   SECTION BACKGROUND IMAGES
   Aşağıdaki dosyaları assets/images/ klasörüne koy:
   bg-vehicles.jpg  → 1920×1080 px
   bg-gallery.jpg   → 1920×900  px
   bg-why.jpg       → 1920×900  px
   bg-cta.jpg       → 1920×600  px
   bg-about.jpg     → 1920×900  px (opsiyonel, hakkımızda)
   ============================================================ */
.section-dark,
.section-darker,
.about-band,
.stats-section,
.cta-banner {
  position: relative;
}

.about-band > * { position: relative; z-index: 1; }
#araclar > * { position: relative; z-index: 1; }
#galeri-onizleme > * { position: relative; z-index: 1; }
#neden-biz > * { position: relative; z-index: 1; }

/* ============================================================
   DEKORATİF VEKTÖREL GÖRSELLERİN ORTAK CLASS'I
   Tüm .deco-img değerlerini buradan yönet
   ============================================================ */
#neden-biz { overflow: hidden; position: relative; isolation: isolate; }
#neden-biz > .container { position: relative; z-index: 2; }

#araclar { overflow: hidden; position: relative; isolation: isolate; }
#araclar > .container { position: relative; z-index: 2; }

.deco-img {
  position: absolute !important;
  width: 420px;         /* boyut */
  opacity: 0.22;        /* şeffaflık */
  pointer-events: none;
  user-select: none;
  z-index: 0;
  mix-blend-mode: screen;   /* siyah arka planı eritir */
}

/* Sağ alt köşe (about bölümü) */
.deco-img--right {
  bottom: -20px;
  right: -30px;
}

/* Sol alt (neden bizi bölümü) */
.deco-img--left {
  left: -60px;
  bottom: 40px;
  width: 740px;
}

/* Sağ alt (cta banner) */
.deco-img--right3 {
  right: 80px;
  bottom: -10px;
  width: 300px;
  filter: invert(1);
}

/* Sağ alt (araçlar bölümü) */
.deco-img--right4 {
  right: 20px;
  bottom: -20px;
  width: 420px;
  filter: invert(1);   /* beyaz zemini siyaha çevirir, screen modu eriter */
}

@media (max-width: 1024px) {
  .deco-img { width: 300px; opacity: 0.15; }
}

@media (max-width: 768px) {
  .deco-img { display: none; }
}

.why-card {
  text-align: center;
  padding: 44px 28px 40px;
  background: rgba(30,28,24,0.85);
  border-radius: 10px;
  border: 1px solid rgba(200,150,42,0.15);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.why-card:hover {
  border-color: rgba(200,150,42,0.55);
  background: rgba(40,35,25,0.9);
}
.why-card-icon {
  font-size: 58px;
  color: var(--red);
  display: block;
  margin: 0 auto 24px;
  display: block;
  margin-bottom: 24px;
  line-height: 1;
}
.why-card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.why-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.section-header {
  margin-bottom: 70px;
}
.section-pretitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-pretitle::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--red);
}
.section-pretitle span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--red); }
.section-desc {
  font-size: 15px;
  color: var(--white-faint);
  max-width: 540px;
  margin-top: 18px;
  line-height: 1.8;
}
.section-line {
  width: 48px;
  height: 1px;
  background: var(--red);
  margin-top: 28px;
}

/* Grid */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   ARAÇ KARTI
   ============================================================ */
.vehicle-card {
  position: relative;
  background: #ffffff;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
  transition: all var(--transition);
  cursor: pointer;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.40);
}
.vehicle-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8e8e8;
}
.vehicle-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.vehicle-card:hover .vehicle-card-img img {
  transform: scale(1.05);
}
.vehicle-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
}
.vehicle-card-body {
  padding: 22px 24px 20px;
  background: #7aabda;
}
.vehicle-card-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.vehicle-card-desc {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vehicle-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.vehicle-card-units {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111111;
}
.vehicle-card-units span { color: #000000; font-weight: 600; }
.vehicle-card-link {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
  font-weight: 600;
  position: static;
}
/* Stretched link — tüm kartı tıklanabilir yapar */
.vehicle-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.vehicle-card:hover .vehicle-card-link { gap: 10px; }

/* Badge */
.badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: none;
}
.badge-available {
  background: #2ecc71;
  color: #ffffff;
}
.badge-unavailable {
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}
/* Badge overlay on card image */
.vehicle-card-img .badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: #ffffff;
  padding: 70px 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #eeeeee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.12);
}
.stat-item {
  padding: 44px 30px;
  text-align: center;
  background: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.stat-icon {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--red);
  flex-shrink: 0;
  height: 72px;
}
.stat-icon i,
.stat-icon iconify-icon {
  font-size: 68px;
  line-height: 1;
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: #111111;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666666;
  margin-top: 12px;
  font-weight: 600;
}

/* ============================================================
   HAKKIMIZDA BANDI
   ============================================================ */
.about-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0f0f0f 100%);
  min-height: 400px;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-band:hover .about-image img { transform: scale(1.03); }
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--black-2));
}

.about-content {
  background: var(--black-2);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content .section-title { font-size: clamp(28px, 3vw, 44px); }
.about-list {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--white-dim);
}
.about-list li::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 10px;
}

/* ============================================================
   GALERİ
   ============================================================ */
.gallery-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--white-faint);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.gallery-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.gallery-tab {
  padding: 14px 30px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-faint);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  margin-bottom: -1px;
  background: none;
}
.gallery-tab.active {
  color: var(--white);
  border-bottom-color: var(--red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--black-3);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(200,150,42,0.35); }
.gallery-item-overlay svg {
  color: white;
  opacity: 0;
  transition: opacity var(--transition);
  width: 36px; height: 36px;
}
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }
.gallery-item-title {
  position: absolute;
  bottom: 14px; left: 14px;
  font-size: 12px;
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-title { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  background: none;
}
.lightbox-close:hover { background: var(--red); border-color: var(--red); }
.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--white-dim);
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  background: none;
  transition: all var(--transition);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--red); border-color: var(--red); }

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.vimeo-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--black-3);
}
.vimeo-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.video-card { background: var(--black-2); border: 1px solid var(--border); overflow: hidden; }
.video-card-title {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--white-dim);
  letter-spacing: 1px;
}

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
}
.contact-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border-red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.contact-info-text {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 6px;
}
.contact-info-value {
  font-size: 15px;
  color: var(--white);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 10px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--black-2);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 14px;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--red); }
.form-control::placeholder { color: var(--white-faint); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ============================================================
   SAYFA BAŞLIK BANDI (alt sayfalar)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 36px 0 32px;
  margin-top: var(--nav-height);
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
/* Kırmızı sol çizgi aksan */
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
}
/* Görsel varsa tam hero moduna geç */
.page-hero.has-image {
  height: 38vh;
  min-height: 260px;
  max-height: 380px;
  padding: 0;
  background: #0f0f0f;
}
.page-hero.has-image::before { display: none; }
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.15) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 28px;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--white-faint);
  margin-bottom: 14px;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--border); }
.page-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  color: var(--white);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.spec-item {
  padding: 18px 22px;
  background: var(--black-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.spec-key {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--white-faint);
  text-transform: uppercase;
}
.spec-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.vehicle-thumb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-top: 6px;
}
.vehicle-thumb {
  aspect-ratio: 4/3;
  max-height: 80px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  opacity: 0.7;
}
.vehicle-thumb:hover { opacity: 1; }
.vehicle-thumb.active { border-color: var(--red); opacity: 1; }
.vehicle-thumb.active { border-color: var(--red); }
.vehicle-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #C8962A 0%, #a07220 50%, #8a5e14 100%);
  text-align: center;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .section-title {
  font-size: clamp(28px, 4vw, 50px);
  margin-bottom: 20px;
}
.cta-banner .section-desc {
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
}
.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
}
.footer-top {
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-brand .brand-main {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}
.footer-brand .brand-sub {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 2px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--white-faint);
  line-height: 1.8;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-faint);
  transition: all var(--transition);
  font-size: 14px;
}
.footer-social a:hover {
  border-color: var(--red);
  color: var(--red);
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  font-size: 13px;
  color: var(--white-faint);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-col ul a:hover::before { opacity: 1; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--white-faint);
}
.footer-contact li svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  font-size: 12px;
  color: var(--white-faint);
}
.footer-copyright span { color: var(--red); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--white-faint);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--red); }

/* ============================================================
   SAYFA GEÇİŞ ANİMASYONLARI
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-left"] { transform: translateX(-28px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(28px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

/* ============================================================
   FLASH MESAJ & UYARI
   ============================================================ */
.flash-msg {
  padding: 14px 20px;
  border-radius: 2px;
  font-size: 13px;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.flash-success { background: rgba(46,204,113,0.12); border: 1px solid rgba(46,204,113,0.25); color: #7dffb0; }
.flash-error { background: rgba(138,138,138,0.12); border: 1px solid var(--border-red); color: #ffb2b2; }
.flash-info { background: rgba(52,152,219,0.12); border: 1px solid rgba(52,152,219,0.25); color: #b2d4ff; }

/* ============================================================
   WHATSAPP FLOATING BTN
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 500;
  width: 54px; height: 54px;
  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: all var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { color: white; width: 26px; height: 26px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-band { grid-template-columns: 1fr; }
  .about-image { height: 380px; }
  .about-content { padding: 60px 40px; }
}

@media (max-width: 900px) {
  :root { --nav-height: 68px; }
  .navbar { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .container, .container-fluid { padding: 0 24px; }
  .section { padding: 80px 0; }
  .hero-content { padding: 0 24px; bottom: 18%; }
  .hero-scroll, .hero-controls { left: 24px; right: 24px; bottom: 28px; }
  .hero-arrows { padding: 0 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .vehicle-thumb-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .hero-arrows { display: none; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}
