/* ===== ROOT & RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #fff5f5; /* Light reddish tint background */
  --bg2: #ffe4e6; /* Soft rose background */
  --glass: rgba(255, 255, 255, 0.9);
  --glass-accent: rgba(225, 29, 72, 0.05);
  --glass-border: rgba(8, 145, 178, 0.15); /* Turquoise tinted border */
  --glass-hover: rgba(255, 255, 255, 1);
  --accent: #e11d48; /* Red */
  --accent-dark: #0891b2; /* Proper Turquoise */
  --accent-light: #f43f5e;
  --grad: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  --grad-mesh: radial-gradient(at 0% 0%, #ffedd5 0, rgba(225, 29, 72, 0) 50%), 
               radial-gradient(at 100% 0%, #cffafe 0, rgba(8, 145, 178, 0) 50%), 
               radial-gradient(at 100% 100%, #ffe4e6 0, rgba(225, 29, 72, 0) 50%), 
               radial-gradient(at 0% 100%, #cffafe 0, rgba(8, 145, 178, 0) 50%);
  --wa: #0891b2; /* Turquoise for WhatsApp */
  --text: #164e63; /* Deep Turquoise Text */
  --text2: #334155;
  --text3: #64748b;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 10px 40px rgba(225, 29, 72, 0.08);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.text-accent { color: var(--accent); }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 40px;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(240, 253, 244, 0.85); /* var(--bg2) with opacity */
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 40px;
  box-shadow: 0 4px 20px rgba(6, 78, 59, 0.05);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-text { font-size: 2.2rem; font-weight: 900; color: var(--text); letter-spacing: -1.5px; }
.logo-text.light { color: #fff; }
.logo-accent { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text2); transition: color var(--transition); }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  padding: 9px 22px;
  background: var(--wa);
  border-radius: 100px;
  font-size: 0.9rem; font-weight: 600;
  color: #fff !important;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(8,145,178,0.4); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero_fleet_green_theme.png') no-repeat center center/cover;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-mesh);
  opacity: 0.8;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 145, 178, 0) 0%, var(--bg2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 820px; padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: var(--accent);
  border: 1px solid var(--accent-light);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.2);
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--text);
  animation: fadeDown 0.8s 0.15s ease both;
}
.hero-desc {
  font-size: 1.15rem; color: var(--text2); max-width: 600px; margin: 0 auto 40px;
  animation: fadeDown 0.8s 0.3s ease both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  margin-bottom: 60px;
  animation: fadeDown 0.8s 0.45s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 0; justify-content: center;
  background: rgba(8, 145, 178, 0.04);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(8, 145, 178, 0.08);
  border-radius: 16px; padding: 20px 40px;
  animation: fadeDown 0.8s 0.6s ease both;
}
.stat { text-align: center; padding: 0 28px; }
.stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--glass-border); }

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--text3); letter-spacing: 2px; text-transform: uppercase;
  z-index: 10;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0% { opacity: 1; height: 48px; } 100% { opacity: 0; height: 16px; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 32px;
  border-radius: 14px; /* Nano banana style: softer corners but distinct */
  font-size: 1.05rem; font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn span, .btn svg { transition: transform 0.3s ease; }
.btn:hover span, .btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: var(--grad);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(16,185,129,0.5); background: var(--grad-hover); }
.btn-whatsapp {
  background: var(--bg);
  color: var(--wa);
  border: 2px solid var(--wa);
  box-shadow: 0 4px 15px rgba(8,145,178,0.1);
}
.btn-whatsapp:hover { transform: translateY(-3px); background: #f0fdfa; box-shadow: 0 8px 30px rgba(8,145,178,0.4); }
.btn-whatsapp.large { padding: 18px 45px; font-size: 1.15rem; }
.btn-outline {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.btn-outline:hover { background: #f9fafb; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.wa-icon { width: 22px; height: 22px; fill: var(--bg); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; color: var(--text);
}
.section-header p { color: var(--text2); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===== VEHICLES SECTION ===== */
.fleet-hero { 
  padding: 160px 0 80px; 
  background: var(--grad-mesh); 
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}
.vehicles-section { padding: 80px 0 100px; background: var(--bg2); position: relative; }
.nav-logo-link { display: flex; align-items: center; gap: 12px; }
.vip-badge { background: #fee2e2 !important; color: #991b1b !important; border: 1px solid #fecaca !important; }
.car-placeholder span { font-size: 2rem; }
.vehicles-section::before {
  content: ''; position: absolute; top:0; left:0; right:0; height: 300px;
  background: linear-gradient(180deg, var(--bg2) 0%, rgba(240, 253, 244, 0) 100%);
}

/* ===== FILTER BAR ===== */
.filter-container { margin-bottom: 50px; position: relative; z-index: 100; }
.filter-bar {
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
}
.filter-group { display: flex; flex-direction: column; gap: 8px; flex: 1; min-width: 180px; }
.filter-group label { font-size: 0.82rem; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 0.5px; }
.filter-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #f3f4f6;
  border-radius: 10px;
  background: #f9fafb;
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C2.185 5.355 2.401 5 2.736 5h10.528c.335 0 .551.355.285.658l-4.796 5.482a.5.5 0 0 1-.727 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
}
.filter-select:focus { border-color: var(--accent); background-color: #fff; box-shadow: 0 0 0 4px rgba(16,185,129,0.05); }

.btn-reset {
  padding: 12px 20px;
  background: #fee2e2;
  color: #991b1b;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 48px;
}
.btn-reset:hover { background: #fecaca; transform: translateY(-2px); }

@media (max-width: 768px) {
  .filter-bar { padding: 16px; gap: 16px; }
  .filter-group { min-width: 100%; }
}
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

/* ===== CAR CARD ===== */
.car-card {
  position: relative;
  background: var(--bg); /* Emerlad tint background */
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px;
  transition: all var(--transition);
  opacity: 0; transform: translateY(30px);
  box-shadow: var(--shadow);
}
.car-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.car-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(10,17,40,0.08); }

.card-badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 15px;
}
.card-badge.ekonomik { background: #cffafe; color: #0891b2; }
.card-badge.firsat { background: #fef3c7; color: #92400e; }
.card-badge.prestij { background: #ffe4e6; color: #e11d48; border: 1px solid rgba(225, 29, 72, 0.2); }

.card-kasko {
  position: absolute; top: 24px; right: 24px;
  font-size: 0.72rem; font-weight: 700;
  background: #fdf2f2;
  border: 1px solid #fee2e2;
  color: #dc2626;
  padding: 3px 10px; border-radius: 100px;
}

.car-img-wrap {
  width: 100%; height: 180px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f3f4f6;
}
.car-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.car-card:hover .car-img { transform: scale(1.08); }

.car-info { text-align: left; margin-bottom: 20px; }
.car-info h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; color: var(--text); }
.car-year { font-size: 0.85rem; color: var(--text3); font-weight: 600; }

.car-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 24px;
  padding: 16px; border-radius: var(--radius-sm);
  background: #f9fafb;
  border: 1px solid #f3f4f6;
}
.feature { display: flex; align-items: center; gap: 10px; }
.feature-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border: 1px solid #f3f4f6;
  border-radius: 8px; font-size: 0.95rem;
  flex-shrink: 0;
}
.feature span { font-size: 0.85rem; color: var(--text2); font-weight: 600; }

.car-pricing { margin-bottom: 24px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #f3f4f6; }
.price-row:last-child { border-bottom: none; }
.price-label { font-size: 0.85rem; color: var(--text2); font-weight: 500; }
.price-val { font-size: 1rem; font-weight: 700; color: var(--text); }
.price-val.primary { color: var(--accent); font-size: 1.1rem; }

.card-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  background: var(--grad);
  border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 700; color: #fff;
  transition: all var(--transition);
}
.card-btn:hover { background: var(--grad-hover); transform: scale(1.02); }
.section-cta { text-align: center; margin-top: 50px; }

/* ===== WHY US ===== */
.why-section { padding: 120px 0; background: var(--bg2); position: relative; overflow: hidden; }
.why-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 400px;
  background: radial-gradient(circle at bottom center, var(--bg2) 0%, transparent 70%);
  pointer-events: none;
}
.why-card {
  text-align: center; padding: 50px 35px;
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0; transform: translateY(30px);
  box-shadow: var(--shadow);
}
.why-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.why-card:hover { transform: translateY(-8px); box-shadow: 0 40px 80px rgba(10,17,40,0.06); }

.why-icon-wrap {
  width: 90px; height: 90px; margin: 0 auto 24px;
  background: var(--bg2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--glass-border);
}
.why-icon { font-size: 2.8rem; }
.why-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 15px; color: var(--text); }
.why-card p { color: var(--text2); font-size: 1rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 968px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== ABOUT SECTION ===== */
.about-section { padding: 120px 0; background: var(--bg2); position: relative; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; color: var(--text); }
.about-content p { color: var(--text2); font-size: 1.1rem; margin-bottom: 24px; line-height: 1.8; }

@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content { text-align: center; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: var(--grad);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(225, 29, 72, 0.15), rgba(225, 29, 72, 0));
}
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: 15px; }
.cta-banner p { font-size: 1.1rem; margin-bottom: 40px; opacity: 0.9; }

/* ===== FOOTER ===== */
.footer { background: #0a1128; padding: 60px 0 30px; color: #fff; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer .logo-text { color: #fff; }
.logo-icon.light { color: #fff; }
.logo-text.light { color: #fff; }
.footer-tagline { color: #94a3b8; font-size: 0.95rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; margin: 10px 0; }
.footer-links a { font-size: 0.95rem; color: #cbd5e1; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.85rem; color: #64748b; margin-top: 20px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar { padding: 14px 24px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-stats { padding: 16px 24px; flex-wrap: wrap; gap: 15px; }
  .stat { padding: 0 16px; }
  .hero-title { font-size: 2.5rem; }
}
