@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-primary: #FFFFFF;
  --bg-section: #F8F9FA; /* Off-white / light grey */
  --bg-dark: #121214; /* Deep Charcoal Black */
  --text-primary: #1F2937; /* Dark slate text */
  --text-light: #FFFFFF;
  --brand-red: #C8102E; /* Shell Red */
  --brand-red-hover: #A50B22; /* Shell Red Hover */
  --brand-gold: #FFC700; /* Shell Yellow/Gold */
  --brand-gold-hover: #E0AF00; /* Shell Gold Hover */
  --brand-navy: #121214; /* Deep charcoal for headings */
  --card-shadow: 0 8px 32px rgba(200, 16, 46, 0.05); /* Premium red-tinted shadow */
  --radius: 16px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --nav-h: 72px;
  --transition: all 0.2s ease;
}

/* ─────────────────────────────────────────────────────────────────────────
   RESET & BASE STYLES
   ───────────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.25;
}

p {
  color: #4A5568;
}

a {
  color: var(--brand-navy);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--brand-gold);
}

img, svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* ─────────────────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--brand-red);
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: var(--brand-red-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--brand-gold);
  border: 2px solid var(--brand-gold);
}
.btn-outline:hover {
  background-color: var(--brand-gold);
  color: var(--brand-navy);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
}
.btn-whatsapp:hover {
  background-color: #20ba56;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────────────────
   STICKY HEADER & TOP BAR
   ───────────────────────────────────────────────────────────────────────── */
.top-bar {
  background-color: var(--brand-navy);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-phone {
  color: var(--brand-gold);
  font-weight: 700;
}
.top-bar-phone:hover {
  color: #FFFFFF;
}

.main-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid rgba(14,19,31,0.08);
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}
.nav-link {
  color: var(--brand-navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.nav-link:hover {
  color: var(--brand-red);
}

/* Header Dropdowns */
.nav-item {
  position: relative;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-primary);
  border: 1.5px solid rgba(14,19,31,0.08);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 0.75rem 0;
  z-index: 110;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-link {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}
.dropdown-link:hover {
  background-color: var(--bg-section);
  color: var(--brand-gold);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--brand-navy);
  margin-bottom: 4px;
  transition: var(--transition);
}
.menu-toggle span:last-child {
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1C0508 0%, #0E0203 100%); /* Crimson & Black Gradient */
  color: var(--text-light);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  color: var(--brand-gold);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero h2 {
  color: var(--text-light);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.hero-content {
  max-width: 650px;
  display: flex;
  flex-direction: column;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-features-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────────────────
   LIVE PRICE WIDGET
   ───────────────────────────────────────────────────────────────────────── */
.price-section {
  background-color: var(--bg-section);
  padding: 4rem 0;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.price-card {
  background-color: var(--brand-navy);
  color: var(--text-light);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(229,169,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: var(--transition);
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-gold);
}
.price-card.featured-price {
  border: 2.5px solid var(--brand-red);
  box-shadow: 0 0 24px rgba(200,16,46,0.15);
}
.price-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
}
.price-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--brand-gold);
}
.price-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.08);
  width: fit-content;
}
.status-red { color: #FF4D4D; }
.status-green { color: #2E7D32; }

/* ─────────────────────────────────────────────────────────────────────────
   FLEET SHOWCASE SECTION
   ───────────────────────────────────────────────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.fleet-card {
  background-color: var(--bg-primary);
  border: 1.5px solid rgba(14,19,31,0.08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition);
}
.fleet-card:hover {
  transform: translateY(-4px);
}
.fleet-card.featured {
  border: 2.5px solid var(--brand-red);
  position: relative;
}
.fleet-card.featured::after {
  content: 'EN ÇOK TERCİH EDİLEN';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-gold);
  color: var(--brand-navy);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.fleet-icon {
  width: 60px;
  height: 60px;
  background-color: var(--bg-section);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fleet-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--brand-navy);
}
.fleet-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.fleet-capacity {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-gold);
  font-size: 1.1rem;
}
.fleet-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(14,19,31,0.06);
  padding-top: 1.25rem;
  font-size: 0.95rem;
}
.fleet-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fleet-specs li::before {
  content: '•';
  color: var(--brand-gold);
  font-weight: 900;
}

/* ─────────────────────────────────────────────────────────────────────────
   SHELL V-POWER SPECS SECTION
   ───────────────────────────────────────────────────────────────────────── */
.tech-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.tech-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.tech-item {
  display: flex;
  gap: 12px;
}
.tech-check {
  color: #2E7D32;
  font-weight: 900;
  font-size: 1.2rem;
}
.tech-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.tech-text p {
  font-size: 0.95rem;
}

.tech-spec-card {
  background-color: var(--brand-navy);
  color: var(--text-light);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1.5px solid rgba(255,255,255,0.06);
}
.tech-spec-card h3 {
  color: var(--brand-gold);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.75rem;
}
.tech-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-body);
}
.tech-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  padding-bottom: 8px;
}
.tech-row:last-child {
  border-bottom: none;
}
.tech-row-lbl {
  color: rgba(255,255,255,0.7);
}
.tech-row-val {
  font-weight: 600;
  color: var(--text-light);
}

/* ─────────────────────────────────────────────────────────────────────────
   SERVICE REGIONS GRID (22 REGIONS)
   ───────────────────────────────────────────────────────────────────────── */
.regions-section {
  background-color: var(--bg-section);
}
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.region-card {
  background-color: var(--bg-primary);
  border: 1.5px solid rgba(14,19,31,0.06);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.region-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-gold);
  box-shadow: var(--card-shadow);
}
.region-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}
.region-card span {
  color: var(--brand-gold);
  font-weight: 700;
}
.region-card.featured-card {
  grid-column: span 2;
  background-color: var(--brand-navy);
  border-color: var(--brand-gold);
}
.region-card.featured-card h3 {
  color: var(--text-light);
  font-size: 1.25rem;
}
.region-card.featured-card span {
  font-size: 1.25rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   WHY US COUNTERS
   ───────────────────────────────────────────────────────────────────────── */
.counters-section {
  background-color: var(--brand-navy);
  color: var(--text-light);
  padding: 4rem 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.counter-card {
  display: flex;
  flex-direction: column;
}
.counter-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--brand-gold);
  line-height: 1.1;
}
.counter-lbl {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.8);
}

/* ─────────────────────────────────────────────────────────────────────────
   FAQ ACCORDION
   ───────────────────────────────────────────────────────────────────────── */
.faq-accordion {
  max-width: 850px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background-color: var(--bg-primary);
  border: 1.5px solid rgba(14,19,31,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-trigger h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-navy);
}
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand-gold);
  transition: transform 0.2s ease;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding: 0 1.5rem;
}
.faq-content p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
}
.faq-item.active {
  border-color: var(--brand-gold);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ─────────────────────────────────────────────────────────────────────────
   BOTTOM CTA SECTION
   ───────────────────────────────────────────────────────────────────────── */
.bottom-cta {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-hover) 100%);
  color: var(--brand-navy);
  text-align: center;
  padding: 5rem 0;
}
.bottom-cta h2 {
  color: var(--brand-navy);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.bottom-cta p {
  color: rgba(14,19,31,0.8);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.bottom-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────────────────
   MAPS OVERLAY
   ───────────────────────────────────────────────────────────────────────── */
.map-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  border: 1.5px solid rgba(14,19,31,0.08);
}
.map-overlay-card {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(14,19,31,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  max-width: 300px;
  z-index: 10;
}
.map-overlay-card h3 {
  font-size: 1.2rem;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}
.map-overlay-card p {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 1rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   MODERN FOOTER
   ───────────────────────────────────────────────────────────────────────── */
.main-footer {
  background: radial-gradient(circle at 50% -20%, #20090C 0%, #0C0405 100%) !important; /* Premium Crimson & Black Gradient */
  border-top: 3.5px solid var(--brand-gold) !important; /* Gold Top Border Accent */
  padding: 5rem 0 2rem 0;
  color: #E2E8F0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-col h3 {
  font-family: var(--font-display) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  border-bottom: 2px solid rgba(255, 199, 0, 0.3) !important;
  padding-bottom: 0.75rem !important;
  margin-bottom: 0.5rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-brand p {
  font-size: 0.95rem;
  color: #A0AEC0 !important;
  line-height: 1.6;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  color: #A0AEC0 !important;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links .link-icon {
  color: var(--brand-gold);
  font-weight: 700;
  transition: transform 0.2s ease;
}
.footer-links a:hover {
  color: var(--brand-gold) !important;
  padding-left: 6px;
}
.footer-links a:hover .link-icon {
  transform: translateX(4px);
}

/* Badge cards in footer brand col */
.footer-badge-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0.5rem;
}
.footer-badge-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 14px;
  transition: var(--transition);
}
.footer-badge-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 199, 0, 0.3);
}
.footer-badge-card img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.badge-text {
  display: flex;
  flex-direction: column;
}
.badge-text span {
  font-size: 0.75rem;
  color: #A0AEC0;
}
.badge-text strong {
  font-size: 0.85rem;
  color: #FFFFFF;
  font-family: var(--font-display);
}

/* White logo container wrapper in footer */
.footer-logo-wrap {
  background: #FFFFFF;
  padding: 12px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 1rem;
}
.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Contact Cards in footer */
.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 16px;
  transition: var(--transition);
}
.footer-contact-card:hover {
  border-color: var(--brand-gold);
  background: rgba(255, 255, 255, 0.05);
}
.contact-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-info {
  display: flex;
  flex-direction: column;
}
.contact-card-info span {
  font-size: 0.75rem;
  color: #A0AEC0;
}
.contact-card-info a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-gold) !important;
}
.contact-card-info strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}

/* Payment wrap and bottom bar */
.footer-bottom-wrap {
  border-top: 1.5px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 2rem;
}
.footer-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.payment-lbl {
  font-size: 0.9rem;
  color: #A0AEC0;
  font-weight: 600;
}
.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pay-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #E2E8F0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #718096 !important;
  border-top: 1.5px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: #718096 !important;
  font-size: 0.85rem;
}
.footer-bottom-links a:hover {
  color: var(--brand-gold) !important;
}

/* ─────────────────────────────────────────────────────────────────────────
   MOBILE BOTTOM NAV TAB BAR & FLOATING WIDGETS
   ───────────────────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  z-index: 9999;
  transition: var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--brand-navy);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  box-shadow: var(--card-shadow);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
}

.mob-bottom-nav {
  display: none;
}

/* ─────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN & MOBILE STYLES
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .price-grid, .fleet-grid, .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .region-card.featured-card {
    grid-column: span 1;
  }
  .tech-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 80px; /* offset for bottom sticky bar */
  }
  .top-bar {
    display: none;
  }
  .main-header .btn {
    display: none; /* hide header call button on mobile */
  }
  
  /* Mobile Tab Bar */
  .mob-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    height: 68px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(14,19,31,0.12);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(14,19,31,0.18);
    align-items: center;
    justify-content: space-around;
    z-index: 9999;
    padding: 0 8px;
  }
  .mob-nav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
    font-size: 0.65rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 3px;
    height: 100%;
  }
  .mob-nav-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  .mob-nav-btn:hover, .mob-nav-btn:active {
    transform: scale(1.08);
    color: var(--brand-navy);
  }
  .mob-call {
    background: var(--brand-gold);
    color: #0E131F !important;
    font-weight: 700;
    border-radius: 14px;
    padding: 8px 12px;
    height: 50px;
    flex-grow: 1.2;
  }
  .mob-call svg {
    fill: #0E131F;
  }
  .mob-whatsapp {
    background: #25D366;
    color: #FFFFFF !important;
    font-weight: 600;
    border-radius: 14px;
    padding: 8px 12px;
    height: 50px;
    flex-grow: 1.2;
  }
  .mob-whatsapp svg {
    fill: #FFFFFF;
  }
  
  .wa-float {
    display: none !important; /* hide float WA on mobile since we have tab bar */
  }

  /* Navigation menu collapse */
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .main-nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid rgba(14,19,31,0.06);
  }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    box-shadow: none;
    border: none;
    display: none;
    padding-left: 1rem;
  }
  
  /* Grids to 1 column */
  .price-grid, .fleet-grid, .regions-grid, .counters-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    text-align: center;
    padding: 4rem 0;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-features-list {
    justify-content: center;
  }
  .map-overlay-card {
    position: static;
    max-width: 100%;
    margin-top: 1rem;
    box-shadow: none;
    border-radius: 0;
    border: none;
    background: var(--bg-section);
  }
  .map-container {
    height: 300px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   HERO SLIDER SYSTEM
   ───────────────────────────────────────────────────────────────────────── */
.hero-slider-section {
  position: relative;
  height: 650px;
  background-color: #000;
  overflow: hidden;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide-content {
  max-width: 650px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1rem 0;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}
.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}
.slide-badge {
  background-color: var(--brand-red);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.slide-content h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #FFFFFF !important;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.slide-content p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* Integrated Service Feature Tags inside Slide */
.slide-feature-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0.5rem 0 1.25rem 0;
}
.slide-feature-tag {
  background: rgba(18, 18, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.slide-feature-tag:hover {
  border-color: var(--brand-gold);
  background: rgba(18, 18, 20, 0.9);
  transform: translateY(-1px);
}
.tag-icon {
  color: var(--brand-gold);
  font-weight: 800;
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(18, 18, 20, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}
.slider-control:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
}
.prev-control {
  left: 24px;
}
.next-control {
  right: 24px;
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.indicator {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}
.indicator.active {
  background: var(--brand-gold);
  width: 48px;
}

/* Responsive adjustments for Slider */
@media (max-width: 768px) {
  .hero-slider-section {
    height: 580px;
  }
  .slide-content h1 {
    font-size: 2rem;
  }
  .slide-content p {
    font-size: 0.95rem;
  }
  .slide-price-card {
    min-width: 100%;
  }
  .slider-control {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .prev-control {
    left: 12px;
  }
  .next-control {
    right: 12px;
  }
}
