/* ...existing code from renco/styles.css... *//* ============================================================
   DriveGo — Self-Drive Car Rentals
   Color System: Deep Blue & Orange (01)
   Navy  #1B2A4A  35%  |  White   #FFFFFF  30%
   Orange #FF6B35  15%  |  L.Gray  #F0F2F5  15%
   D.Ink  #1A1A2E   5%
============================================================ */
:root {
  --navy:      #1B2A4A;
  --orange:    #FF6B35;
  --white:     #FFFFFF;
  --lgray:     #F0F2F5;
  --ink:       #1A1A2E;

  --orange-hover: #e85a22;
  --navy-light:   #243659;
  --shadow-sm:    0 2px 12px rgba(27,42,74,.10);
  --shadow-md:    0 6px 28px rgba(27,42,74,.18);
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);            /* Dark Ink — body text */
  background: var(--white);     /* White — base page bg */
  scroll-behavior: smooth;
}

/* ── UTILITIES ─────────────────────────────────────────────── */
.bg-navy    { background-color: var(--navy) !important; }
.bg-lgray   { background-color: var(--lgray) !important; }
.bg-orange  { background-color: var(--orange) !important; }
.text-navy  { color: var(--navy) !important; }
.text-orange{ color: var(--orange) !important; }
.text-ink   { color: var(--ink) !important; }

.btn-orange {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  font-weight: 600;
  letter-spacing: .3px;
  transition: background .2s, transform .15s;
}
.btn-orange:hover {
  background-color: var(--orange-hover);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-orange:active { transform: translateY(0); }

.btn-outline-orange {
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 600;
  transition: all .2s;
}
.btn-outline-orange:hover {
  background-color: var(--orange);
  color: var(--white);
}

.btn-navy {
  background-color: var(--navy);
  color: var(--white);
  border: none;
  font-weight: 600;
  transition: background .2s, transform .15s;
}
.btn-navy:hover {
  background-color: var(--navy-light);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── NAVBAR (Navy — contributes to 35%) ──────────────────── */
.navbar {
  background-color: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.navbar-brand {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: -.5px;
}
.navbar-brand span { color: var(--orange); }
.navbar .nav-link {
  color: rgba(255,255,255,.82) !important;
  font-weight: 500;
  font-size: .95rem;
  padding: 6px 14px !important;
  transition: color .2s;
}
.navbar .nav-link:hover { color: var(--orange) !important; }
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ── HERO (Navy — contributes to 35%) ────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243864 60%, #1a3055 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,107,53,.18);
  color: var(--orange);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,107,53,.3);
}
.hero h1 {
  font-size: clamp(2.0rem, 5vw, 3.0rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero p.lead {
  color: rgba(255,255,255,.76);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stat-item .number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-item .label {
  font-size: .82rem;
  color: rgba(255,255,255,.60);
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-car-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-car-visual img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.5));
  animation: floatCar 4s ease-in-out infinite;
}
@keyframes floatCar {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge.badge-top {
  top: 12%;
  right: -10px;
}
.hero-badge.badge-bottom {
  bottom: 14%;
  left: -10px;
}
.hero-badge .icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.hero-badge .badge-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
}
.hero-badge .badge-text span {
  font-size: .75rem;
  color: #888;
}

/* ── SECTION TITLES ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  color: #6b7a93;
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
}
.title-underline {
  width: 52px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px 0 0;
}

/* ── HOW IT WORKS (White — contributes to 30%) ───────────── */
.how-it-works { background: var(--white); }
.step-card {
  text-align: center;
  padding: 36px 24px;
}
.step-number {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}
.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed var(--orange);
  opacity: .5;
}
.step-card h5 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.step-card p {
  color: #6b7a93;
  font-size: .92rem;
  line-height: 1.65;
}
.step-connector { position: relative; }
.step-connector::before {
  content: '';
  position: absolute;
  top: 29px;
  left: calc(50% + 42px);
  right: calc(-50% + 42px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0, var(--orange) 8px,
    transparent 8px, transparent 16px
  );
}

/* ── WHY US (Light Gray — contributes to 15%) ────────────── */
.why-us { background: var(--lgray); }
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  border-left: 4px solid transparent;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-left-color: var(--orange);
}
.feature-icon {
  width: 54px; height: 54px;
  background: rgba(255,107,53,.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 18px;
}
.feature-card h5 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.feature-card p {
  color: #6b7a93;
  font-size: .91rem;
  line-height: 1.65;
  margin: 0;
}

/* ── CARS GRID (Light Gray bg — 15%, White cards — 30%) ──── */
.cars-section { background: var(--lgray); }
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: var(--white);
  border-radius: 50px;
  padding: 7px 22px;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
}

.car-card {
  background: var(--white);       /* White — card background */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.car-img-wrap {
  background: var(--lgray);       /* Light Gray — image bg */
  position: relative;
  overflow: hidden;
  height: 200px;
}
.car-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.car-card:hover .car-img-wrap img { transform: scale(1.06); }

.car-fuel-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.fuel-petrol   { background: #fff3ee; color: var(--orange); border: 1px solid rgba(255,107,53,.3); }
.fuel-diesel   { background: #e8f0fe; color: #1a5fe0; border: 1px solid rgba(26,95,224,.25); }
.fuel-hybrid   { background: #e8f8e8; color: #1a8a3a; border: 1px solid rgba(26,138,58,.25); }
.fuel-electric { background: #f3e8ff; color: #7b2fbe; border: 1px solid rgba(123,47,190,.25); }

.car-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.car-category {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.car-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.car-specs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.car-spec-item {
  font-size: .8rem;
  color: #7a849a;
  display: flex;
  align-items: center;
  gap: 5px;
}
.car-spec-item i { color: var(--navy); font-size: .85rem; }

.car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--lgray);
}
.car-price { line-height: 1; }
.car-price .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);        /* Orange — pricing */
}
.car-price .per {
  font-size: .78rem;
  color: #9aa3b3;
  font-weight: 500;
}
.btn-rent {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 9px 22px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-rent:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

/* ── TESTIMONIALS (White — contributes to 30%) ───────────── */
.testimonials { background: var(--white); }
.testi-card {
  background: var(--lgray);
  border-radius: 16px;
  padding: 30px 26px;
  height: 100%;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 22px;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  font-family: Georgia, serif;
  opacity: .25;
}
.testi-stars { color: var(--orange); font-size: .9rem; margin-bottom: 14px; }
.testi-text {
  color: #4a5568;
  font-size: .94rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.testi-author strong { display: block; font-weight: 700; color: var(--navy); font-size: .9rem; }
.testi-author span   { font-size: .78rem; color: #9aa3b3; }

/* ── CTA BANNER (Navy — contributes to 35%) ──────────────── */
.cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.15) 0%, transparent 70%);
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
}
.cta-section h2 span { color: var(--orange); }
.cta-section p { color: rgba(255,255,255,.7); }

/* ── FOOTER (Navy — contributes to 35%) ──────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
}
footer .footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
footer .footer-brand span { color: var(--orange); }
footer p, footer a { color: rgba(255,255,255,.65); font-size: .9rem; }
footer a { text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--orange); }
footer h6 {
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer .footer-divider  { border-color: rgba(255,255,255,.1); }
footer .footer-bottom   { color: rgba(255,255,255,.45); font-size: .82rem; }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-header {
  background: var(--navy);
  color: var(--white);
  border-bottom: none;
  padding: 20px 28px 16px;
}
.modal-header .modal-title { font-weight: 800; font-size: 1.15rem; }
.modal-header .btn-close    { filter: invert(1); opacity: .7; }
.modal-body   { padding: 28px 28px 10px; }
.modal-footer { padding: 16px 28px 24px; border-top: 1px solid var(--lgray); }

.selected-car-banner {
  background: var(--lgray);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 4px solid var(--orange);
}
.selected-car-banner .car-thumb {
  width: 72px; height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.selected-car-banner .car-info strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}
.selected-car-banner .car-info span {
  font-size: .82rem;
  color: var(--orange);
  font-weight: 600;
}

.form-label {
  font-weight: 600;
  color: var(--navy);
  font-size: .88rem;
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1.5px solid #dde2ec;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: .93rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,.12);
  outline: none;
}
.optional-tag {
  font-size: .75rem;
  color: #aab0bf;
  font-weight: 400;
  margin-left: 6px;
}
.required-star { color: var(--orange); }

/* ── SUCCESS STATE ─────────────────────────────────────────── */
.success-view {
  text-align: center;
  padding: 20px 0 10px;
}
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,107,53,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--orange);
  margin: 0 auto 18px;
  border: 2px solid rgba(255,107,53,.3);
}
.success-view h5 { font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.success-view p  {
  color: #6b7a93;
  font-size: .93rem;
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── MISC ──────────────────────────────────────────────────── */
.scroll-to-cars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  text-decoration: none;
  margin-top: 18px;
  font-weight: 500;
  transition: color .2s;
}
.scroll-to-cars:hover { color: var(--orange); }
.scroll-arrow {
  animation: bounceDown 1.6s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.no-cars-msg {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: #9aa3b3;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-car-visual { margin-top: 40px; }
  .hero-badge { display: none; }
  .hero-stats { gap: 24px; }
  .step-connector::before { display: none; }
  .hero-car-visual img { max-width: 100%; }
}

/* ── FLOATING CONTACT BUTTONS ──────────────────────────────── */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 14px;
    z-index: 1080;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
    overflow: hidden;
}

.floating-btn img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.floating-btn--whatsapp { background: #25D366; }
.floating-btn--call     { background: var(--navy); }

.floating-call-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-call-note {
    position: relative;
    background: #ffffff;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
    white-space: nowrap;
}

.floating-call-note::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    box-shadow: 2px -2px 4px rgba(0, 0, 0, .06);
}

.floating-btn:hover,
.floating-btn:focus-visible {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .32);
}

@media (max-width: 767px) {
    .floating-contact {
        bottom: 16px;
        right: 16px;
        gap: 12px;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
    }

    .floating-btn img {
        width: 28px;
        height: 28px;
    }

    .floating-call-note {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* ── FIRST-LOAD ALERT MODAL ──────────────────────────────── */
.alert-modal .modal-content {
  border: none;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.alert-modal .modal-header {
  background-color: var(--navy);
  color: var(--white);
  border-bottom: 3px solid var(--orange);
  padding: 18px 24px;
}
.alert-modal .modal-title {
  font-weight: 700;
  letter-spacing: .3px;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
}
.alert-modal .modal-title .bi { color: var(--orange); }
.alert-modal .modal-body {
  padding: 28px 24px;
  font-size: 1.05rem;
  color: var(--ink);
  text-align: center;
  line-height: 1.55;
}
.alert-modal .modal-footer {
  border-top: 1px solid var(--lgray);
  justify-content: center;
  padding: 16px 24px 20px;
}
.alert-modal .modal-footer .btn-orange {
  min-width: 140px;
  border-radius: 8px;
  padding: 10px 22px;
}
