:root {
  --accent: #c8a960;
  --accent-hover: #b59856;
  --v-gold: #c8a960;
  --dark: #111111;
  --dark-alt: #1a1a1a;
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --muted: #666666;
  --line: #e0e0e0;
  --gold: #c8a960;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
.gold { color: var(--gold) !important; }

/* UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.container-fluid { max-width: 1400px; margin: 0 auto; padding: 0 30px; width: 100%; }
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-alt); }

/* NAVIGATION */
.main-nav {
  position: absolute;
  top: 0; left: 0; width: 100%;
  padding: 15px 0;
  z-index: 1000;
  background: rgba(12, 12, 12, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 169, 96, 0.15);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex; align-items: center; gap: 15px; color: #fff;
  transition: transform 0.3s ease;
}
.brand:hover {
  transform: scale(1.02);
}
.brand-logo { 
  height: auto; 
  width: 130px; 
}
.brand-text { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.85rem; 
  letter-spacing: 2px; 
  text-shadow: 0 2px 10px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.5);
  font-weight: 900;
}

.nav-links {
  display: flex; gap: 35px; align-items: center; margin: 0;
}
.nav-links li a {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease, text-shadow 0.3s ease;
}
.nav-links li a:hover {
  color: var(--accent);
  transform: scale(1.1) translateY(-1px);
  text-shadow: 0 4px 12px rgba(200, 169, 96, 0.4), 0 2px 4px rgba(0,0,0,0.5);
}

.nav-links li a.active {
  color: var(--accent);
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(200, 169, 96, 0.6), 0 2px 4px rgba(0,0,0,0.5);
  display: inline-block;
}


.nav-actions { display: flex; align-items: center; gap: 25px; }
.lang-switch { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 700; }
.lang-switch a.active { color: var(--accent); }
.lang-switch .divider { margin: 0 8px; opacity: 0.3; }

.btn-minimal {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px;
  background: var(--accent);
  color: #000;
  border-radius: 50px;
  font-weight: 800; font-size: 0.9rem; text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-minimal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 169, 96, 0.4);
  background: var(--accent-hover);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 20px;
  background: radial-gradient(circle at 70% 50%, #222222 0%, #111111 100%);
  color: #ffffff;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url('images/hero_luxury_car.png') no-repeat center center;
  background-size: cover;
  opacity: 0.55;
  pointer-events: none;
  z-index: 2;
}

/* BOOKING CARD */
.booking-card {
  background: rgba(230, 230, 230, 0.88);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%; max-width: 450px;
  color: #111111;
  position: relative; z-index: 10;
}
.booking-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; margin-bottom: 25px; text-align: center; font-weight: 900;
  color: #111111;
}
.field { margin-bottom: 20px; text-align: left; }
.field label {
  display: block; font-size: 0.75rem; font-weight: 800; color: #b59856;
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px;
}
.field input, .field select {
  width: 100%; padding: 15px 18px; border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px; background: #ffffff; color: #111111;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  transition: all 0.3s ease;
}
.field select option {
  background: #ffffff;
  color: #111111;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); background: #ffffff; box-shadow: 0 0 0 4px rgba(200,169,96,0.18); }
.booking-submit {
  width: 100%; padding: 18px; background: #111111; color: #ffffff;
  border: none; border-radius: 12px; font-weight: 900; font-size: 1rem;
  cursor: pointer; text-transform: uppercase; letter-spacing: 1.5px;
  transition: all 0.3s ease; margin-top: 15px;
}
.booking-submit:hover { background: var(--accent); color: #111111; box-shadow: 0 10px 25px rgba(200,169,96,0.4); transform: translateY(-2px); }

/* TRUST BAR */
.trust-bar-section {
  background: linear-gradient(135deg, #c8a960 0%, #b59856 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
  position: relative;
}
.trust-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; padding: 20px 0; }
.trust-item {
  color: #111111;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item i {
  color: #111111 !important;
}

/* WHEEL SECTION */
.wheel-section { background: #fff; text-align: center; overflow: hidden; }
#wheel-wrapper canvas { max-width: 100%; height: auto; border-radius: 50%; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.wheel-slide { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; transition: all 0.5s; pointer-events: none; }
.wheel-slide.active { opacity: 1; pointer-events: all; }
.confetti-bg span { position: absolute; width: 10px; height: 10px; background: var(--c); animation: confettiFall var(--d) linear infinite; left: var(--x); top: -10px; border-radius: 2px; opacity: 0.7; }

/* Mobilde çark üstte, form/yazı aşağıda */
@media (max-width: 900px) {
  #wheel-flex-row { flex-direction: column; gap: 30px !important; }
  #wheel-canvas-panel { order: 1; width: 100%; }
  #wheel-text-panel  { order: 2; width: 100%; min-width: unset !important; }
}
/* Wheel prize form dikkat çekme animasyonu */
#wheel-prize-form { border-radius: 16px; }

/* FLEET GRID */
.fleet-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px; 
}
@media (max-width: 1200px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .fleet-grid { grid-template-columns: 1fr; }
}
.fleet-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s ease; border: 1px solid var(--line); }
.fleet-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

/* ANIMATIONS */
@keyframes confettiFall { 0% { transform: translateY(0) rotate(0); } 100% { transform: translateY(100vh) rotate(360deg); } }
@keyframes floatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: #fff; display: flex; align-items: center; gap: 12px; padding: 15px 25px; border-radius: 50px; font-weight: 800; font-size: 1.1rem; box-shadow: 0 10px 30px rgba(37,211,102,0.4); z-index: 9999; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.05); }

@media (max-width: 991px) {
  .whatsapp-float {
    display: none !important;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .nav-links:not(.active) { display: none; }
  .nav-actions { display: none !important; }
  .hero::after { opacity: 0.1; background-size: cover; background-position: center; }
  .hero .container > div { flex-direction: column; align-items: center; text-align: center; }
  .booking-card { margin-top: 40px; }
  .trust-bar-inner { justify-content: center; gap: 20px; }
}

/* --- FOOTER --- */
.footer { background: #111111; color: #fff; padding: 0 0 40px; position: relative; border-top: 1px solid #222; }
.footer-map-wrap { position: relative; width: 100%; height: 400px; margin-bottom: 0; }
.footer-map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 1) 100%);
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-title { color: var(--accent); font-weight: 800; font-size: 1rem; margin-bottom: 20px; letter-spacing: 1px; }
.footer-links a { display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 12px; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icon { width: 40px; height: 40px; border-radius: 50%; background: #1a1a1a; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; transition: all 0.3s; }
.social-icon:hover { background: var(--accent); color: #000; transform: translateY(-3px); }

/* --- HAKKIMIZDA PAGE --- */
.v-section-label { display: inline-block; background: var(--accent); color: #000; padding: 6px 15px; border-radius: 30px; font-weight: 900; font-size: 0.75rem; margin-bottom: 20px; letter-spacing: 0.1em; }
.about-hero { padding: 160px 0 100px; background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('images/corporate_fleet_hero.webp') no-repeat center center; background-size: cover; color: #fff; position: relative; overflow: hidden; }
.hero-inner { display: flex; gap: 60px; align-items: center; }
.hero-copy { flex: 1; min-width: 300px; }
.hero-copy h1 { font-family: "Playfair Display", serif; font-size: clamp(3rem, 5vw, 4rem); font-weight: 900; margin-bottom: 25px; line-height: 1.1; }
.hero-copy h1 span { color: var(--accent); }
.hero-copy p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 500px; }
.hero-actions { display: flex; gap: 20px; align-items: center; }
.v-btn-dark { background: #fff; color: #000; padding: 15px 30px; border-radius: 50px; font-weight: 800; display: inline-flex; align-items: center; gap: 10px; }
.v-btn-dark:hover { background: var(--accent); }
.hero-phone { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: var(--accent); }
.hero-glass { flex: 0.8; background: rgba(255,255,255,0.03); backdrop-filter: blur(20px); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); }
.hero-glass h3 { color: #fff; margin-bottom: 30px; font-weight: 800; }
.glass-item { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.glass-item i { color: var(--accent); font-size: 1.5rem; }
.glass-item strong { display: block; color: #fff; font-weight: 700; margin-bottom: 5px; }
.glass-item span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.stats-shell { margin-top: -50px; position: relative; z-index: 10; }
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); background: #fff; padding: 40px; border-radius: 20px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); gap: 30px; }
.stat-card { display: flex; align-items: center; gap: 20px; }
.stat-card i { font-size: 2.5rem; color: var(--accent); }
.stat-card strong { display: block; font-size: 2rem; font-weight: 950; color: var(--dark); line-height: 1; }
.stat-card span { font-weight: 700; color: var(--muted); text-transform: uppercase; font-size: 0.8rem; }

.story-section { padding: 120px 0; background: var(--bg-alt); }
.story-head { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.story-head h2 { font-family: "Playfair Display", serif; font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; }
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; position: relative; }
.time-card { background: #fff; padding: 30px; border-radius: 15px; box-shadow: var(--shadow); position: relative; border-top: 4px solid var(--accent); }
.time-card strong { color: var(--accent); font-size: 1.5rem; font-weight: 900; display: block; margin-bottom: 10px; }
.time-card h3 { font-weight: 800; margin-bottom: 10px; }

.mission-section { padding: 80px 0; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.mission-card { background: #000; color: #fff; padding: 60px; border-radius: 20px; border: 1px solid var(--accent); }
.mission-card.vision { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/corporate-intel.webp') no-repeat center center; background-size: cover; }
.mission-card.mission { background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('images/corporate-executive.webp') no-repeat center center; background-size: cover; }
.mission-card.light { color: var(--dark); border-color: var(--line); }
.mission-card h3 { font-family: "Playfair Display", serif; font-size: 2rem; margin: 20px 0; font-weight: 900; }

.values-section { padding: 100px 0; background: var(--bg-alt); }
.center-title { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.center-title h2 { font-family: "Playfair Display", serif; font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.value-card { background: #fff; padding: 40px 30px; text-align: center; border-radius: 20px; box-shadow: var(--shadow); transition: transform 0.3s; }
.value-card:hover { transform: translateY(-10px); }
.value-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
.value-card h4 { font-weight: 900; margin-bottom: 15px; }

.why-section { padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.why-big h2 { font-family: "Playfair Display", serif; font-size: 2.5rem; font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.v-btn-gold { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: #000; padding: 15px 30px; border-radius: 50px; font-weight: 800; margin-top: 30px; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.why-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); }
.why-card img { width: 100%; height: 180px; object-fit: cover; }
.why-card-content { padding: 25px; }
.why-card-content h4 { font-weight: 800; margin-bottom: 10px; }

.final-cta { padding: 80px 0; }
.final-cta-inner { background: linear-gradient(135deg, #111, #1a1a1a); padding: 60px; border-radius: 30px; display: flex; justify-content: space-between; align-items: center; color: #fff; flex-wrap: wrap; gap: 40px; }
.final-cta-inner h2 { font-family: "Playfair Display", serif; font-size: 2.5rem; font-weight: 900; margin: 20px 0; max-width: 500px; }
.final-boxes { display: flex; gap: 20px; }
.final-mini { background: rgba(255,255,255,0.1); padding: 25px 35px; border-radius: 20px; text-align: center; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; }
.final-mini:hover { background: var(--accent); color: #000 !important; }
.final-mini i { font-size: 2rem; color: var(--accent); margin-bottom: 15px; display: block; }
.final-mini:hover i { color: #000; }
.final-mini span { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 5px; opacity: 0.8; }
.final-mini strong { display: block; font-size: 1.4rem; font-weight: 900; }
@media (max-width: 991px) {
  .hero-inner, .mission-grid, .why-grid, .footer-inner { grid-template-columns: 1fr; flex-direction: column; }
}


/* --- INDEX: NLP FAQ SECTION --- */
.nlp-faq-section { padding: 100px 0; background: var(--bg-alt); border-top: 1px solid var(--line); }
.nlp-faq-header { text-align: center; margin-bottom: 50px; }
.nlp-ai-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200, 169, 96, 0.15); color: var(--accent); padding: 8px 18px; border-radius: 50px; font-weight: 800; font-size: 0.8rem; border: 1px solid rgba(200, 169, 96, 0.3); margin-bottom: 20px; }
.nlp-faq-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; }
.nlp-faq-item { background: #fff; border: 1px solid #eee; border-radius: 15px; padding: 20px 25px; transition: all 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.nlp-faq-item:hover { border-color: var(--accent); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.nlp-faq-item[open] { border-color: var(--accent); box-shadow: 0 10px 30px rgba(200, 169, 96, 0.08); }
.nlp-faq-item summary { font-weight: 800; font-size: 1.1rem; color: var(--dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; outline: none; }
.nlp-faq-item summary::-webkit-details-marker { display: none; }
.nlp-faq-item summary::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--accent); transition: transform 0.3s; font-size: 0.9rem; }
.nlp-faq-item[open] summary::after { transform: rotate(180deg); }
.nlp-faq-answer { margin-top: 15px; color: var(--muted); line-height: 1.7; font-size: 0.95rem; border-top: 1px solid #f0f0f0; padding-top: 15px; }

@media (max-width: 991px) {
  .nlp-faq-grid { grid-template-columns: 1fr; max-width: 800px; }
}


/* --- ARACLAR: FILTER & SIDEBAR --- */
.filter-group label { display: block; }
.filter-check { width: 16px; height: 16px; cursor: pointer; }
.filter-count { background: #f0f0f0; color: #888; padding: 2px 8px; border-radius: 10px; font-size: 0.7rem; margin-left: auto; }
.filter-pill { cursor: pointer; outline: none; }
.filter-pill:hover:not(.active) { background: rgba(0,0,0,0.05) !important; }
.fleet-grid.list-view { display: flex; flex-direction: column; gap: 20px; }
.fleet-grid.list-view .fleet-card { display: flex; align-items: center; }
.fleet-grid.list-view .fleet-card img { width: 250px; height: auto; object-fit: contain; }
.features-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 60px; background: #fff; padding: 30px; border-radius: 20px; border: 1px solid #eee; }
.feature-item { display: flex; align-items: center; gap: 15px; }
.feature-icon { width: 50px; height: 50px; background: rgba(200, 169, 96, 0.1); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.feature-text h5 { font-weight: 800; font-size: 0.9rem; color: var(--dark); margin-bottom: 3px; }
.feature-text p { font-size: 0.8rem; color: var(--muted); }
.floating-side-bar { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; z-index: 1000; }
.side-action-item { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 15px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; color: var(--dark); width: 80px; height: 80px; text-decoration: none; }
.side-action-item:hover { background: var(--accent); color: #000; border-color: var(--accent); transform: translateX(-5px); }
.side-action-item i { font-size: 1.5rem; }
.side-action-item span { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; }

/* --- COMMON FAQ --- */
.faq-container { width: 100%; }
.faq-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; }
.faq-item { background: #fff; border: 1px solid #eee; border-radius: 15px; padding: 20px 25px; transition: all 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.faq-item:hover { border-color: var(--accent); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.faq-item[open] { border-color: var(--accent); box-shadow: 0 10px 30px rgba(200, 169, 96, 0.08); }
.faq-item summary { font-weight: 800; font-size: 1.1rem; color: var(--dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; outline: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--accent); transition: transform 0.3s; font-size: 0.9rem; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-content { display: none; margin-top: 15px; color: var(--muted); line-height: 1.7; font-size: 0.95rem; border-top: 1px solid #f0f0f0; padding-top: 15px; }
.faq-item[open] .faq-content { display: block; }
.faq-trigger { width: 100%; text-align: left; background: none; border: none; font-weight: 800; font-size: 1.1rem; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; outline: none; padding: 0; }

@media (max-width: 991px) {
  .faq-grid { grid-template-columns: 1fr; max-width: 800px; }
}

/* --- UTILITIES --- */
.full-bleed { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; padding: 0 5vw; }

/* =====================================================
   CAR CARD â€” AraÃ§ Filosu KartlarÄ± (vrms-public.js)
   ===================================================== */
.car-card {
  background: #fff;
  border-radius: 24px;
  overflow: visible;          /* AraÃ§ gÃ¶rseli kartÄ±n dÄ±ÅŸÄ±na Ã§Ä±kabilsin */
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  border: 1px solid #f0f0f0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;         /* z-index context iÃ§in */
  z-index: 1;
}
.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.14);
  border-color: rgba(200,169,96,0.5);
  z-index: 10;                /* Ãœstteki kartlarÄ±n Ã¼stÃ¼ne Ã§Ä±ksÄ±n */
}

/* AraÃ§ FotoÄŸraf AlanÄ± */
.car-image {
  position: relative;
  background: linear-gradient(160deg, #f8f6f1 0%, #ede9e0 100%);
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;          /* GÃ¶rsel Ã¼stten dÄ±ÅŸarÄ± taÅŸsÄ±n */
  padding-bottom: 10px;
  border-radius: 24px 24px 0 0;
}
.car-image img {
  max-width: 85%;
  max-height: 180px;
  object-fit: contain;
  position: relative;
  z-index: 5;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), filter 0.4s ease;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
  transform-origin: bottom center;
}
.car-card:hover .car-image img {
  transform: scale(1.35) translateY(-22px);
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.28));
}

/* Platform (araba altÄ± gÃ¶lgesi) */
.car-platform {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 16px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  transition: transform 0.5s ease, width 0.5s ease;
}
.car-card:hover .car-platform {
  width: 85%;
  transform: translateX(-50%) scaleY(0.7);
  opacity: 0.6;
}

/* AraÃ§ Bilgileri â€” overflow:hidden burada */
.car-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 25px 20px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  background: #fff;
  position: relative;
  z-index: 2;
}
.car-info {
  margin-bottom: 10px;
}
.car-price-tag {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.car-price-tag .price {
  font-size: 1.4rem;
  font-weight: 950;
  color: #111;
}
.car-price-tag .period {
  font-size: 0.85rem;
  color: #aaa;
  font-weight: 600;
}
.car-meta {
  display: flex;
  gap: 18px;
  font-size: 0.75rem;
  color: #999;
  font-weight: 700;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.car-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Action ButonlarÄ± */
.action-area {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.car-card-actions {
  display: flex;
  gap: 8px;
}
.btn-favorite, .btn-compare {
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.25s;
  font-size: 0.8rem;
  font-weight: 800;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
}
.btn-favorite:hover {
  background: #fff0f0;
  border-color: #e74c3c;
  color: #e74c3c;
}
.btn-compare:hover {
  background: rgba(200,169,96,0.08);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-favorite.active {
  background: #fff0f0;
  border-color: #e74c3c;
  color: #e74c3c;
}
.btn-compare.active {
  background: rgba(200,169,96,0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-rent-now {
  width: 100%;
  padding: 14px 20px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 950;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
}
.btn-rent-now:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 8px 20px rgba(200,169,96,0.35);
  transform: translateY(-2px);
}

/* Fleet Layout */
.fleet-layout-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 40px;
  align-items: flex-start;
}

.fleet-content-col {
  flex: 1;
  min-width: 0;
}

/* Fleet Grid üst sarmalayıcı */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  overflow: visible;          /* KartlarÄ±n yukarÄ± fÄ±rlamasÄ±na izin ver */
  padding-top: 30px;          /* Hover'da Ã¼stten kÄ±rpÄ±lmasÄ±n */
}
.fleet-grid.full-bleed {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.fleet-grid.list-view {
  grid-template-columns: 1fr;
}
.fleet-grid.list-view .car-card {
  flex-direction: row;
}
.fleet-grid.list-view .car-image {
  width: 260px;
  flex-shrink: 0;
  height: auto;
  min-height: 180px;
}

/* NabÄ±z animasyonu (MÃ¼sait rozetindeki nokta) */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* =====================================================
   RESERVATION MODAL CSS
   ===================================================== */
.res-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #f5f5f5;
  z-index: 99999;
  overflow-y: auto;
  padding: 40px 20px 60px;
}
.res-header-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-top: 10px;
}
.res-back-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.res-back-btn:hover { background: #111; color: #fff; border-color: #111; }
.res-header-content { flex: 1; }
.res-main-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: #111; margin: 0; }
.res-subtitle-row { display: flex; align-items: center; gap: 15px; margin-top: 8px; }
.res-title-line { width: 40px; height: 3px; background: var(--accent); border-radius: 2px; }
.res-subtitle { color: #999; font-size: 0.9rem; font-weight: 600; margin: 0; }

.res-container {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 25px;
  align-items: start;
}
@media (max-width: 1100px) {
  .res-container { grid-template-columns: 1fr; }
}

.premium-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}
.res-vehicle-image-box {
  position: relative;
  background: linear-gradient(160deg, #f8f6f1, #ede9e0);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  margin-bottom: 20px;
}
.res-vehicle-image-box img { max-width: 100%; max-height: 150px; object-fit: contain; }
.res-status-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(39,174,96,0.1); color: #27ae60;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.65rem; font-weight: 950;
  border: 1px solid rgba(39,174,96,0.2);
  text-transform: uppercase;
}
.res-vehicle-title { font-size: 1.2rem; font-weight: 900; color: #111; margin-bottom: 10px; }
.res-vehicle-meta { display: flex; gap: 15px; font-size: 0.8rem; color: #888; font-weight: 700; margin-bottom: 20px; }
.res-section-label { font-size: 0.7rem; font-weight: 900; text-transform: uppercase; color: #bbb; letter-spacing: 1px; margin-bottom: 12px; }
.res-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.res-spec-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; color: #555; }
.res-spec-item i { color: var(--accent); }

.res-form-section { display: flex; flex-direction: column; gap: 0; }
.res-step-card { background: #fff; border-radius: 20px; padding: 28px; box-shadow: 0 5px 20px rgba(0,0,0,0.04); border: 1px solid #f0f0f0; margin-bottom: 20px; }
.res-step-header { display: flex; align-items: center; gap: 15px; margin-bottom: 22px; }
.res-step-number { width: 38px; height: 38px; background: #111; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 950; font-size: 0.85rem; flex-shrink: 0; }
.res-step-title { font-weight: 900; font-size: 1.1rem; color: #111; margin: 0; }
.res-step-content {}
.res-input-group { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.res-field { display: flex; flex-direction: column; gap: 8px; }
.res-field label { font-size: 0.72rem; font-weight: 900; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.res-field input, .res-field select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid #eee; border-radius: 14px;
  background: #fafafa; color: #111;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600;
  transition: 0.2s; outline: none;
}

@media (max-width: 576px) {
  .booking-card form > div[style*="display:flex"],
  .booking-card form > div[style*="display:grid"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
}
.res-field input:focus, .res-field select:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(200,169,96,0.1); }
.res-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.res-btn-complete {
  width: 100%; padding: 18px;
  background: #111; color: #fff;
  border: none; border-radius: 16px;
  font-weight: 950; font-size: 1rem;
  cursor: pointer; transition: 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  letter-spacing: 0.5px; margin-top: 5px;
}
.res-btn-complete:hover { background: var(--accent); color: #000; box-shadow: 0 10px 30px rgba(200,169,96,0.4); }

.res-summary-card {}
.res-summary-title { font-size: 1.2rem; font-weight: 900; color: #111; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.res-days-badge { background: var(--accent); color: #000; padding: 4px 14px; border-radius: 20px; font-size: 0.7rem; font-weight: 950; }
.res-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f5f5f5; font-size: 0.85rem; }
.res-summary-row .label { color: #999; font-weight: 700; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.res-summary-row .val { font-weight: 900; color: #111; }
.res-summary-row.promo span:last-child { color: #27ae60; font-weight: 900; }
.res-total-box { background: #fafafa; border-radius: 16px; padding: 20px; margin-top: 15px; }
.res-grand-total-box { margin-top: 15px; padding-top: 15px; border-top: 2px solid #111; display: flex; flex-direction: column; gap: 4px; }
.total-label { font-size: 0.65rem; font-weight: 900; color: #999; text-transform: uppercase; letter-spacing: 1px; }
.total-val { font-size: 2rem; font-weight: 950; color: #111; line-height: 1; }
.total-note { font-size: 0.65rem; color: #aaa; font-weight: 700; }

/* Toggle Switch */
.switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; inset: 0; background: #e0e0e0; border-radius: 24px; transition: 0.3s; }
.slider:before { position: absolute; content: ''; height: 18px; width: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: 0.3s; box-shadow: 0 2px 5px rgba(0,0,0,0.15); }
input:checked + .slider { background: var(--accent); }
input:checked + .slider:before { transform: translateX(20px); }

/* Success & Error Modal */
.success-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999999;
  backdrop-filter: blur(5px);
  align-items: center; justify-content: center;
}
.success-overlay.active { display: flex; }
.success-card {
  background: #fff; border-radius: 30px; padding: 50px 40px;
  text-align: center; max-width: 420px; width: 90%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.success-icon-box {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem; color: #fff;
  box-shadow: 0 15px 35px rgba(184,134,11,0.35);
}
.success-card h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; margin-bottom: 15px; color: #111; }
.success-card p { color: #666; line-height: 1.7; margin-bottom: 30px; }
.success-btn {
  padding: 15px 40px; background: #111; color: #fff;
  border: none; border-radius: 50px; font-weight: 950;
  cursor: pointer; font-size: 0.9rem; transition: 0.3s;
}
.success-btn:hover { background: var(--accent); color: #000; }

/* =====================================================
   NAVIGATION FIX (araclar sayfasÄ± iÃ§in koyu arka plan)
   ===================================================== */
body[style*="padding-top"] .main-nav {
  position: fixed;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 169, 96, 0.15);
}

/* KaydÄ±rÄ±lan sayfada nav sticky */
.main-nav.scrolled {
  position: fixed;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 169, 96, 0.15);
}

/* =====================================================
   MOBÄ°L MENÃœ VE BOTTOM BAR
   ===================================================== */
.mobile-menu-btn {
  display: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  transition: color 0.2s;
}
.mobile-menu-btn:hover { color: var(--accent); }

@media (max-width: 991px) {
  .main-nav,
  .main-nav.scrolled,
  body[style*="padding-top"] .main-nav {
    background: #70706d !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(200, 169, 96, 0.15) !important;
    transform: none !important;
    -webkit-transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .mobile-menu-btn { display: flex; align-items: center; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: linear-gradient(145deg, rgba(20,20,20,0.98), rgba(5,5,5,0.98));
    flex-direction: column;
    gap: 0;
    padding: 15px 0;
    border-bottom: 2px solid var(--accent);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 999;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  }
  .nav-links.active { display: flex !important; }
  .nav-links li a {
    display: block;
    padding: 18px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1.05rem;
    text-align: center;
    font-weight: 700;
    transition: background 0.3s, color 0.3s;
  }
  .nav-links li a:hover {
    background: rgba(200, 169, 96, 0.1);
    color: var(--accent);
  }
  .nav-links li:last-child a {
    border-bottom: none;
  }
  
  body { padding-bottom: 80px; }
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid #222;
  z-index: 99999;
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom);
  justify-content: space-around;
  align-items: stretch;
  height: calc(70px + env(safe-area-inset-bottom));
  /* Force GPU rendering to prevent mobile scrolling jump/flicker */
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  will-change: transform;
}
@media (max-width: 991px) {
  .mobile-bottom-bar { display: flex !important; }
}

.mb-item, .mbb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  transition: color 0.2s;
}
.mb-item i, .mbb-item i { font-size: 1.3rem; }
.mb-item:hover, .mbb-item:hover { color: var(--accent); }
.mb-call i { color: var(--accent); }
.mb-whatsapp i { color: #25d366; }
.mb-primary {
  background: var(--accent);
  color: #000 !important;
  margin: 5px;
  border-radius: 12px;
}
.mb-primary:hover { background: var(--accent-hover); color: #000 !important; }
.center-btn-inner { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.center-btn { 
  background: var(--accent); color: #000 !important; 
  margin: 5px; border-radius: 12px; flex: 1.5;
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
#filo312-cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
  background: #111;
  border: 1px solid #333;
  border-radius: 20px;
  z-index: 99998;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
  overflow: hidden;
}
#filo312-cookie-banner.active { bottom: 20px; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 25px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
  min-width: 250px;
}
.cookie-text i { color: var(--accent); font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 10px 25px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: 900;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s;
}
.btn-cookie-accept:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* =====================================================
   GENEL RESPONSIVE Ä°YÄ°LEÅTÄ°RMELER
   ===================================================== */
@media (max-width: 768px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .res-input-group { grid-template-columns: 1fr; }
  .res-grid-2 { grid-template-columns: 1fr; }
  
  /* araclar.html - ana layout */
  .fleet-layout-row {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 16px !important;
  }

  /* Mobil filtre toggle butonu */
  #fleet-filter-toggle {
    display: flex !important;
  }

  /* Filtre paneli mobilde gizli başlar, toggle ile açılır */
  #fleet-filter-panel {
    width: 100% !important;
    position: static !important;
    border-right: none !important;
    border-radius: 16px !important;
    margin-bottom: 20px !important;
    padding: 24px 20px !important;
    display: none; /* JS ile toggle edilir */
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
  }
  #fleet-filter-panel.filter-open {
    display: block;
  }

  /* Araç listesi kolonu */
  .fleet-content-col {
    flex: 1;
    min-width: 0;
  }

  /* Quick filter pills - yatay kaydırma */
  .fleet-content-col > div:first-child {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .fleet-content-col > div:first-child::-webkit-scrollbar { display: none; }

  .features-bar {
    grid-template-columns: 1fr 1fr;
  }
  
  .floating-side-bar { display: none; }
  
  .footer-inner {
    grid-template-columns: 1fr !important;
  }
  
  .fleet-grid.list-view .car-card {
    flex-direction: column;
  }
  .fleet-grid.list-view .car-image {
    width: 100%;
    min-height: 200px;
  }

  /* Sıralama dropdown'ını tam genişlik */
  #filo312-sort-select {
    font-size: 0.8rem;
    padding: 10px 16px !important;
  }
}

/* =====================================================
   COUNTER / ANÄ°MASYON YÃœKLEYÄ°CÄ°
   ===================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   FİLO312 COMPARE & FAVORITES SYSTEM STYLES
   ===================================================== */

/* Toast Notification */
.filo312-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: #fff;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 100005;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  border-left: 4px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
}
.filo312-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Compare Floating Bottom Bar */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(200, 169, 96, 0.3);
  padding: 18px 0;
  z-index: 9997; /* Just below cookies, above content */
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  font-family: 'Inter', sans-serif;
}
.compare-bar.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 991px) {
  .compare-bar {
    bottom: 70px; /* Leave space for mobile-bottom-bar */
    padding: 14px 0;
  }
}
.compare-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.compare-info {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.compare-count {
  background: var(--accent);
  color: #000;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 900;
  margin-right: 10px;
  font-size: 0.9rem;
}
.compare-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.btn-compare-clear {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.btn-compare-clear:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}
.btn-compare-open {
  background: var(--accent);
  border: none;
  color: #000;
  padding: 11px 26px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 900;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-compare-open:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 169, 96, 0.4);
}
.btn-compare-open.disabled, .btn-compare-open:disabled {
  background: #333;
  color: #666;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Compare Modal Overlay */
.compare-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
  font-family: 'Inter', sans-serif;
}
.compare-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Compare Modal Content */
.compare-modal-content {
  background: #fff;
  border-radius: 28px;
  width: 100%;
  max-width: 1050px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 45px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.92) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.compare-modal-overlay.active .compare-modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  color: #333;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal-close:hover {
  background: #111;
  color: #fff;
  transform: rotate(90deg);
}

.compare-modal-header {
  margin-bottom: 35px;
  text-align: center;
}
.compare-modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}
.compare-modal-header p {
  color: #777;
  font-size: 1rem;
}

.compare-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.compare-table th, .compare-table td {
  padding: 22px;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  font-size: 0.95rem;
}
.compare-table th:last-child, .compare-table td:last-child {
  border-right: none;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table thead th {
  background: #fafafa;
  vertical-align: bottom;
}
.compare-table thead th:first-child {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: #111;
  font-size: 1.05rem;
}
.compare-th-item {
  position: relative;
  text-align: center;
  min-width: 220px;
  padding-top: 35px !important;
}
.compare-th-item img {
  max-width: 170px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 15px;
}
.compare-th-item h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}
.compare-th-item .price {
  font-size: 1.25rem;
  font-weight: 950;
  color: #111;
}
.compare-th-item .price span {
  font-size: 0.8rem;
  color: #999;
  font-weight: 600;
}
.btn-remove-item {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 5px;
  transition: transform 0.2s ease, color 0.2s ease;
}
.btn-remove-item:hover {
  transform: scale(1.2);
  color: #c0392b;
}

.compare-table tbody td.feature-label {
  font-weight: 800;
  color: #444;
  background: #fafafa;
  width: 200px;
}
.compare-table tbody td.feature-label i {
  color: var(--accent);
  margin-right: 8px;
  width: 18px;
  text-align: center;
}
.compare-table tbody td:not(.feature-label) {
  font-weight: 600;
  color: #333;
  text-align: center;
}
.badge-best {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  border: 1px solid rgba(39, 174, 96, 0.2);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .compare-modal-content {
    padding: 25px 15px;
  }
  .compare-modal-header h2 {
    font-size: 1.8rem;
  }
  .compare-table th, .compare-table td {
    padding: 14px;
    font-size: 0.85rem;
  }
}

/* Index Page Map Overlap Transition */
.index-map-wrap {
  margin-top: -65px;
  position: relative;
  z-index: 20;
}

/* =====================================================
   NEW PREMIUM CLEAN FOOTER STYLES (Light & Dark Layout)
   ===================================================== */
.footer {
  background: transparent !important;
  color: #333 !important;
  padding: 0 !important;
  border-top: none !important;
}

/* Upper Footer (White) */
.footer-upper {
  background: #ffffff;
  padding: 40px 0 60px;
  border-top: none;
}

.footer-upper .footer-title {
  color: #111111;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer-upper .footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
}

@media (max-width: 991px) {
  .footer-upper .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 576px) {
  .footer-upper .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  /* Logo + iletişim tam genişlik */
  .footer-upper .footer-inner > div:first-child,
  .footer-upper .footer-inner > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 400px) {
  .footer-upper .footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-upper .footer-inner > div:first-child,
  .footer-upper .footer-inner > div:last-child {
    grid-column: auto;
  }
}

/* Column 1 - Badges */
.footer-badges-grid {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-badge-item {
  flex: 1;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  background: #fafafa;
  transition: all 0.3s;
}

.footer-badge-item:hover {
  border-color: var(--accent);
  background: #ffffff;
  transform: translateY(-2px);
}

.footer-badge-item i {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: block;
}

.footer-badge-item .badge-title {
  font-size: 0.65rem;
  font-weight: 950;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.footer-badge-item .badge-sub {
  font-size: 0.65rem;
  color: #888;
  font-weight: 600;
}

/* Column 2 - Districts Grid */
.footer-districts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-districts-grid a, .footer-nav-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #555555;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.footer-districts-grid a i, .footer-nav-list a i {
  color: var(--accent);
  font-size: 0.75rem;
  width: 14px;
  text-align: center;
}

.footer-districts-grid a:hover, .footer-nav-list a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-all-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.2s;
}

.footer-all-link:hover {
  transform: translateX(5px);
}

/* Column 3 - Corporate List: 2 kolon grid ile daha kompakt */
.footer-nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

@media (max-width: 991px) {
  .footer-nav-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .footer-nav-list {
    grid-template-columns: 1fr;
  }
}

/* Column 4 - Contact Info */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #444;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  background: #f8f8f8;
  border: 1px solid #f0f0f0;
  transition: border-color 0.2s, background 0.2s;
}

.contact-item:hover {
  background: #fff;
  border-color: rgba(200,169,96,0.3);
}

.contact-item a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Social */
.footer-social-title {
  font-size: 0.75rem;
  font-weight: 900;
  color: #111;
  letter-spacing: 1px;
  margin-top: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #fff;
  text-decoration: none;
}

.social-btn:hover {
  transform: translateY(-4px);
}

.social-btn.instagram {
  color: #E1306C;
  border-color: rgba(225, 48, 108, 0.25);
}
.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(225, 48, 108, 0.35);
}

.social-btn.facebook {
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.25);
}
.social-btn.facebook:hover {
  background: #1877F2;
  color: #fff;
  border-color: #1877F2;
  box-shadow: 0 6px 15px rgba(24, 119, 242, 0.35);
}

.social-btn.twitter {
  color: #111;
  border-color: rgba(17, 17, 17, 0.2);
}
.social-btn.twitter:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.social-btn.youtube {
  color: #FF0000;
  border-color: rgba(255, 0, 0, 0.25);
}
.social-btn.youtube:hover {
  background: #FF0000;
  color: #fff;
  border-color: #FF0000;
  box-shadow: 0 6px 15px rgba(255, 0, 0, 0.35);
}

/* Lower Footer (Dark Navy) */
.footer-lower {
  background: #111622;
  color: #ffffff;
  padding: 40px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.footer-trust-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .footer-trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .footer-trust-row {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  /* Telefon kutusu tam genişlik */
  .footer-trust-row .trust-phone-box {
    grid-column: 1 / -1;
    background: rgba(200,169,96,0.06);
    border: 1px solid rgba(200,169,96,0.15);
    border-radius: 14px;
    padding: 16px 20px;
  }
  /* Trust item'lar kompakt */
  .trust-info-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.trust-phone-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1.5px solid rgba(200, 169, 96, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  animation: phonePulse 2s infinite;
}

@keyframes phonePulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(200, 169, 96, 0.2); }
  70% { transform: scale(1.03); box-shadow: 0 0 0 8px rgba(200, 169, 96, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(200, 169, 96, 0); }
}

.phone-text-wrap {
  display: flex;
  flex-direction: column;
}

.phone-text-wrap .label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.phone-text-wrap .phone-number {
  font-size: 1.15rem;
  font-weight: 950;
  color: #ffffff;
  text-decoration: none;
  margin: 2px 0;
  transition: color 0.2s;
}

.phone-text-wrap .phone-number:hover {
  color: var(--accent);
}

.phone-text-wrap .sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

.trust-info-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  font-size: 1.5rem;
  color: var(--accent);
}

.trust-text h4 {
  font-size: 0.85rem;
  font-weight: 850;
  color: #ffffff;
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.footer-copyright-row {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  font-weight: 600;
}

/* CUSTOM VEHICLE SELECT DROP-DOWN */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}
.custom-select-trigger {
  width: 100%;
  padding: 10px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #ffffff;
  color: #111111;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  min-height: 52px;
  box-sizing: border-box;
}
.custom-select-trigger:focus,
.custom-select-trigger.active {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200,169,96,0.18);
}
.custom-select-trigger-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.custom-select-trigger-img {
  width: 45px;
  height: 25px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.custom-select-trigger-text {
  font-weight: 600;
}
.custom-select-arrow {
  color: var(--accent);
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}
.custom-select-trigger.active .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  z-index: 999;
  max-height: 300px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-select-options.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select-option {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.custom-select-option:last-child {
  border-bottom: none;
}
.custom-select-option:hover {
  background: rgba(200, 169, 96, 0.08);
}
.custom-select-option.selected {
  background: rgba(200, 169, 96, 0.12);
  font-weight: bold;
}
.custom-select-option-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.custom-select-option-img {
  width: 55px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
  transition: transform 0.2s ease;
}
.custom-select-option:hover .custom-select-option-img {
  transform: scale(1.08);
}
.custom-select-option-info {
  display: flex;
  flex-direction: column;
}
.custom-select-option-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111111;
}
.custom-select-option-meta {
  font-size: 0.72rem;
  color: #777777;
  font-weight: 500;
  margin-top: 1px;
}
.custom-select-option-price {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
  text-align: right;
}
/* Scrollbar styling for options */
.custom-select-options::-webkit-scrollbar {
  width: 6px;
}
.custom-select-options::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
}
.custom-select-options::-webkit-scrollbar-thumb {
  background: rgba(200, 169, 96, 0.3);
  border-radius: 12px;
}
.custom-select-options::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 169, 96, 0.5);
}

/* WHEEL OF FORTUNE PRIZE WINNING EFFECTS */
@keyframes prizePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(200, 169, 96, 0.5);
    background: rgba(200, 169, 96, 0.12);
    border-color: rgba(200, 169, 96, 0.4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 25px 12px rgba(200, 169, 96, 0.35);
    background: rgba(200, 169, 96, 0.22);
    border-color: rgba(200, 169, 96, 0.9);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(200, 169, 96, 0);
    background: rgba(200, 169, 96, 0.12);
    border-color: rgba(200, 169, 96, 0.4);
  }
}

@keyframes textShimmer {
  0% {
    color: #111111;
    text-shadow: 0 0 0px rgba(200, 169, 96, 0);
  }
  50% {
    color: #c8a960;
    text-shadow: 0 0 20px rgba(200, 169, 96, 0.8), 0 0 30px rgba(200, 169, 96, 0.4);
  }
  100% {
    color: #111111;
    text-shadow: 0 0 0px rgba(200, 169, 96, 0);
  }
}

.prize-winning-box {
  animation: prizePulse 1.8s infinite ease-in-out !important;
  transition: all 0.3s ease;
}

.prize-winning-text {
  animation: textShimmer 1.8s infinite ease-in-out !important;
  font-size: 2.2rem !important; /* Slightly larger to emphasize victory */
}/* MAP LAZY LOAD PLACEHOLDER */
.map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a24 0%, #111118 100%);
  background-image: 
    radial-gradient(rgba(200, 169, 96, 0.15) 1px, transparent 0),
    radial-gradient(rgba(200, 169, 96, 0.1) 1px, transparent 0);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.5s ease;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.map-placeholder-btn {
  padding: 14px 28px;
  background: var(--accent);
  color: #111111;
  border: none;
  border-radius: 12px;
  font-weight: 950;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(200,169,96,0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.map-placeholder:hover .map-placeholder-btn {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 15px 30px rgba(200,169,96,0.45);
}
.map-placeholder-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* =====================================================
   LAPTOP & HIGH-DPI SCALED DISPLAY OPTIMIZATIONS
   (Fixes the "zoomed in" appearance on laptop viewports)
   ===================================================== */
@media (min-width: 992px) and (max-width: 1600px) {
  html {
    font-size: 14px; /* Scales down all rem-based elements (~12.5% zoom out) */
  }
  .section {
    padding: 70px 0; /* Reduce vertical padding on sections for a more compact view */
  }
  .hero {
    padding-top: 80px;
    padding-bottom: 30px;
    min-height: calc(100vh - 65px);
  }
  .booking-card {
    padding: 25px 30px;
    max-width: 410px;
  }
  .booking-card h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
  .field {
    margin-bottom: 12px;
  }
  .field input, .field select {
    padding: 12px 15px;
  }
  .booking-submit {
    padding: 14px;
    margin-top: 10px;
  }
  .nav-links {
    gap: 28px; /* Slightly wider gap for better spacing */
  }
  .nav-actions {
    gap: 15px;
  }
  .brand-text {
    font-size: 1.55rem;
  }
  .brand-logo {
    width: 130px;
    height: auto;
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  html {
    font-size: 13px; /* Scales down elements further on smaller laptops (~18.5% zoom out) */
  }
  .section {
    padding: 60px 0;
  }
  .nav-links {
    gap: 20px; /* Comfortably spaced gap for smaller laptop viewports */
  }
  .nav-links li a {
    font-size: 0.85rem;
  }
  .btn-minimal {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}






@media (max-width: 768px) {
  .hero {
    padding-top: 100px !important;
    padding-bottom: 20px !important;
    min-height: auto !important;
    background: #ffffff !important;
    color: #111 !important;
  }
  .hero::after {
    background:
      radial-gradient(circle at 95% 5%, rgba(200,169,96,0.15) 0%, transparent 35%),
      radial-gradient(circle at 5% 95%, rgba(200,169,96,0.12) 0%, transparent 30%),
      radial-gradient(circle at 50% 50%, rgba(200,169,96,0.05) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 60%, rgba(17,17,17,0.04) 0%, transparent 40%),
      radial-gradient(ellipse at 20% 30%, rgba(17,17,17,0.03) 0%, transparent 35%) !important;
    opacity: 1 !important;
  }
  .hero h1 { color: #111 !important; text-shadow: none !important; }
  .hero p { color: #555 !important; text-shadow: none !important; }
  .hero .btn-minimal { background: #111 !important; color: #fff !important; border-color: #111 !important; }
  .hero .btn-minimal:nth-child(2) { background: #fff !important; color: #111 !important; border: 2px solid #ddd !important; }
  .hero div[style*="text-shadow"] { text-shadow: none !important; }
  .hero .gold, .hero i.gold { color: var(--accent) !important; }
  .hero .container > div > div:first-child > div { justify-content: center !important; }
  .hero h1 { font-size: 2.2rem !important; line-height: 1.2 !important; margin-bottom: 15px !important; }
  .hero p { font-size: 0.95rem !important; margin-bottom: 20px !important; }
  .booking-card { padding: 20px !important; margin-top: 20px !important; max-width: 100% !important; }
  .booking-card h3 { font-size: 1.4rem !important; margin-bottom: 15px !important; }
  .field { margin-bottom: 10px !important; }
  .field label { margin-bottom: 4px !important; font-size: 0.7rem !important; }
  .field input, .field select { padding: 12px 14px !important; font-size: 0.85rem !important; height: auto !important; }
  .booking-card form > div[style*="display:flex"], .booking-card form > div[style*="display:grid"] { flex-direction: row !important; gap: 10px !important; display: flex !important; }
  .booking-submit { padding: 14px !important; font-size: 0.95rem !important; margin-top: 10px !important; }
}
