/* ================================================================
   HOME.CSS — Warm Light Premium Design
   Ressey Tours & Car Hire Homepage
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --c-orange:    #F4A300;
  --c-orange-dk: #E68A00;
  --c-orange-lt: #FFF3E0;
  --c-blue:      #2E86C1;
  --c-blue-lt:   #EAF4FB;
  --c-green:     #27AE60;
  --c-white:     #FFFFFF;
  --c-cream:     #FAF7F2;
  --c-text:      #1F2933;
  --c-muted:     #52606D;
  --c-border:    #E4E7EB;

  --ff-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --sh-xs: 0 1px 4px rgba(0,0,0,0.04);
  --sh-sm: 0 2px 12px rgba(0,0,0,0.06);
  --sh-md: 0 6px 24px rgba(0,0,0,0.08);
  --sh-lg: 0 16px 48px rgba(0,0,0,0.11);
  --sh-xl: 0 28px 72px rgba(0,0,0,0.14);

  --tr: 0.26s ease;
}

/* ── Base ──────────────────────────────────────────────────────── */
.home-page *,
.home-page *::before,
.home-page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.home-page {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.home-page img   { max-width: 100%; display: block; }
.home-page a     { text-decoration: none; color: inherit; }
.home-page ul    { list-style: none; }

/* ════════════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--tr);
}

.navbar.scrolled {
  box-shadow: var(--sh-md);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-orange);
}

.brand-name {
  font-family: var(--ff-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.4px;
  line-height: 1.15;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--c-orange);
  font-weight: 500;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.nav-links a {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-muted);
  padding: 7px 13px;
  border-radius: var(--r-sm);
  transition: color var(--tr), background var(--tr);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-orange-dk);
  background: var(--c-orange-lt);
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-tel {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--tr);
  white-space: nowrap;
}

.nav-tel i {
  font-size: 1.05rem;
  color: var(--c-orange);
}

.nav-tel:hover { color: var(--c-orange); }

.btn-book-nav {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--c-orange);
  color: #fff;
  padding: 9px 20px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(244, 163, 0, 0.35);
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}

.btn-book-nav:hover {
  background: var(--c-orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(244, 163, 0, 0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--c-text);
  padding: 4px;
}

/* ════════════════════════════════════════════════════════════════
   HERO — Split Panel
════════════════════════════════════════════════════════════════ */
.hero-section {
  background: var(--c-cream);
  padding-top: 72px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 76px 28px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text Side */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-orange-lt);
  border: 1px solid rgba(244, 163, 0, 0.4);
  color: var(--c-orange-dk);
  font-size: 0.79rem;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 40px;
  margin-bottom: 22px;
  width: fit-content;
  letter-spacing: 0.3px;
}

.hero-badge i { font-size: 0.95rem; }

.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--c-text);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero-span {
  color: var(--c-orange);
  font-style: italic;
  display: block;
}

.hero-p {
  font-size: 1.05rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

/* Hero Buttons */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-orange);
  color: #fff;
  padding: 13px 24px;
  border-radius: 40px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(244, 163, 0, 0.38);
  transition: all var(--tr);
}

.btn-primary:hover {
  background: var(--c-orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(244, 163, 0, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-white);
  color: var(--c-text);
  padding: 13px 24px;
  border-radius: 40px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1.5px solid var(--c-border);
  transition: all var(--tr);
}

.btn-secondary:hover {
  border-color: var(--c-orange);
  color: var(--c-orange-dk);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

/* Trust Badges */
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--c-muted);
  font-weight: 500;
}

.trust-badge i {
  font-size: 1rem;
  color: var(--c-green);
}

/* Image Side */
.hero-image-col {
  position: relative;
}

.hero-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 4 / 3;
  position: relative;
}

.hero-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.65s ease;
}

.hero-img-wrap:hover .hero-car-img {
  transform: scale(1.04);
}

.hero-img-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
}

.hif-icon {
  width: 40px;
  height: 40px;
  background: var(--c-orange-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--c-orange-dk);
  flex-shrink: 0;
}

.hif-num {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-orange);
  line-height: 1;
}

.hif-label {
  font-size: 0.72rem;
  color: var(--c-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Booking Strip */
.booking-strip {
  background: var(--c-orange);
}

.booking-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 62px;
  display: flex;
  align-items: center;
}

.bs-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  padding: 0 24px;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}

.bs-item i { font-size: 1.1rem; }

.bs-div {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.bs-cta {
  background: #fff;
  color: var(--c-orange-dk);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 0.87rem;
  font-weight: 700;
  margin-left: 16px;
  flex-shrink: 0;
  transition: box-shadow var(--tr), transform var(--tr);
}

.bs-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* ════════════════════════════════════════════════════════════════
   STATS
════════════════════════════════════════════════════════════════ */
.stats-section {
  padding: 60px 0;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}

.stats-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--c-cream);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  transition: transform var(--tr), box-shadow var(--tr);
  opacity: 0;
  transform: translateY(16px);
}

.stat-card.visible {
  opacity: 1;
  transform: none;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.stat-num {
  font-family: var(--ff-head);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--c-orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num sup { font-size: 1.2rem; }

.stat-label {
  font-size: 0.84rem;
  color: var(--c-muted);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════════
   SHARED SECTION UTILITIES
════════════════════════════════════════════════════════════════ */
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-head {
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-orange);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 9px;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.section-sub {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.72;
  margin-top: 10px;
  max-width: 500px;
}

/* Generic Buttons */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1.5px solid var(--c-orange);
  color: var(--c-orange-dk);
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 0.86rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: background var(--tr), color var(--tr);
}

.btn-outline:hover {
  background: var(--c-orange);
  color: #fff;
}

/* ════════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════════ */
.services-section {
  padding: 92px 0;
  background: var(--c-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  border: 1px solid var(--c-border);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  opacity: 0;
  transform: translateY(24px);
}

.service-card.visible {
  opacity: 1;
  transform: none;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.service-card.featured-svc {
  background: linear-gradient(145deg, var(--c-blue) 0%, #1a6da0 100%);
  border-color: transparent;
}

.service-card.featured-svc h3 { color: #fff; }
.service-card.featured-svc p  { color: rgba(255,255,255,0.78); }
.service-card.featured-svc .svc-link {
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.35);
}
.service-card.featured-svc .svc-link:hover { color: #fff; border-color: #fff; }

.svc-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 20px;
}

.svc-icon.orange { background: var(--c-orange-lt); color: var(--c-orange-dk); }
.svc-icon.blue   { background: rgba(255,255,255,0.2); color: #fff; }

.service-card h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.72;
  margin-bottom: 22px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-orange-dk);
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--c-orange);
  transition: gap var(--tr), color var(--tr), border-color var(--tr);
}

.svc-link:hover {
  gap: 9px;
  color: var(--c-orange);
  border-color: var(--c-orange-dk);
}

/* ════════════════════════════════════════════════════════════════
   FLEET SHOWCASE
════════════════════════════════════════════════════════════════ */
.fleet-section {
  padding: 92px 0;
  background: var(--c-white);
}

/* Fleet Card */
.fleet-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-xs);
  transition: transform var(--tr), box-shadow var(--tr);
  opacity: 0;
  transform: translateY(20px);
}

.fleet-card.visible {
  opacity: 1;
  transform: none;
}

.fleet-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
}

.fc-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0efed;
}

.fc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.fleet-card:hover .fc-img img {
  transform: scale(1.07);
}

/* Hover overlay */
.fc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 41, 51, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tr);
}

.fleet-card:hover .fc-overlay {
  opacity: 1;
}

.fc-overlay-btn {
  background: var(--c-orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  transform: translateY(8px);
  transition: transform var(--tr), background var(--tr);
}

.fleet-card:hover .fc-overlay-btn {
  transform: translateY(0);
}

.fc-overlay-btn:hover {
  background: var(--c-orange-dk);
}

/* Category Badge */
.fc-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.fc-cat.luxury  { background: #FFF3E0; color: #C56B00; border: 1px solid #F4A300; }
.fc-cat.suv     { background: #E8F5E9; color: #2E7D32; border: 1px solid #66BB6A; }
.fc-cat.economy { background: #E3F2FD; color: #1565C0; border: 1px solid #42A5F5; }
.fc-cat.van     { background: #F3E5F5; color: #6A1B9A; border: 1px solid #AB47BC; }
.fc-cat.exec    { background: var(--c-blue-lt); color: #1A5276; border: 1px solid var(--c-blue); }

/* Card Body */
.fc-body {
  padding: 16px 18px 18px;
}

.fc-body h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}

.fc-body p {
  font-size: 0.83rem;
  color: var(--c-muted);
  margin-bottom: 13px;
  line-height: 1.5;
}

.fc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}

.fc-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-orange-dk);
}

.fc-price small {
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--c-muted);
}

.fc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--c-text);
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}

.fc-arrow:hover {
  background: var(--c-orange);
  color: #fff;
  border-color: var(--c-orange);
}

/* Swiper customisation */
.fleet-swiper {
  padding-bottom: 52px !important;
}

.fleet-swiper .swiper-button-next,
.fleet-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  box-shadow: var(--sh-sm);
  color: var(--c-text) !important;
  top: 36%;
}

.fleet-swiper .swiper-button-next::after,
.fleet-swiper .swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 800;
}

.fleet-swiper .swiper-button-next:hover,
.fleet-swiper .swiper-button-prev:hover {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: #fff !important;
}

.fleet-swiper .swiper-pagination-bullet {
  background: var(--c-border);
  opacity: 1;
}

.fleet-swiper .swiper-pagination-bullet-active {
  background: var(--c-orange) !important;
  width: 20px;
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* ════════════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════════════ */
.how-section {
  padding: 92px 0;
  background: var(--c-blue-lt);
}

.how-section .eyebrow { color: var(--c-blue); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.how-step {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 36px 28px 32px;
  text-align: center;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--tr);
}

.how-step.visible {
  opacity: 1;
  transform: none;
}

.how-step:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.hs-bg-num {
  font-family: var(--ff-head);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(244, 163, 0, 0.07);
  line-height: 1;
  position: absolute;
  top: 8px;
  right: 12px;
  pointer-events: none;
  user-select: none;
}

.hs-icon {
  width: 62px;
  height: 62px;
  background: var(--c-orange-lt);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--c-orange-dk);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  transition: background var(--tr), transform var(--tr);
}

.how-step:hover .hs-icon {
  background: var(--c-orange);
  color: #fff;
  transform: scale(1.05);
}

.how-step h3 {
  font-family: var(--ff-head);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.how-step p {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.68;
  max-width: 230px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════════════════════════ */
.why-section {
  padding: 92px 0;
  background: var(--c-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 22px;
  background: var(--c-cream);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  opacity: 0;
  transform: translateY(18px);
}

.why-card.visible {
  opacity: 1;
  transform: none;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--c-orange);
}

.wc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: background var(--tr);
}

.wc-icon.orange { background: var(--c-orange-lt); color: var(--c-orange-dk); }
.wc-icon.blue   { background: var(--c-blue-lt);   color: var(--c-blue); }
.wc-icon.green  { background: #E8F5E9;             color: #2E7D32; }

.why-card:hover .wc-icon.orange { background: var(--c-orange); color: #fff; }
.why-card:hover .wc-icon.blue   { background: var(--c-blue); color: #fff; }
.why-card:hover .wc-icon.green  { background: var(--c-green); color: #fff; }

.why-card h3 {
  font-family: var(--ff-head);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.86rem;
  color: var(--c-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════════ */
.testi-section {
  padding: 92px 0;
  background: var(--c-cream);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-xs);
  transition: transform var(--tr), box-shadow var(--tr);
  opacity: 0;
  transform: translateY(18px);
}

.testi-card.visible {
  opacity: 1;
  transform: none;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.testi-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.7;
  color: rgba(244, 163, 0, 0.22);
  margin-bottom: 8px;
  display: block;
}

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.testi-stars i {
  font-size: 0.92rem;
  color: var(--c-orange);
}

.testi-text {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-dk));
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.testi-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-text);
}

.testi-author span {
  font-size: 0.76rem;
  color: var(--c-muted);
  display: block;
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════════
   BOLD CTA
════════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 92px 0;
  background: var(--c-orange);
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.68;
  margin-bottom: 34px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--c-orange-dk);
  padding: 13px 26px;
  border-radius: 40px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  transition: all var(--tr);
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0,0,0,0.22);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: #fff;
  padding: 13px 26px;
  border-radius: 40px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all var(--tr);
}

.btn-cta-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════════ */
.faq-section {
  padding: 92px 0;
  background: var(--c-white);
}

.faq-col {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  background: var(--c-white);
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.faq-item[open] {
  border-color: rgba(244, 163, 0, 0.5);
  box-shadow: 0 4px 16px rgba(244, 163, 0, 0.08);
}

.faq-item summary {
  padding: 18px 22px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: color var(--tr);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item[open] summary { color: var(--c-orange-dk); }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--c-orange);
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  transition: transform var(--tr);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-ans {
  padding: 14px 22px 20px;
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.72;
  border-top: 1px solid var(--c-border);
}

.faq-ans a { color: var(--c-orange); font-weight: 500; }
.faq-ans a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--c-text);
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 28px 52px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 44px;
}

.f-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.f-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-orange);
}

.f-brand-name {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.f-brand-sub {
  font-size: 0.68rem;
  color: var(--c-orange);
}

.f-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.72;
  margin-bottom: 20px;
}

.f-socials {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.f-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.58);
  font-size: 1.05rem;
  transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr);
}

.f-social:hover {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: #fff;
  transform: translateY(-2px);
}

.f-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 16px;
}

.f-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-col ul a {
  color: rgba(255,255,255,0.46);
  font-size: 0.86rem;
  transition: color var(--tr), padding-left var(--tr);
  display: inline-block;
}

.f-col ul a:hover {
  color: var(--c-orange);
  padding-left: 4px;
}

.f-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.46);
  font-size: 0.86rem;
  margin-bottom: 12px;
  line-height: 1.55;
}

.f-contact-row i {
  color: var(--c-orange);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.f-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  background: var(--c-orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: background var(--tr), transform var(--tr);
}

.f-book-btn:hover {
  background: var(--c-orange-dk);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 28px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

.footer-tagline { font-style: italic; }

/* ════════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.85rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform var(--tr), box-shadow var(--tr);
  animation: wa-pulse 2.8s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
  animation: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* Scroll-reveal base state */
.fleet-card,
.service-card,
.why-card,
.testi-card,
.how-step,
.stat-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--tr), border-color var(--tr);
}

.fleet-card.visible,
.service-card.visible,
.why-card.visible,
.testi-card.visible,
.how-step.visible,
.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.fleet-card:nth-child(2)  { transition-delay: 0.06s; }
.fleet-card:nth-child(3)  { transition-delay: 0.12s; }
.service-card:nth-child(2){ transition-delay: 0.08s; }
.service-card:nth-child(3){ transition-delay: 0.16s; }
.why-card:nth-child(2)    { transition-delay: 0.06s; }
.why-card:nth-child(3)    { transition-delay: 0.12s; }
.why-card:nth-child(4)    { transition-delay: 0.18s; }
.why-card:nth-child(5)    { transition-delay: 0.24s; }
.why-card:nth-child(6)    { transition-delay: 0.30s; }
.testi-card:nth-child(2)  { transition-delay: 0.08s; }
.testi-card:nth-child(3)  { transition-delay: 0.16s; }
.testi-card:nth-child(4)  { transition-delay: 0.08s; }
.testi-card:nth-child(5)  { transition-delay: 0.16s; }
.testi-card:nth-child(6)  { transition-delay: 0.24s; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤1100px)
════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-main      { grid-template-columns: 1fr 1fr; }
  .testi-grid       { grid-template-columns: repeat(2, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .stats-wrap       { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 14px 20px 22px;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--sh-lg);
    z-index: 9998;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 13px 14px;
    border-radius: 8px;
    font-size: 1rem;
    border-bottom: 1px solid var(--c-border);
  }

  .nav-links li:last-child a { border-bottom: none; }

  .hamburger { display: block; }
  .nav-tel   { display: none; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 52px 20px 40px;
    gap: 36px;
  }

  .hero-image-col { order: -1; }
  .hero-h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-trust { gap: 12px; }

  /* Booking strip */
  .booking-strip-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 14px 20px;
    gap: 10px;
  }

  .bs-item { padding: 0 10px; min-width: 44%; }
  .bs-div  { display: none; }
  .bs-cta  { width: 100%; justify-content: center; text-align: center; }

  /* Sections */
  .services-grid  { grid-template-columns: 1fr; }
  .how-steps      { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }

  .section-head.split {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    padding: 52px 20px 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 18px 20px;
  }

  /* WhatsApp */
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.65rem; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — Small (≤480px)
════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .btn-cta-white,
  .btn-cta-outline { width: 100%; justify-content: center; }
  .stats-wrap    { grid-template-columns: repeat(2, 1fr); }
  .btn-book-nav  { padding: 8px 14px; font-size: 0.8rem; }
}
