:root {
  /* Main brand colors – ORANGE THEME */
  --primary: #f97316;        /* Vibrant orange */
  --primary-dark: #ea580c;   /* Darker orange */
  --primary-soft: #fed7aa;   /* Soft orange tint */

  /* Secondary accent */
  --secondary: #0ea5e9;      /* Sky blue accent */
  --secondary-soft: #e0f2fe;

  --dark: #0f172a;
  --text: #1f2933;
  --muted: #6b7280;
  --bg-light: #fff7ed;       /* Warm light background */
  --accent: #0f766e;         /* Teal links/buttons */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #edf2ff; /* soft blue background */
  scroll-behavior: smooth;
}

/* Section custom backgrounds */
#about {
  background: #fdf9ec;   /* soft warm tint */
}

/* Tariff section */
#tariff {
  background: #f8fafc;   /* light blue-grey */
}

/* Terms / info section */
#terms {
  background: #f5f5f5;   /* neutral grey */
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  margin-bottom: 15px;
}

p {
  margin-bottom: 12px;
}

ul {
  margin-left: 18px;
  margin-bottom: 12px;
}

/* NAVBAR */

.navbar-logo {
  height: 50px;
  width: auto;
  border-radius: 0px;
}

.navbar-text span {
  color: var(--primary);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #020617;
  color: #fff;
  box-shadow: 0 2px 4px rgba(15,23,42,0.7);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}

.navbar-brand span {
  color: var(--primary);
}

.navbar-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(148,163,184,0.9);
  color: #e5e7eb;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-left: auto;
}

.navbar-toggle span {
  margin-right: 6px;
  font-size: 16px;
}

.navbar-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.navbar-menu a {
  color: #e5e7eb;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar-menu a:hover {
  background: rgba(15,118,110,0.2);
  color: #f9fafb;
  text-decoration: none;
}

.navbar-call {
  font-size: 14px;
  color: var(--secondary);
  white-space: nowrap;
}

/* HERO – FULL BACKGROUND CAROUSEL */

.hero {
  position: relative;
  color: #fff;
  padding: 90px 0 60px;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-side-logo-wrap {
  text-align: right;
  margin: 0;
}

.hero-side-logo {
  height: 500px;   /* your new size */
  width: auto;
  background: none;
  padding: 0;
  border-radius: 0;
}

.hero-logo {
  height: 100px;
  width: auto;
  border-radius: 0;
  background: none;
  padding: 0;
}

.hero-carousel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.carousel-bg-track {
  height: 100%;
  display: flex;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-bg-slide {
  flex: 0 0 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.carousel-bg-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(16,185,129,0.25), transparent 55%),
    linear-gradient(to right, rgba(15,23,42,0.90), rgba(15,23,42,0.55));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Left hero text */
.hero-main {
  flex: 1 1 480px;
  max-width: 520px;
  opacity: 0;
  animation: heroTitleIn 0.9s ease-out forwards;
  animation-delay: 0.15s;
}

.hero-side {
  flex: 0 0 auto;
  text-align: right;
}

@keyframes heroTitleIn {
  0% { opacity: 0; transform: translateY(22px) scale(0.98); }
  60% { opacity: 1; transform: translateY(-2px) scale(1.01); }
  100%{ opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15,23,42,0.8);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  border: 1px solid rgba(248,180,84,0.6);
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.hero h1 {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 6px;
  color: #f9fafb;
}

.hero-sub {
  font-size: 14px;
  color: #e5e7eb;
  opacity: 0.92;
  margin-bottom: 14px;
  max-width: 420px;
  line-height: 1.55;
}

.hero-highlight {
  font-weight: 600;
  color: var(--secondary);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #7c2d12;
  box-shadow: 0 12px 25px rgba(249,115,22,0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 14px 28px rgba(249,115,22,0.45);
}

.btn-outline {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(229,231,235,0.7);
}

.btn-outline:hover {
  background: rgba(15,23,42,0.55);
  transform: translateY(-1px) scale(1.02);
}

.hero-note {
  font-size: 12px;
  opacity: 0.9;
  color: #cbd5f5;
  margin-top: 6px;
  max-width: 430px;
}

/* HERO STATS */

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  justify-content: flex-start;
}

.hero-stat {
  min-width: 100px;
  padding: 7px 9px;
  border-radius: 10px;
  background: rgba(15,23,42,0.75);
  border: 1px solid rgba(148,163,184,0.35);
}

.hero-stat-number {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-soft);
}

.hero-stat-label {
  display: block;
  font-size: 11px;
  color: #e5e7eb;
}

/* MINI WHY */

.hero-mini-why {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.hero-mini-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(148,163,184,0.4);
  font-size: 12px;
}

.hero-mini-icon { font-size: 14px; }
.hero-mini-text { color: #f9fafb; }

/* SECTIONS & HEADINGS */

.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading span {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 4px;
}

.section-heading h2 {
  font-size: 24px;
}

/* GENERIC CARD */

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 18px 14px;
  box-shadow: 0 12px 35px rgba(15,23,42,0.06);
  border: 1px solid rgba(226,232,240,0.9);
  margin-bottom: 18px;
}

/* TARIFF & SERVICES GRIDS */

.tariff-grid,
.services-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

/* TARIFF DETAILS */

.tariff-card { position: relative; }

.tariff-price {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.tariff-price span {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

.tariff-list {
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0;
  font-size: 14px;
}

.tariff-list li { margin-bottom: 4px; }

.tariff-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #111;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
}

/* FLEET GRID & CARDS */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.fleet-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 28px rgba(15,23,42,0.08);
  border: 1px solid rgba(226,232,240,0.9);
}

.fleet-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: cover;
  max-height: 190px;
}

.fleet-tagline {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--muted);
}

.fleet-list {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 14px;
  color: #374151;
}

.fleet-list li {
  margin-bottom: 4px;
}

.fleet-badges {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fleet-badge-highlight {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary);
  color: #111827;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  font-weight: 600;
}

/* CHIPS / BADGES GENERIC */

.badge,
.about-badge,
.booking-chip,
.service-chip {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--secondary-soft);
  color: #92400e;
  font-size: 12px;
}

/* FOOTER */

footer {
  background: #020617;
  color: #9ca3af;
  padding: 18px 0;
  font-size: 13px;
}

footer a { color: #e5e7eb; }

/* FLOATING CTA */

.floating-cta {
  position: fixed;
  right: 12px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}

.floating-btn {
  display: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.floating-btn.whatsapp { background: #25d366; }
.floating-btn.call     { background: #28a745; }
.floating-btn:hover    { transform: scale(1.08); }

/* FADE ANIMATION */

.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

/* PAGE LOADER */

#page-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #0f172a 0, #020617 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-inner {
  text-align: center;
  color: #fff;
  transform: scale(1.2);
}

.loader-icon {
  font-size: 60px;
  animation: loaderBounce 1s infinite ease-in-out;
  margin-bottom: 12px;
}

.loader-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid rgba(148,163,184,0.35);
  border-top-color: var(--primary);
  margin: 0 auto 10px;
  animation: loaderSpin 0.9s linear infinite;
}

#page-loader p {
  font-size: 14px;
  color: #e5e7eb;
}

@keyframes loaderBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

@keyframes loaderSpin {
  0% { transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}

/* RESPONSIVE – NAVBAR & GENERAL LAYOUT */

@media (max-width: 900px) {
  .navbar-inner { flex-wrap: wrap; }
  .navbar-toggle { display: inline-flex; align-items: center; }
  .navbar-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
  }
  .navbar-menu.active { display: flex; }
  .navbar-menu a, .navbar-call { font-size: 15px; }
}

/* Booking section – numbering & chips */

.booking-steps {
  list-style: none;
  counter-reset: step-counter;
  margin: 0 0 12px 0;
  padding: 0;
}

.booking-quickchips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 18px;
}

/* Booking actions buttons on light card */
.booking-actions .btn-outline {
  background: transparent;
  color: #0f172a;
  border: 1px solid rgba(15,23,42,0.15);
}

.booking-actions .btn-outline:hover {
  background: rgba(15,23,42,0.04);
  color: #022c22;
}

.booking-steps li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  counter-increment: step-counter;
}

/* Left number before each item */
.booking-steps li::before {
  content: counter(step-counter) ".";
  font-weight: 600;
  color: var(--muted);
  width: 18px;
  margin-right: 4px;
  flex-shrink: 0;
}

/* Round colored badge inside content */
.step-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: #064e3b;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(16,185,129,0.4);
}

.booking-steps strong {
  font-size: 14px;
  color: var(--dark);
}

.booking-steps p {
  font-size: 13px;
  margin-bottom: 0;
  color: #muted;
}

/* Tariff grid – with images */

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tariff-card {
  display: flex;
  flex-direction: column;
}

.tariff-img-wrap {
  width: 100%;
  margin-bottom: 10px;
}

.tariff-car-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* === HERO FINAL LAYOUT OVERRIDE (DESKTOP) === */

/* remove side padding from wrapper only in hero */
.hero > .wrapper {
  padding-left: 0;
  padding-right: 0;
}

.hero-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between; /* text left, logo right */
  gap: 20px;
  padding: 0;
}

.hero-main {
  flex: 1 1 auto;
  max-width: 650px;
  text-align: left;
}

.hero-side {
  flex: 0 0 auto;
  text-align: right;
}

.hero-side-logo-wrap {
  margin: 0;
}

/* MOBILE HERO FIX – logo below text */

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 14px;      /* was 18px */
    gap: 6px;
  }

  .navbar-logo {
    height: 40px;         /* a bit smaller logo */
  }

  .navbar-menu a {
    font-size: 13px;      /* reduce menu link size */
    padding: 5px 8px;
  }

  .navbar-call {
    font-size: 13px;
  }
  .wrapper {
    padding: 0 15px;
    max-width: 100%;
  }

  .hero {
    padding: 70px 0 40px;
    min-height: 82vh;
    text-align: left;
  }

  .hero-content {
    flex-direction: column;      /* stack items */
    align-items: flex-start;
    gap: 18px;
    padding: 0 15px;
  }

  .hero-main {
    order: 2;                    /* text first */
    max-width: 100%;
  }

  .hero-side {
    order: 1;                    /* logo below text */
    width: 100%;
    text-align: left;
  }

  .hero-side-logo {
    height: 150px;                /* smaller on mobile */
    width: auto;
  }

  section { padding: 50px 0; }
  .section-heading h2 { font-size: 22px; }

  .tariff-grid,
  .fleet-grid,
  .services-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    padding: 20px 16px;
    margin-bottom: 16px;
  }

  .navbar-inner { padding: 12px 15px; }
  .floating-btn { display: flex; }
}

@media (max-width: 480px) {
  section { padding: 40px 0; }
  .hero { padding: 60px 0 30px; }
  .hero h1 { font-size: 22px; }
  .card { padding: 16px 12px; }
}
