/* =====================================================
   Pick & Go Rent A Car — styles.css (landing page)
   Navy #0F1B3C · Orange #F58220 · White
   ===================================================== */

:root {
  --navy:        #0F1B3C;
  --navy-2:      #142347;
  --navy-3:      #1B2F5C;
  --orange:      #F58220;
  --orange-2:    #FF9A3C;
  --orange-dark: #D96A0F;
  --wa-green:    #25D366;
  --wa-dark:     #1DA851;
  --white:       #ffffff;
  --off:         #F6F7FB;
  --text:        #1A1F2D;
  --text-light:  #5C6379;
  --border:      #E4E7EE;
  --shadow-sm:   0 2px 8px rgba(15, 27, 60, 0.08);
  --shadow:      0 10px 30px rgba(15, 27, 60, 0.12);
  --shadow-lg:   0 20px 60px rgba(15, 27, 60, 0.18);
  --radius:      14px;
  --radius-lg:   24px;
  --header-h:    64px;
  --mobile-bar:  62px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* ===== Typography ===== */
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); line-height: 1.05; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  margin: 0.5rem 0 2rem;
  max-width: 640px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(245, 130, 32, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245, 130, 32, 0.4); }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

.btn-large { padding: 1.1rem 2.4rem; font-size: 1.1rem; }

.btn-arrow { display: inline-block; transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-wa-hero {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  font-size: 1.05rem;
  padding: 0.95rem 1.8rem;
}
.btn-wa-hero:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45); }

.btn-wa-header {
  background: var(--wa-green);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}
.btn-wa-header:hover { background: var(--wa-dark); }

.wa-icon { flex-shrink: 0; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(15, 27, 60, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--white);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.brand-pick, .brand-go { color: var(--white); }
.brand-amp { color: var(--orange); margin: 0 0.05em; }
.brand-tag {
  display: none;
  margin-left: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  font-weight: 600;
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: 0.6rem;
}
@media (min-width: 1100px) { .brand-tag { display: block; } }

.header-nav {
  display: flex;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  font-size: 0.93rem;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--orange); }

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  padding: 0.32rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  border-radius: 999px;
  transition: all 0.15s ease;
}
.lang-btn.is-active { background: var(--orange); color: var(--white); }
.lang-btn:hover:not(.is-active) { color: var(--white); }

/* ===== Hamburger ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.is-open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile Nav Drawer ===== */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--navy-2);
  z-index: 190;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.mobile-nav.is-open {
  max-height: 400px;
  padding: 1.25rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.mobile-nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s ease;
}
.mobile-nav-links a:last-child { border-bottom: 0; }
.mobile-nav-links a:hover { color: var(--orange); }

.btn-wa-mobile {
  width: 100%;
  justify-content: center;
  background: var(--wa-green);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.btn-wa-mobile:hover { background: var(--wa-dark); }

/* ===== Hero ===== */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 6rem 0 0;
  min-height: 660px;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1617170708704-3189ba27e822?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 60%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 18, 42, 0.88) 0%,
    rgba(15, 27, 60, 0.75) 60%,
    rgba(15, 27, 60, 0.6) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 4rem;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text { max-width: 580px; flex: 1; }
.hero-text h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-text p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* ===== Hero Features Card ===== */
.hero-features {
  flex-shrink: 0;
  width: 290px;
  background: rgba(10, 18, 42, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hf-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.hf-clock {
  font-size: 2rem;
  line-height: 1;
}

.hf-available {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hf-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}

.hf-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.hf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hf-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}

.hf-cta {
  display: block;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-top: 0.25rem;
}
.hf-cta:hover { background: #d97010; }

@media (max-width: 1060px) {
  .hero-features { width: 260px; }
}

@media (max-width: 920px) {
  .hero-features { display: none; }
  .hero-inner { display: block; }
}

/* ===== Trust Bar ===== */
.trust-bar {
  position: relative;
  z-index: 2;
  background: rgba(245, 130, 32, 0.92);
  backdrop-filter: blur(8px);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0.9rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.3rem 1.25rem;
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

.trust-stars { color: #FFE066; font-size: 0.95rem; letter-spacing: 1px; }
.trust-check { font-size: 1rem; }

/* ===== Reserve / Inquiry Form ===== */
.reserve {
  padding: 5rem 0;
  background: var(--off);
}
.reserve h2 { text-align: center; }
.reserve .section-sub { text-align: center; margin-left: auto; margin-right: auto; }

.reserve-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 920px;
  margin: 2rem auto 0;
}

.hp { position: absolute; left: -9999px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.optional { font-weight: 400; color: var(--text-light); font-size: 0.85rem; }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--off);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.15s ease, background 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C6379' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 90px; }

.btn-submit {
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}

.form-skip-wa {
  text-align: center;
  margin: -0.5rem 0 1.5rem;
  font-size: 0.9rem;
}
.form-skip-wa a {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
}
.form-skip-wa a:hover { text-decoration: underline; }

.form-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: var(--text-light);
}
.form-trust-row .form-stars {
  color: #F5A623;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== Fleet ===== */
.fleet { padding: 5rem 0; }
.fleet h2 { text-align: center; }
.fleet .section-sub { text-align: center; margin-left: auto; margin-right: auto; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.fleet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}

.fleet-card-feature {
  border-color: var(--orange);
  position: relative;
}
.fleet-popular-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  z-index: 2;
  white-space: nowrap;
  text-transform: uppercase;
}

.fleet-image {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.fleet-card:hover .fleet-image img { transform: scale(1.06); }

.fleet-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem;
}

.fleet-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.fleet-card-top h3 { color: var(--navy); font-size: 1.25rem; }

.fleet-price {
  background: rgba(245, 130, 32, 0.1);
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 130, 32, 0.25);
  flex-shrink: 0;
}

.fleet-count {
  background: rgba(15, 27, 60, 0.07);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 27, 60, 0.12);
  flex-shrink: 0;
}

.fleet-card[data-modal] { cursor: pointer; }

.fleet-card-body > p { color: var(--text-light); margin-bottom: 1rem; font-size: 0.95rem; }

.fleet-list {
  list-style: none;
  margin: 0.5rem 0 1.5rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
}
.fleet-list li {
  padding: 0.3rem 0;
  border-top: 1px solid var(--border);
}
.fleet-list li:first-child { border-top: 0; }

.fleet-card-body .btn { align-self: flex-start; width: 100%; justify-content: center; }

/* ===== Reviews / Testimonials ===== */
.reviews {
  padding: 5rem 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.05;
}

.reviews h2 { text-align: center; color: var(--white); }
.reviews .section-sub { text-align: center; margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.65); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.2s ease;
}
.review-card:hover { transform: translateY(-4px); }

.review-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 700;
}
.review-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== Why Choose Us ===== */
.why {
  background: var(--navy);
  color: var(--white);
  padding: 6rem 0;
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.why-statement h2 {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.why-body {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-size: 0.97rem;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 600;
  color: var(--white);
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  line-height: 1.4;
}

.why-list li:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.why-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--orange);
  border-radius: 50%;
}

/* ===== FAQ ===== */
.faq { padding: 5rem 0; background: var(--white); }
.faq h2 { text-align: center; }
.faq .section-sub { text-align: center; margin-left: auto; margin-right: auto; }

.faq-list {
  max-width: 760px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--off);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.faq-item[open] { border-color: var(--orange); box-shadow: var(--shadow-sm); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; }

.faq-item > div {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}
.footer-tag {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
}
.footer-desc { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-cta p { margin-bottom: 1rem; font-size: 1.05rem; font-weight: 600; }
.footer-contact strong { color: var(--orange); letter-spacing: 0.1em; font-size: 0.82rem; text-transform: uppercase; }
.footer-contact p { color: rgba(255,255,255,0.82); font-size: 0.92rem; margin-bottom: 0.4rem; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ===== Toast Notification ===== */
.toast {
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: #1A8F4A;
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  max-width: min(520px, 90vw);
  width: 100%;
  transition: top 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: normal;
}
.toast.is-visible { top: calc(var(--header-h) + 12px); }

.toast-icon { flex-shrink: 0; }

.toast-close {
  margin-left: auto;
  flex-shrink: 0;
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  line-height: 1;
  padding: 0 0.2rem;
  transition: color 0.15s;
}
.toast-close:hover { color: var(--white); }

/* ===== Instagram header icon ===== */
.btn-ig-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: rgba(255,255,255,0.7) !important;
  transition: color 0.2s;
  flex-shrink: 0;
}
.btn-ig-header:hover { color: var(--white) !important; }

/* ===== Floating buttons ===== */
.floating-google {
  position: fixed;
  bottom: 9.25rem;
  right: 1.75rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  z-index: 100;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1.5px solid #e8e8e8;
}
.floating-google:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(0,0,0,0.22); }

.floating-ig {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(188,24,136,0.4);
  z-index: 100;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-ig:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(188,24,136,0.5); }

/* ===== Floating WhatsApp ===== */
.floating-wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  background: var(--wa-green);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  z-index: 100;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55); }

/* ===== Mobile Bottom CTA Bar ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.7rem 1rem;
  z-index: 150;
  box-shadow: 0 -4px 20px rgba(15,27,60,0.12);
}

.btn-wa-bar {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 700;
}
.btn-wa-bar:hover { background: var(--wa-dark); }

/* ===== Responsive ===== */
@media (max-width: 1060px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .header-nav { display: none; }
  .btn-wa-header { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding-top: 4rem; min-height: 500px; }
  .hero-bg { background-position: center 40%; }

  .form-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .why-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Show mobile bar, hide floating button */
  .mobile-cta-bar { display: block; }
  .floating-wa, .floating-ig, .floating-google { display: none; }

  /* Add bottom padding to avoid mobile bar overlap */
  body { padding-bottom: var(--mobile-bar); }
}

@media (max-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 420px; margin: 2.5rem auto 0; }
}

@media (max-width: 560px) {
  .fleet-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 540px) {
  .why-split { gap: 2rem; }
  .reserve-form { padding: 1.5rem; }
  .header-inner { gap: 0.5rem; }
  .brand { font-size: 1.15rem; }
  .hero { padding-top: 3rem; }
  .hero-text h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { justify-content: center; }
  .trust-item { padding: 0.3rem 0.6rem; font-size: 0.82rem; }
  .trust-divider { display: none; }
  .reserve, .fleet, .why, .faq, .reviews { padding: 3.5rem 0; }
}

/* ===== Fleet Modal ===== */
.fleet-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 38, 0.8);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.fleet-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fleet-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 840px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(28px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
  scrollbar-width: thin;
}
.fleet-modal-overlay.is-open .fleet-modal {
  transform: translateY(0) scale(1);
}

.fleet-modal-header {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: sticky;
  top: 0;
  z-index: 1;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.modal-avail {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 500;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.modal-close-btn:hover { background: rgba(255, 255, 255, 0.22); }

.modal-features-note {
  padding: 1.1rem 1.75rem 0;
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.modal-cars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
}

.modal-car-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.modal-car-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.modal-car-photo {
  height: 195px;
  overflow: hidden;
  background: var(--navy);
  flex-shrink: 0;
}
.modal-car-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.modal-car-card:hover .modal-car-photo img { transform: scale(1.05); }

.modal-car-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

.modal-car-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.modal-car-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.badge-seat,
.badge-feature {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-seat {
  background: rgba(15, 27, 60, 0.07);
  color: var(--navy);
  border: 1px solid rgba(15, 27, 60, 0.14);
}

.badge-feature {
  background: rgba(245, 130, 32, 0.08);
  color: var(--orange-dark);
  border: 1px solid rgba(245, 130, 32, 0.2);
}

.btn-modal-car {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  padding: 0.78rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(245, 130, 32, 0.28);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  border: 0;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
}
.btn-modal-car:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 130, 32, 0.38);
}

.modal-footer-cta {
  margin: 0 1.75rem 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--off);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.modal-footer-q {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.modal-footer-sub {
  font-size: 0.88rem;
  color: var(--text-light);
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 0.65rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* Single-car category: center the card */
.modal-cars-grid.modal-single { grid-template-columns: minmax(0, 420px); justify-content: center; }

/* Mobile modal */
@media (max-width: 640px) {
  .fleet-modal-overlay { padding: 0; align-items: flex-end; }
  .fleet-modal {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 92vh;
  }
  .fleet-modal-header { padding: 1.25rem; }
  .modal-features-note { padding: 0.9rem 1.25rem 0; }
  .modal-cars-grid { grid-template-columns: 1fr; padding: 1rem 1.25rem; }
  .modal-cars-grid.modal-single { grid-template-columns: 1fr; }
  .modal-footer-cta { margin: 0 1.25rem 1.25rem; flex-direction: column; align-items: stretch; }
  .btn-outline-navy { width: 100%; justify-content: center; }
}

/* ===== Fleet Modal Mini-Form ===== */
.modal-mini-form {
  padding: 1.5rem 1.75rem 0.25rem;
  border-top: 1px solid var(--border);
}
.mmf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.mmf-requesting {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.mmf-car-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}
.mmf-back-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.mmf-back-btn:hover { border-color: var(--navy); color: var(--navy); }
.mmf-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mmf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.mmf-submit { margin-top: 0.25rem; }
@media (max-width: 520px) {
  .modal-mini-form { padding: 1.25rem 1.25rem 0.25rem; }
  .mmf-row { grid-template-columns: 1fr; }
}

/* =====================================================
   Conversion enhancements
   ===================================================== */

/* Hero urgency badge */
.hero-urgency {
  display: inline-block;
  background: rgba(245, 130, 32, 0.18);
  border: 1px solid rgba(245, 130, 32, 0.5);
  color: #FFB366;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* Fleet pricing badge */
.fleet-price {
  display: inline-block;
  background: var(--off);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.9rem;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.fleet-price strong {
  color: var(--orange);
  font-size: 1.05rem;
}

/* Form confirmation message */
.form-confirm {
  text-align: center;
  color: #1DA851;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(29, 168, 81, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(29, 168, 81, 0.2);
}

/* Trust credentials strip */
.credentials {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.credentials-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.cred-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.5rem 1rem;
}
.cred-badge small {
  display: block;
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.75rem;
}
.cred-icon { font-size: 1.4rem; }
.cred-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
@media (max-width: 640px) {
  .cred-divider { display: none; }
  .credentials-inner { justify-content: flex-start; gap: 0.5rem; }
  .cred-badge { padding: 0.4rem 0.75rem; }
}

/* Footer email fallback button */
.btn-outline-footer {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.65rem 1.5rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-footer:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* =====================================================
   Visual & UX enhancements
   ===================================================== */

/* 1. WhatsApp pulse animation */
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 8px 28px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0.12); }
}
.floating-wa { animation: wa-pulse 2.8s ease-in-out infinite; }

/* 3. Scroll-triggered fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* 4. Animated counter */
.count-up { display: inline; }

/* 5. Sticky desktop Book Now bar */
.sticky-book-bar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--orange);
  z-index: 149;
  padding: 0.65rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 4px 20px rgba(245,130,32,0.35);
}
.sticky-book-bar.is-visible { transform: translateY(0); }
.sticky-tagline {
  color: var(--white);
  font-weight: 600;
  font-size: 0.93rem;
  opacity: 0.93;
}
.btn-sticky-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  color: var(--orange-dark);
  padding: 0.5rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
  flex-shrink: 0;
}
.btn-sticky-wa:hover { background: var(--off); transform: scale(1.03); }
@media (max-width: 920px) { .sticky-book-bar { display: none; } }

/* 8. FAQ smooth slide animation */
.faq-item > div {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.38s ease, padding 0.28s ease;
}
.faq-item.is-open > div {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}
.faq-item[open] > div {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}
.faq-item summary::after {
  transition: transform 0.28s ease;
}
.faq-item.is-open summary::after {
  transform: rotate(45deg);
  content: "+";
}

/* 9. Google review badge */
.google-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.google-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.google-badge-stars { color: #F59E0B; letter-spacing: 2px; font-size: 0.95rem; }
.google-badge-g {
  font-size: 1rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4285F4 25%, #EA4335 50%, #FBBC05 75%, #34A853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

/* 10. MIA / FLL airport badges in trust bar */
.trust-airport { display: inline-flex; gap: 0.4rem; align-items: center; }
.airport-badge {
  background: rgba(255,255,255,0.22);
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* 11. Bigger hero h1 */
h1 { font-size: clamp(2.8rem, 6.5vw, 5.4rem); }

/* 12. Orange accent underline on section h2s */
.fleet h2, .reserve h2, .faq h2, .credentials h2 {
  position: relative;
  padding-bottom: 0.75rem;
}
.fleet h2::after, .reserve h2::after, .faq h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  margin: 0.55rem auto 0;
}
.reviews h2 {
  position: relative;
  padding-bottom: 0.75rem;
}
.reviews h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  margin: 0.55rem auto 0;
}

/* Google badge as clickable link */
a.google-badge-pill {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
a.google-badge-pill:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}
