/* ═══════════════════════════════════════════════════════════════
   Lajpal Rent a Car — Global Stylesheet
   All custom styles that sit on top of Tailwind CSS CDN
   ═══════════════════════════════════════════════════════════════ */

/* ── Base ── */
html {
  scroll-behavior: smooth;
}

/* ── Hamburger animation ── */
.bar {
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger-open .bar:nth-child(2) { opacity: 0; }
.hamburger-open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Hero car image — screen-blend transparent float ── */
.hero-car-img {
  mix-blend-mode: screen;
  animation: premiumFloat 4.5s ease-in-out infinite;
  filter: brightness(1.12) contrast(1.08) saturate(1.1)
          drop-shadow(0 18px 36px rgba(255, 255, 255, 0.08));
  border-radius: 0;
  background: transparent;
}
.hero-car-wrap {
  isolation: isolate; /* scope blend to hero section only */
}
@keyframes premiumFloat {
  0%,  100% { transform: translateY(0px)   scale(1);     }
  50%        { transform: translateY(-16px) scale(1.015); }
}

/* ── Fleet card hover lift ── */
.fleet-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fleet-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

/* ── Feature / deal card hover ── */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 32px rgba(30, 58, 138, 0.12);
}

/* ── How-it-works step connector ── */
.step-connector {
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
}

/* ── FAQ accordion ── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-answer.open {
  max-height: 320px;
}
.faq-chevron {
  transition: transform 0.3s ease;
}
.faq-chevron.rotated {
  transform: rotate(180deg);
}

/* ── Location card hover ── */
.loc-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.loc-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 28px rgba(30, 58, 138, 0.13);
}

/* ── Mobile sticky bar — safe area for notched phones ── */
.sticky-bar {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* ── City / SEO page article typography ── */
.seo-article h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.seo-article h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.seo-article p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.seo-article ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.8;
}
.seo-article .placeholder-block {
  border: 2px dashed #bfdbfe;
  background: #eff6ff;
  border-radius: 1rem;
  padding: 2rem;
  color: #3b82f6;
  font-style: italic;
  font-size: 0.9rem;
  text-align: center;
  margin: 1.5rem 0;
}

/* ── Floating Book Now FAB ── */
.fab-menu {
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.fab-menu.fab-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fab-main {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab-main.fab-open {
  transform: scale(1.07);
}
