/* ---------------------------
   Global theme & reset
---------------------------- */

:root {
  --blue: #155eab;
  --green: #5eba46;
  --blue-dark: #0b1730;
  --blue-mid: #18253c;
  --blue-soft: #1f2f4b;
  --green-soft: #6bcd5b;
  --accent-gold: #f4c164;

  --bg-page: #050814;
  --bg-section-light: #f7f8fc;
  --bg-section-dark: #0e1627;

  --text-main: #1a1c25;
  --text-muted: #8287a1;
  --text-on-dark: #f5f7ff;

  --radius-card: 20px;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.4);
  --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.65);

  --transition-fast: 0.18s ease-out;
  --transition-med: 0.28s ease-out;
  --transition-slow: 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  background: radial-gradient(circle at top, #0c1530 0, #050814 45%, #02030a 100%);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-top: 0; /* no extra gap here */
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

/* Utility */

.centered {
  text-align: center;
}

/* ---------------------------
   Layout wrappers
---------------------------- */

.page-shell {
  min-height: 100vh;
  padding-top: 230px; /* reduced gap so hook + tiles are visible */
}

.page-shell-booking {
  background: radial-gradient(circle at top, #0f1b39, #050814 60%);
}

.page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}

/* Sections */

.section {
  margin-bottom: 60px;
}

.section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-main);
  text-align: center;
}


.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 20px;
}

.section-on-dark,
.section-hero-booking,
.section-services-mini,
.section-booking-form {
  color: #f5f7ff;
}

.section-on-dark .section-title,
.section-title-on-dark {
  color: #f5f7ff;
  text-align: center;
}

.section-on-dark .section-subtitle,
.section-subtitle-on-dark {
  color: rgba(230, 234, 255, 0.85);
}


/* On dark backgrounds */
.section-on-dark .section-title,
.section-title-on-dark {
  color: #f5f7ff;
}
.section-on-dark .section-subtitle,
.section-subtitle-on-dark {
  color: rgba(230, 234, 255, 0.85);
}

/* ---------------------------
   Header / Banner
---------------------------- */

#siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: linear-gradient(120deg, #050814, #071227);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    padding var(--transition-slow),
    backdrop-filter var(--transition-slow),
    background var(--transition-slow),
    transform var(--transition-slow);
  backdrop-filter: blur(16px);
}

.header-expanded {
  padding: 30px 40px 20px;
}

.header-shrink {
  padding: 10px 30px 8px;
  background: linear-gradient(120deg, rgba(5, 8, 20, 0.96), rgba(6, 14, 39, 0.96));
  backdrop-filter: blur(24px);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Big square logo (initial) */

.header-logo {
  height: 140px;
  width: 140px;
  border-radius: 20px;
  object-fit: cover;
  background: radial-gradient(circle at 30% 20%, #ffffff, #d3e4ff);
  padding: 6px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75);
  transition: transform var(--transition-slow), height var(--transition-slow),
    width var(--transition-slow), box-shadow var(--transition-slow);
}

/* When header shrinks on scroll, keep logo visible but smaller */

.header-shrink .header-logo {
  height: 52px;
  width: 52px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

/* Company name & tagline */

.header-company-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Brand colors for "Infinity" / "Trident" */

.brand-green {
  color: var(--green);
}

.brand-blue {
  color: var(--blue);
}

.brand-tag-word {
  font-size: 0.7em;
  color: #dce1ee;
  margin-left: 8px;
}

/* Script-style company name only */

.header-company-text .company-name {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Kaushan Script', 'Poppins', cursive;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #ffffff;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.75);
  transition: font-size var(--transition-slow), transform var(--transition-slow);
}

.company-name,
.footer-company-name {
  font-family: 'Kaushan Script', 'Poppins', system-ui, sans-serif;
}

.company-name span,
.footer-company-name span {
  font-size: 28px;   /* same size for Infinity, Trident, Tourism */
  line-height: 1.1;
}

.brand-tag-word {
  margin-left: 0.05em; /* or 0 if you want them very tight */
  letter-spacing: 0;
}


.header-shrink .company-name {
  font-size: 22px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.header-company-text .company-tagline {
  font-size: 13px;
  color: #c4c9dd;
  font-weight: 400;
}

.header-shrink .company-tagline {
  font-size: 12px;
}

/* Contact on right */

.header-contact {
  text-align: right;
  color: #e3e7ff;
  font-size: 13px;
}

.contact-label {
  opacity: 0.8;
  margin-right: 6px;
}

.contact-number {
  font-weight: 600;
  color: var(--accent-gold);
}

/* Nav bar */

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
  font-size: 13px;
}

.header-nav a {
  color: #d4daff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  opacity: 0.85;
  position: relative;
  padding-bottom: 4px;
  transition:
    opacity var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 999px;
  transition: width var(--transition-med);
}

.header-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

/* ---------------------------
   Hero hook + booking tiles
---------------------------- */

.section-hero-booking {
  display: block; /* STACKED, not grid */
  background: radial-gradient(circle at top left, #142447, #050814 55%);
  padding: 24px 20px 26px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-strong);
  color: var(--text-on-dark);
  margin-bottom: 40px;
}

.hero-copy {
  margin-bottom: 24px;     /* space between hook and tiles */
  padding-right: 0;
  border-right: none;
  text-align: center;      /* center the hook text */
}

.hero-copy h1 {
  font-size: 26px;
  margin-bottom: 10px;
  text-align: center;
  color: #f5f7ff;
}

.hero-copy p {
  font-size: 14px;
  color: rgba(234, 238, 255, 0.9);
  text-align: center;
}

/* Booking hook slight background card */

.hero-hook-card {
  background: linear-gradient(135deg, rgba(10, 26, 54, 0.9), rgba(10, 61, 34, 0.9));
  border-radius: 18px;
  padding: 16px 18px;
  margin-top: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  font-size: 13px;
}

/* Vehicle tiles section in hero */

.hero-booking-panel {
  background: linear-gradient(135deg, #0b1324, #162538);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-strong);
  margin-top: 0;           /* part of same section, stacked below */
}


/* Vehicle tiles carousel */

.vehicle-carousel-shell {
  margin-top: 10px;
  position: relative;
}

.vehicle-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 12px;
}

.vehicle-carousel::-webkit-scrollbar {
  height: 8px;
}

.vehicle-carousel::-webkit-scrollbar-track {
  background: #0a1120;
  border-radius: 999px;
}

.vehicle-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 999px;
}

/* Vehicle tile */

.vehicle-tile {
  flex: 0 0 40%;
  max-width: 40%;
  min-width: 40%;
  border-radius: 18px;
  background: linear-gradient(145deg, #111623, #1b2738);
  color: #f5f7ff;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-slow),
    background var(--transition-slow),
    opacity var(--transition-fast);
}

.vehicle-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  background: linear-gradient(145deg, #151e33, #243552);
}

.vehicle-tile.selected {
  outline: 2px solid var(--green-soft);
}

/* Image area in tile */

.vehicle-image-wrap {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
}

.vehicle-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Magnifier icon top-right */

.vehicle-zoom-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.vehicle-zoom-icon:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.vehicle-card-body {
  padding: 12px 14px 14px;
}

/* Info text */

.vehicle-name-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.vehicle-name {
  font-size: 15px;
  font-weight: 600;
}

.vehicle-meta {
  font-size: 11px;
  color: rgba(230, 235, 255, 0.75);
}

.vehicle-capacity,
.vehicle-luggage {
  font-size: 11px;
  color: rgba(214, 223, 255, 0.75);
}

/* Scroll hint / arrows */

.scroll-hint-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(220, 228, 255, 0.8);
}

.scroll-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.scroll-arrow-btn:hover {
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.hidden {
  display: none;
}


/* Duration step under tiles */

.duration-panel {
  margin-top: 18px;
  padding: 14px 14px 16px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, #1a2642, #0b1324);
  box-shadow: var(--shadow-soft);
}

.duration-panel-header {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
}

.duration-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

/* Pill buttons */

.duration-btn {
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  cursor: pointer;
  background: linear-gradient(135deg, #0b1324, #182740);
  color: #e9edff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  transition:
    background var(--transition-med),
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-fast);
}

.duration-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.8);
}

.duration-btn.selected {
  background: linear-gradient(135deg, var(--green), var(--blue));
}

/* Book button */

.btn-primary {
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  outline: none;
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-slow),
    opacity var(--transition-fast),
    border-color var(--transition-fast);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  border-color: #ffffff;
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}

.btn-large {
  padding: 12px 28px;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

/* ---------------------------
   Booking page form
---------------------------- */

.section-booking-form {
  background: linear-gradient(135deg, #0c1528, #192b48);
  color: var(--text-on-dark);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-strong);
}

.booking-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 36px;
}

.booking-subtitle-strong {
  font-size: 15px;
  font-weight: 500;
  color: #303348;
  text-align: center;
}


.booking-card {
  background: #fefeff;
  border-radius: var(--radius-card);
  padding: 26px 24px 30px;
  box-shadow: var(--shadow-soft);
}

/* Estimate banner */

.estimate-banner {
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #ffffff;
  padding: 14px 18px;
  margin-bottom: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.estimate-label {
  font-size: 13px;
  opacity: 0.9;
}

.estimate-value {
  font-size: 22px;
  font-weight: 600;
  margin: 4px 0;
}

.estimate-detail {
  font-size: 12px;
  opacity: 0.9;
}

/* Form layout */

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}

.form-row-2col {
  flex-direction: row;
  gap: 16px;
}

.form-row-2col > div {
  flex: 1;
}

.form-row label {
  font-size: 13px;
  font-weight: 500;
  color: #303348;
}

.form-row input,
.form-row textarea,
.form-row select {
  border-radius: 12px;
  border: 1px solid #d4d8ef;
  padding: 9px 10px;
  font-size: 13px;
  outline: none;
  width: 100%;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(21, 94, 171, 0.25);
  background: #ffffff;
}

.form-row textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row-center {
  display: flex;
  justify-content: center;
}

/* ---------------------------
   Mini "Our Services" carousel
---------------------------- */

.section-services-mini {
  background: linear-gradient(135deg, #0b1324, #172742);
  padding: 22px 20px 26px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-strong);
  color: var(--text-on-dark);
}

.services-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
  min-height: 280px;
}

.service-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.service-slide.active {
  opacity: 1;
  transform: scale(1);
}

.service-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(5, 8, 20, 0.92),
    rgba(6, 26, 57, 0.9)
  );
  color: #f5f7ff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.service-caption h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.service-caption p {
  font-size: 12px;
  opacity: 0.9;
}

/* ---------------------------
   Specialized requests section
---------------------------- */

.section-specialized {
  background: #f7f7ff;
  border-radius: var(--radius-card);
  padding: 24px 22px 28px;
  box-shadow: var(--shadow-soft);
}

.specialized-card {
  max-width: 780px;
  margin: 0 auto;
}

/* ---------------------------
   Footer
---------------------------- */

.section-footer-links {
  background: #050814;
  color: #d4daff;
  border-radius: 24px 24px 0 0;
  margin-top: 50px;
  padding: 26px 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  max-width: 1200px;
  margin: 0 auto 14px;
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

/* Big footer logo */

.footer-logo {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  object-fit: cover;
  background: radial-gradient(circle at 30% 20%, #ffffff, #d3e4ff);
  padding: 5px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
}

.footer-company-name {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Kaushan Script', 'Poppins', cursive;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.75);
}

.footer-company-tagline {
  font-size: 12px;
  color: #b7bbd7;
}

.footer-links h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
  color: #f5f7ff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  font-size: 12px;
  margin-bottom: 6px;
  color: rgba(215, 221, 255, 0.9);
}

.footer-links a {
  color: inherit;
  opacity: 0.86;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(2px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 6px auto 0;
  font-size: 11px;
  color: #7e84a3;
}

/* ---------------------------
   Modal (booking / specialized confirmation)
---------------------------- */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.modal.visible {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: #fefeff;
  padding: 18px 20px 16px;
  border-radius: 18px;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.modal-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.modal-content p {
  font-size: 13px;
  margin-bottom: 14px;
}

/* ---------------------------
   Vehicles / Services / Events pages basics
---------------------------- */

.section-standard-page {
  background: #f7f8fc;
  border-radius: var(--radius-card);
  padding: 24px 22px 28px;
  box-shadow: var(--shadow-soft);
}

/* Vehicles listing rows */

.vehicle-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.vehicle-row:last-child {
  margin-bottom: 0;
}

.vehicle-row-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.vehicle-row-details h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.vehicle-row-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.vehicle-row-rates {
  font-size: 12px;
  margin-top: 8px;
}

.vehicle-row-rates span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 10px;
}

/* Services / Events text blocks */

.service-block {
  margin-bottom: 20px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-block h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.service-block p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------------------------
   Responsive tweaks
---------------------------- */

@media (max-width: 900px) {
  .section-hero-booking {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-shell {
    padding-top: 200px;
  }

  .footer-links {
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  }

  .vehicle-tile {
    flex: 0 0 70%;
    max-width: 70%;
    min-width: 70%;
  }

  .vehicle-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .header-contact {
    text-align: left;
  }

  .header-logo {
    height: 110px;
    width: 110px;
  }

  .header-nav {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
  }

  .section-hero-booking {
    padding: 20px 16px;
  }

  .booking-card {
    padding: 20px 16px 22px;
  }
}

/* Booking page headings */
body[data-page="booking"] .section-title {
  color: #1f2333;        /* dark, readable */
}

body[data-page="booking"] .booking-subtitle-strong {
  color: #2c3145;        /* medium dark, elegant */
  font-weight: 500;
}

/* Offset for anchor scrolling so headers are visible below fixed header */
.section-anchor {
  scroll-margin-top: 140px; /* adjust if needed, 130–150 is typical */
}

.company-name span,
.footer-company-name span {
  font-size: 28px;
  line-height: 1.1;
}

/* Tighten up spacing before "Tourism" */
.brand-tag-word {
  margin-left: 0.05em;  /* small spacing, remove big gap */
  letter-spacing: 0;
}

/* Carousel shell & arrows */
.vehicle-carousel-shell {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

.vehicle-carousel {
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* Modern arrow buttons */
.vehicle-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(circle at 30% 30%, #ffffff, #155eab);
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  opacity: 0.9;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  z-index: 5;
}

.vehicle-arrow-left {
  left: 8px;
}

.vehicle-arrow-right {
  right: 8px;
}

.vehicle-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.vehicle-arrow:active {
  transform: translateY(-50%) translateY(1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

/* Specialized Requests card – match width & gradient of other section cards */
.specialized-card {
  max-width: 1100px;           /* match other main cards */
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border-radius: 24px;

  /* Same style family as other cards: dark base + blue/green gradient accents */
  background:
    radial-gradient(circle at top left, rgba(21, 94, 171, 0.45), transparent 55%),
    radial-gradient(circle at bottom right, rgba(94, 186, 70, 0.35), transparent 55%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.97), rgba(17, 24, 39, 0.96));

  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);

  color: #f9fafb;
}

/* Headings & labels on the dark gradient card */
.specialized-card .section-title,
.specialized-card h2,
.specialized-card h3 {
  color: #fdfdfd;
}

.specialized-card label {
  color: #e5e7eb;
  font-weight: 500;
}

/* Inputs inside the specialized card */
.specialized-card input,
.specialized-card select,
.specialized-card textarea {
  background-color: rgba(255, 255, 255, 0.96);
  color: #111827;
  border: 1px solid rgba(15, 23, 42, 0.22);
}


.specialized-card label {
  color: #e5e7eb;
  font-weight: 500;
}

/* Inputs on that card – light fields on dark card */
.specialized-card input,
.specialized-card select,
.specialized-card textarea {
  background-color: rgba(255, 255, 255, 0.96);
  color: #111827;
  border: 1px solid rgba(15, 23, 42, 0.2);
}

/* --- Select duration section: larger & centered --- */
#durationPanel {
  text-align: center;
  margin-top: 2.5rem;
}

#durationPanel h3,
#durationPanel .duration-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.duration-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Make the duration buttons larger and more “pressable” */
.duration-btn {
  font-size: 1rem;                 /* slightly larger text */
  padding: 0.9rem 2rem;            /* bigger button */
  min-width: 220px;                /* wider target */
}

/* Center the “Proceed to booking” button and give it presence */
#bookNowBtn {
  display: block;
  margin: 1.75rem auto 0;
  padding: 0.95rem 2.2rem;
  font-size: 1rem;
}

/* --- Car tiles / booking section background gradient --- */
#heroBookingSection {
  background:
    radial-gradient(circle at top left, rgba(21, 94, 171, 0.35), transparent 55%),
    radial-gradient(circle at bottom right, rgba(94, 186, 70, 0.3), transparent 55%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.97), rgba(17, 24, 39, 0.96));
}

/* --- Select duration section: larger & centered --- */
#durationPanel {
  text-align: center;
  margin-top: 2.5rem;
}

/* Heading text above the buttons */
#durationPanel h3,
#durationPanel .duration-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* Try to center any row/wrapper that contains duration buttons */
#durationPanel .duration-buttons,
#durationPanel .btn-row,
#durationPanel .duration-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Fallback: if buttons are not in a special wrapper, still center them via margins */
#durationPanel .duration-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;           /* slightly larger text */
  padding: 0.9rem 2rem;      /* bigger button */
  min-width: 220px;          /* wider target */
  margin: 0.5rem;            /* spacing between buttons */
}

/* Center the "Proceed to booking" button and make it prominent */
#bookNowBtn {
  display: block;
  margin: 1.75rem auto 0;
  padding: 0.95rem 2.2rem;
  font-size: 1rem;
}

/* -------------------------------
   Duration Panel Centering & Scaling
---------------------------------- */

#durationPanel {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
}

#durationPanel .duration-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Center the three buttons */
.duration-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* Make duration buttons larger & inviting */
.duration-btn {
  min-width: 240px;
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  border-radius: 14px;
}

/* Center the Proceed button */
.duration-footer {
  margin-top: 2rem;
  text-align: center;
}

#bookNowBtn {
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
  margin: 0 auto;
  display: inline-block;
}








