/* ========================================================
   Yaşar Rent a Car - Premium CSS
   Palette: Krem/Açık Tema + Altın Aksanlar
======================================================== */

:root {
  --primary: #FAF7F2;
  --secondary: #F2EDE4;
  --accent: #C9922A;
  --accent-dark: #A8791E;
  --accent-light: #E8A835;
  --text-primary: #1a1f3a;
  --text-secondary: #3a4060;
  --text-muted: #6b7299;
  --card-bg: #FFFFFF;
  --card-border: #E8D5B0;
  --nav-height: 80px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 4px 24px rgba(201, 146, 42, 0.20);
  --shadow-card: 0 8px 32px rgba(201, 146, 42, 0.12);
  --radius: 12px;
}


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

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Scroll Progress Bar ---- */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ==============================
   HEADER / NAV
============================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #E8D5B0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(250, 247, 242, 0.99);
  box-shadow: 0 4px 20px rgba(201, 146, 42, 0.12);
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  border: 2px solid rgba(201, 146, 42, 0.30);
  box-shadow: 0 2px 12px rgba(201, 146, 42, 0.20);
  transition: var(--transition);
}

.nav-logo:hover img {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(201, 146, 42, 0.40);
  transform: scale(1.05);
}

.nav-logo span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
  display: block;
  letter-spacing: -0.01em;
}

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

.nav-links a {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: rgba(201, 146, 42, 0.10);
  box-shadow: 0 2px 12px rgba(201, 146, 42, 0.12);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #FFFFFF !important;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201, 146, 42, 0.30);
  position: relative;
  overflow: hidden;
}

.nav-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.nav-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201, 146, 42, 0.50);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

.nav-phone:hover::before {
  left: 100%;
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--secondary);
  border-bottom: 2px solid rgba(201, 146, 42, 0.20);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 1050;
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a {
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid #E8D5B0;
  transition: var(--transition);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--accent);
  background: rgba(201, 146, 42, 0.09);
}

.mobile-phone {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #FFFFFF !important;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
}


/* ==============================
   SİTE BANNER
============================== */
.site-banner {
  width: 100%;
  line-height: 0;
  /* removes bottom gap */
  overflow: hidden;
  border-bottom: 1px solid #E8D5B0;
}

.site-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* ==============================
   HERO
============================== */
#hero {
  position: relative;
  background: var(--primary);
  padding: 70px 0 80px;
  min-height: unset;
  overflow: visible;
}

/* Hero iki sütunlu layout */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: 0;
}

/* ---- Hero Video ---- */
.hero-video-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-inner {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(201, 146, 42, 0.22),
    0 8px 24px rgba(0, 0, 0, 0.10);
  border: 2px solid rgba(201, 146, 42, 0.25);
  background: #1a1a2e;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.hero-video-inner:hover {
  box-shadow:
    0 32px 80px rgba(201, 146, 42, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.hero-video-inner video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 380px;
  object-fit: cover;
  border-radius: 18px;
}

.hero-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(201, 146, 42, 0.40);
  pointer-events: none;
  z-index: 2;
}

/* ---- Hero Badge & Typography ---- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 146, 42, 0.12);
  border: 1px solid rgba(201, 146, 42, 0.30);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Dark outline button (light background) */
.btn-outline-dark {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--card-border);
}

.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 146, 42, 0.07);
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(26, 31, 58, 0.88) 0%,
      rgba(26, 31, 58, 0.70) 55%,
      rgba(26, 31, 58, 0.40) 100%);
}


/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(201, 146, 42, 0.30);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: left 0.55s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 146, 42, 0.55);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245, 166, 35, 0.07);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 146, 42, 0.20);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
  width: 100%;
  justify-content: center;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: left 0.55s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 146, 42, 0.50);
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1dba57;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}


/* ==============================
   SECTION COMMON
============================== */
section {
  padding: 90px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

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

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

.accent {
  color: var(--accent);
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 3px;
  margin: 16px 0 32px;
}

.text-center .divider {
  margin: 16px auto 32px;
}

/* Ghost divider for alternating  */
#neden-biz {
  background: var(--secondary);
}

#hakkimizda {
  background: var(--secondary);
}


/* ==============================
   NEDEN BIZ (WHY US)
============================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Gold shimmer line at bottom on hover */
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 146, 42, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 146, 42, 0.5);
  box-shadow: 0 16px 40px rgba(201, 146, 42, 0.14), var(--shadow-gold);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(201, 146, 42, 0.25));
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ==============================
   ARAÇLARIMIZ (CARS)
============================== */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.car-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s ease,
    box-shadow 0.38s ease;
  display: flex;
  flex-direction: column;
  /* Subtle top accent line */
  border-top: 2px solid transparent;
}

.car-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 146, 42, 0.5);
  border-top-color: var(--accent);
  box-shadow:
    0 20px 48px rgba(201, 146, 42, 0.18),
    0 8px 24px rgba(201, 146, 42, 0.12);
}

.car-image-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #EDE8DF, #F5F0E8);
  height: 200px;
}

.car-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.car-card:hover .car-image-wrap img {
  transform: scale(1.06);
}

.car-year-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
}

.car-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.car-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.spec svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.car-body .btn-gold {
  margin-top: auto;
}


/* ==============================
   HAKKIMIZDA (ABOUT)
============================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.stat-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 146, 42, 0.5);
  box-shadow: 0 12px 32px rgba(201, 146, 42, 0.16);
}

.stat-box .number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-box .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.stat-box .label small {
  font-size: 0.72rem;
  opacity: 1;
  display: block;
  margin-top: 2px;
}

.stat-box .number.emoji {
  font-size: 1.6rem;
}

.about-visual {
  position: sticky;
  top: 100px;
}

.about-visual img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 400px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #FFFFFF;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: var(--shadow-gold);
  text-align: center;
  line-height: 1.3;
}

.about-badge span {
  font-size: 1.6rem;
  display: block;
  line-height: 1;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 0.97rem;
}

.about-bullets {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.about-bullet::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(201, 146, 42, 0.12);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ==============================
   REZERVASYON (FORM)
============================== */
#rezervasyon {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 48px;
  max-width: 900px;
  margin: 48px auto 0;
  box-shadow: var(--shadow-card);
}

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

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

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

input,
select,
textarea {
  background: #FFFFFF;
  border: 1px solid #E8D5B0;
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  padding: 12px 16px;
  transition: var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  background: rgba(201, 146, 42, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 146, 42, 0.12);
}

select option {
  background: #FFFFFF;
  color: var(--text-primary);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.radio-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 18px;
  border-radius: 50px;
  border: 2px solid var(--card-border);
  background: #FFFFFF;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
}

.radio-label:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 146, 42, 0.06);
}

/* Hide the default radio button */
.radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom radio dot */
.radio-label::before {
  content: '';
  display: flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--card-border);
  background: #FFFFFF;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 0 0 rgba(201, 146, 42, 0);
}

.radio-label:has(input:checked) {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(201, 146, 42, 0.12), rgba(201, 146, 42, 0.06));
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(201, 146, 42, 0.20);
}

.radio-label:has(input:checked)::before {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 146, 42, 0.20);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 10px;
  border: 2px solid var(--card-border);
  background: #FFFFFF;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
}

.checkbox-label:hover {
  border-color: var(--accent);
  background: rgba(201, 146, 42, 0.04);
}

/* Hide native checkbox */
.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom checkbox square */
.checkbox-label::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 6px;
  border: 2px solid var(--card-border);
  background: #FFFFFF;
  margin-top: 1px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 12px;
  color: #FFFFFF;
}

.checkbox-label:has(input:checked) {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(201, 146, 42, 0.10), rgba(201, 146, 42, 0.04));
  box-shadow: 0 4px 16px rgba(201, 146, 42, 0.18);
  color: var(--text-secondary);
}

.checkbox-label:has(input:checked)::before {
  content: '✓';
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 146, 42, 0.20);
  font-weight: 900;
}

.checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

.form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 18px 52px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(201, 146, 42, 0.30);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: left 0.55s ease;
}

.btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(201, 146, 42, 0.55);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success .success-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}


/* ==============================
   İLETİŞİM (CONTACT)
============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px 22px;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 146, 42, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.contact-card:hover {
  border-color: var(--accent);
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(201, 146, 42, 0.20);
}

.contact-card:hover::after {
  opacity: 1;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(201, 146, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card.whatsapp .contact-icon {
  background: rgba(37, 211, 102, 0.12);
}

.contact-card.address .contact-icon {
  background: rgba(66, 135, 245, 0.12);
}

.contact-info small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  /* No filter needed for light theme */
}


/* ==============================
   FOOTER
============================== */
footer {
  background: #1a1f3a;
  border-top: 1px solid rgba(201, 146, 42, 0.20);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  margin-bottom: 14px;
  border: 2px solid rgba(201, 146, 42, 0.30);
}

.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 146, 42, 0.25);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--accent);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

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

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--accent);
}


/* ==============================
   INSTAGRAM FLOATING BUTTON
============================== */
.instagram-float {
  position: fixed;
  bottom: 96px; 
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(214, 36, 159, 0.45);
  transition: var(--transition);
  text-decoration: none;
}

.instagram-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 35px rgba(214, 36, 159, 0.6);
}

.instagram-float svg {
  width: 24px;
  height: 24px;
}

/* Instagram Pulse ring */
.instagram-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #d6249f;
  opacity: 0;
  animation: igPulse 2.5s ease-out infinite;
  animation-delay: 1.25s;
}

@keyframes igPulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

/* ==============================
   WHATSAPP FLOATING BUTTON
============================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
  background: #1dba57;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.wp-text {
  display: block;
}

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid #25D366;
  opacity: 0;
  animation: wpPulse 2.5s ease-out infinite;
}

@keyframes wpPulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}



/* ======================================================
   SCROLL REVEAL — Fade Up + Stagger (Transition-based)
   Stagger set via --card-delay CSS custom property by JS.
====================================================== */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--card-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}



/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-video-inner video {
    max-height: 320px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #hero {
    padding: 48px 0 56px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-video-inner video {
    max-height: 260px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  section {
    padding: 60px 0;
  }

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

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

  .form-card {
    padding: 28px 20px;
  }

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

  .form-group.full {
    grid-column: 1;
  }

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

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

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

  .whatsapp-float .wp-text {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }

  .whatsapp-float::before {
    border-radius: 50%;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .car-specs {
    grid-template-columns: 1fr 1fr;
  }

  .map-wrap {
    height: 240px;
  }

  .hero-video-inner video {
    max-height: 210px;
  }

  .hero-video-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
}

/* ==============================
   TYPOGRAPHY GOOGLE FONTS IMPORT
============================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');