/* ============================================================
   Homepage-specific styles for Global Elite Chauffeur
   Section: Hero, Benefits, Services, Airports, Business,
   Locations, How It Works, Why Us, FAQ, CTA
============================================================ */

/* ------------------------- Hero ------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 85vh;
  padding: 4rem 0 6rem;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(26, 26, 26, 0.06), transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 1.5rem 0;
}

.hero-text-wrapper h1 {
  font-size: 3.25rem;
  line-height: 1.1;
  background: linear-gradient(to right, #1a1a1a, #4a4a4a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
  margin-bottom: 0;
  font-weight: 800;
}

.hero-text-wrapper .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #495057;
  max-width: 580px;
  font-weight: 400;
}

.hero-supporting-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #6c757d;
  max-width: 520px;
  margin-bottom: 0;
}

.hero-cta-buttons {
  margin-top: 0.5rem;
}

.hero-bottom-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #1a1a1a, #2d2d2d);
  color: #fff;
  padding: 0.9rem 0;
  z-index: 3;
}

.hero-bottom-strip span {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.hero-bottom-strip i {
  color: #f0b429;
}

/* ------------------- Shared section titles ------------------- */
.title-gradient {
  background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* ---------------------- Benefits ---------------------- */
.benefits-section {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
}

.benefit-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.benefit-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------------------- Services ---------------------- */
.services-section {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
  position: relative;
  z-index: 1;
}

.service-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #1a1a1a;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.08);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
  background: #1a1a1a;
  transform: scale(1.1);
}

.service-card:hover .service-icon-wrapper i {
  color: #fff !important;
}

/* ---------------------- Airports ---------------------- */
.airports-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.airport-card {
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.airport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.airport-card .card-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #1a1a1a, #555);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.airport-card:hover .card-body::before {
  opacity: 1;
}

.airport-card .bi-airplane-fill {
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.airport-card:hover .bi-airplane-fill {
  transform: scale(1.1) rotate(-45deg);
}

.airport-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}

.airport-card .card-text {
  color: #666;
  font-size: 0.95rem;
}

.airports-section ul li {
  padding: 0.35rem 0;
  color: #495057;
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.airports-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-weight: bold;
}

.airports-note {
  color: #495057;
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------------------- Business ---------------------- */
.business-section {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
}

.business-points li {
  padding: 0.4rem 0;
  color: #495057;
  font-size: 1rem;
}

.business-points i {
  color: #1a1a1a;
}

.business-card {
  border-radius: 15px;
  background: linear-gradient(135deg, #f8f9fa, #fff);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ---------------------- Locations ---------------------- */
.locations-section {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
}

/* ---------------------- How It Works ---------------------- */
.how-it-works-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.how-step {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.how-step h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.how-step p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------------------- Why Choose Us ---------------------- */
.why-us-section {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
}

.why-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #1a1a1a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.why-icon {
  font-size: 2rem;
  color: #1a1a1a;
  flex-shrink: 0;
}

.why-card h3 {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.why-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------------------- FAQ ---------------------- */
.faq-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-section .accordion-button {
  font-weight: 600;
  color: #1a1a1a;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: rgba(26, 26, 26, 0.05);
  color: #1a1a1a;
}

.faq-section .accordion-body {
  color: #495057;
  line-height: 1.7;
}

/* ---------------------- Contact ---------------------- */
.contact-section {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
}

.contact-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.contact-icon-wrapper i {
  color: #1a1a1a;
}

.contact-card:hover .contact-icon-wrapper {
  transform: scale(1.1);
}

.contact-icon-link {
  text-decoration: none;
  display: inline-block;
}

.contact-text {
  color: #495057;
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ---------------------- Final CTA ---------------------- */
.final-cta-section {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.cta-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.cta-content .display-5 {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}

/* Avoid base.css overriding section backgrounds */
.benefits-section::before,
.business-section::before,
.locations-section::before,
.why-us-section::before,
.contact-section::before,
.final-cta-section::before {
  display: none;
}

/* AOS fallback for reduced motion */
[data-aos] {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 991.98px) {
  .home-page [data-aos] {
    opacity: 1;
    transform: none;
  }
}

/* Modal fixes */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: none;
}

.modal {
  z-index: 1060;
}

.modal-backdrop {
  z-index: 1050;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-text-wrapper h1 {
    font-size: 2.9rem;
  }
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 3rem 0 6rem;
  }

  .hero-text-wrapper {
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .hero-text-wrapper h1 {
    font-size: 2.6rem;
    text-align: center;
  }

  .hero-text-wrapper .lead {
    font-size: 1.1rem;
    text-align: center;
  }

  .hero-bottom-strip {
    position: relative;
    padding: 0.75rem 0;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 2rem 0 5rem;
  }

  .hero-text-wrapper h1 {
    font-size: 2.1rem;
  }

  .hero-text-wrapper .lead {
    font-size: 0.95rem;
  }

  .hero-bottom-strip span {
    font-size: 0.8rem;
  }
}

/* Desktop >= 1200px: tighten hero vertical space and H1 scale */
@media (min-width: 1200px) {
  /* Align the left hero text column to the TOP of the row instead of
     centering it vertically. The right booking widget is ~850px tall, so
     row-level align-items:center pushed the H1 far down. Top alignment
     makes the H1 start near the booking form top. */
  .home-page .hero-content .row {
    align-items: flex-start !important;
  }

  .hero-section {
    min-height: 72vh;
    padding: 2.5rem 0 4rem;
    /* Remove the white band below the navbar: body padding-top is 72px
       but the desktop navbar is ~60px tall (44px logo + 0.5rem padding),
       so lift the hero 12px so it starts flush below the header. */
    margin-top: -12px;
  }

  .hero-text-wrapper {
    gap: 1.25rem;
    /* Small intentional top offset so the H1 sits just below the top of
       the booking card (top-aligned column + 1rem premium offset). */
    padding: 1rem 0;
  }

  .hero-text-wrapper h1 {
    font-size: 2.75rem;
  }

  .hero-text-wrapper .lead {
    font-size: 1.15rem;
    max-width: 540px;
  }

  .hero-cta-buttons {
    margin-top: 0.25rem;
  }
}

/* ============================================================
   HOME PAGE — MOBILE LAYOUT REFINEMENTS
   Scoped to the homepage wrapper only. Desktop layout is
   untouched and these rules never affect non-homepage pages.
   ============================================================ */

/* Prevent horizontal overflow from the homepage block */
.home-page {
  overflow-x: hidden;
  overflow-x: clip;
}

.home-page section,
.home-page header.hero-section {
  max-width: 100%;
}

.home-page img,
.home-page iframe,
.home-page video {
  max-width: 100%;
}

/* Reserve each fleet image's intrinsic ratio before its lazy load completes. */
.home-page .vehicle-details .vehicle-image {
  aspect-ratio: var(--vehicle-image-ratio, 3 / 2);
  padding-bottom: 0;
}

/* ---------------------------------------
   Tablet & small laptop (up to 991px)
   --------------------------------------- */
@media (max-width: 991.98px) {
  /* Compact section vertical rhythm */
  .home-page section.py-5,
  .home-page section[id] {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* Hero: kill 85vh, tighten top/bottom spacing */
  .home-page .hero-section {
    min-height: 0;
    padding: 2.25rem 0 2.5rem;
  }

  .home-page .hero-text-wrapper {
    gap: 1.25rem;
    padding: 0.5rem 0;
  }

  .home-page .hero-text-wrapper h1 {
    font-size: 2.3rem;
  }

  /* Tighter heading/lead scale on mobile */
  .home-page h2.display-5,
  .home-page .display-5 {
    font-size: 2.05rem;
  }

  .home-page .lead {
    font-size: 1rem;
  }

  /* Reduce heading block margins */
  .home-page .mb-4 {
    margin-bottom: 1.25rem !important;
  }

  .home-page .mb-5 {
    margin-bottom: 1.5rem !important;
  }

  /* Compact g-4 gutters so cards sit closer together */
  .home-page .g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

  /* Benefit cards */
  .home-page .benefit-card {
    padding: 1.25rem !important;
  }

  .home-page .benefit-icon-wrapper {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
  }

  .home-page .benefit-title {
    font-size: 1rem;
  }

  /* Service cards */
  .home-page .service-card .card-body {
    padding: 1.25rem !important;
  }

  .home-page .service-icon-wrapper {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
  }

  .home-page .service-card .card-title {
    font-size: 1.15rem;
  }

  .home-page .card-text,
  .home-page .benefit-text,
  .home-page .how-step p,
  .home-page .why-card p {
    font-size: 0.9rem;
  }

  /* Airport cards */
  .home-page .airports-section .card-body {
    padding: 1.25rem 1rem !important;
  }

  .home-page .airport-card .card-title {
    font-size: 1.15rem;
  }

  .home-page .airports-section ul li {
    font-size: 0.88rem;
    padding: 0.3rem 0 0.3rem 1.4rem;
  }

  /* Business section */
  .home-page .business-points li {
    font-size: 0.95rem;
    padding: 0.3rem 0;
  }

  .home-page .business-card .card-body {
    padding: 1.5rem !important;
  }

  /* Fleet: compact vehicle details panel */
  .home-page .vehicle-details {
    padding: 1rem;
  }

  /* How it works */
  .home-page .how-step {
    padding: 1.25rem !important;
  }

  .home-page .step-number {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .home-page .how-step h3 {
    font-size: 1rem;
  }

  /* Why us */
  .home-page .why-card {
    padding: 1.25rem !important;
  }

  .home-page .why-icon {
    font-size: 1.5rem;
  }

  .home-page .why-card h3 {
    font-size: 1rem;
  }

  /* FAQ compact spacing */
  .home-page .accordion-button {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .home-page .accordion-body {
    padding: 0.9rem 1rem 1.1rem;
    font-size: 0.95rem;
  }

  /* Contact cards */
  .home-page .contact-card .card-body {
    padding: 1.25rem !important;
  }

  .home-page .contact-icon-wrapper {
    width: 62px;
    height: 62px;
  }

  .home-page .contact-text {
    font-size: 0.95rem;
  }

  /* Final CTA */
  .home-page .cta-content {
    padding: 2.5rem 1.25rem !important;
  }

  .home-page .cta-sub {
    font-size: 0.98rem;
  }

  /* Booking iframe: shorter so the page breathes less */
  .home-page .booking-iframe-wrapper {
    height: 720px;
    padding: 12px;
  }
}

/* ---------------------------------------
   Phone (up to 767px)
   --------------------------------------- */
@media (max-width: 767.98px) {
  .home-page section.py-5,
  .home-page section[id] {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .home-page .hero-section {
    padding: 2rem 0 2rem;
  }

  .home-page h2.display-5,
  .home-page .display-5 {
    font-size: 1.85rem;
    line-height: 1.15;
  }

  .home-page .lead {
    font-size: 0.95rem;
  }

  /* Hero buttons: tighter gap, comfortable tap targets */
  .home-page .hero-cta-buttons {
    gap: 0.75rem !important;
  }

  .home-page .hero-cta-buttons .btn {
    min-height: 46px;
    padding: 0.65rem 1rem;
    font-size: 1rem;
  }

  .home-page .cta-buttons .btn {
    min-height: 46px;
    padding: 0.65rem 1rem;
  }

  /* Fleet mobile grid compaction */
  .home-page .vehicle-selector-mobile .mobile-grid {
    gap: 0.5rem;
    padding: 0 0.25rem;
  }

  .home-page .mobile-nav-btn {
    padding: 0.6rem 0.25rem;
  }

  .home-page .mobile-nav-btn i {
    font-size: 1.2rem;
  }

  .home-page .mobile-nav-btn span {
    font-size: 0.75rem;
  }

  .home-page .vehicle-info h3 {
    font-size: 1.1rem;
  }

  .home-page .vehicle-info .description {
    font-size: 0.9rem;
  }

  /* Location cards: shorter, tighter */
  .home-page .location-card {
    height: 190px;
    margin: 0.5rem 0;
    overflow: hidden;
  }

  .home-page .location-card-front,
  .home-page .location-card-back {
    padding: 1.25rem;
  }

  .home-page .location-icon {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .home-page .location-title {
    font-size: 1.1rem;
  }

  .home-page .location-front-description {
    font-size: 0.8rem;
  }

  .home-page .location-back-title {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .home-page .location-back-description {
    font-size: 0.85rem;
  }

  /* Booking iframe: still shorter on phones */
  .home-page .booking-iframe-wrapper {
    height: 680px;
    padding: 10px;
  }
}

/* ---------------------------------------
   Small phone (up to 575px)
   --------------------------------------- */
@media (max-width: 575.98px) {
  .home-page section.py-5,
  .home-page section[id] {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .home-page .hero-section {
    padding: 1.5rem 0 1.5rem;
  }

  .home-page .hero-text-wrapper h1 {
    font-size: 1.9rem;
    line-height: 1.15;
  }

  .home-page .hero-text-wrapper .lead {
    font-size: 0.9rem;
  }

  .home-page h2.display-5,
  .home-page .display-5 {
    font-size: 1.65rem;
    line-height: 1.15;
  }

  /* Stack the primary CTA buttons full width on small phones */
  .home-page .hero-cta-buttons .btn,
  .home-page .cta-buttons .btn {
    width: 100%;
    white-space: normal;
  }

  .home-page .cta-buttons {
    gap: 0.6rem !important;
  }

  /* Tighter card padding on smallest screens */
  .home-page .benefit-card,
  .home-page .service-card .card-body,
  .home-page .why-card,
  .home-page .how-step,
  .home-page .contact-card .card-body {
    padding: 1rem !important;
  }

  .home-page .booking-iframe-wrapper {
    height: 620px;
    padding: 8px;
  }
}

/* ============================================================
   HOME PAGE — DESKTOP SPACING REFINEMENTS (>= 1200px only)
   All scoped to .home-page so mobile/tablet stays untouched.
   ============================================================ */
@media (min-width: 1200px) {
  /* 1. Business section — reduce g-5 gutters to 1.5rem */
  .home-page .business-section .row.g-5 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }

  /* 2. Fleet section — heading gap 1.5rem, selector→panel spacing untouched */
  .home-page #fleet .text-center.mb-5 {
    margin-bottom: 1.5rem !important;
  }

  /* 3. Locations section — heading gap 1.5rem, card top margin 0.5rem */
  .home-page #locations .text-center.mb-5 {
    margin-bottom: 1.5rem !important;
  }

  .home-page .location-card {
    margin-top: 0.5rem;
  }

  /* 4-7. How It Works / Why Us / FAQ / Contact — heading gap to 1.5rem */
  .home-page #how-it-works .row.mb-5,
  .home-page #why-us .row.mb-5,
  .home-page #faq .row.mb-5,
  .home-page #contact .row.mb-5 {
    margin-bottom: 1.5rem !important;
  }

  /* 8. Final CTA — bottom section padding 0, cta-content to py-4 equivalent */
  .home-page .final-cta-section {
    padding-bottom: 0 !important;
  }

  .home-page .cta-content {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  /* Homepage SEO sections: restrained desktop-only content panels. */
  .home-page .seo-content-layout {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 0;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-page #netherlands-service,
  .home-page #booking-pricing {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .home-page #local-service {
    padding-top: 2.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .home-page #netherlands-service p,
  .home-page #booking-pricing p,
  .home-page #local-service p,
  .home-page #local-service address {
    color: #495057;
    line-height: 1.7;
  }

  .home-page .seo-content-panel,
  .home-page .booking-pricing-panel,
  .home-page .local-information-panel {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.75rem;
  }

  .home-page .booking-pricing-panel {
    border-top: 3px solid #1a1a1a;
  }

  .home-page .quotation-factors {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1rem;
  }

  .home-page .quotation-factors li {
    color: #495057;
    font-weight: 500;
  }

  .home-page .quotation-factors li::before {
    content: '•';
    color: #1a1a1a;
    margin-right: 0.5rem;
  }

  .home-page .local-information-panel address {
    color: #1a1a1a;
    font-style: normal;
    font-weight: 500;
  }
}
