*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #0a7d3b;
  --green-dark: #075c2b;
  --green-light: #e8f5ee;
  --gold: #d4af37;
  --gold-light: #f0e4a0;
  --gold-dark: #a88b1d;
  --white: #ffffff;
  --off-white: #fafaf8;
  --grey-light: #f4f4f1;
  --grey-mid: #e8e8e2;
  --grey-text: #666660;
  --dark: #111110;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Poppins", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  transition: all 0.4s var(--ease);
}
nav.scrolled {
  height: 60px;
  box-shadow: 0 4px 32px rgba(10, 125, 59, 0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}
.nav-logo-text span:last-child {
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--grey-text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.75rem !important;
  transition:
    background 0.25s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  color: var(--white) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: calc(100vh - 72px);
  height: 100vh;
  padding-top: 142px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s var(--ease),
    visibility 1s var(--ease);
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s var(--ease);
  filter: brightness(0.75) contrast(1.1);
}
.hero-slide.active .hero-bg {
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 30, 15, 0.65) 0%,
    rgba(10, 125, 59, 0.5) 30%,
    rgba(10, 125, 59, 0.4) 60%,
    rgba(212, 175, 55, 0.2) 100%
  );
  z-index: 1;
}
.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 60%
  );
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  opacity: 0.5;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 6vw 4rem;
  max-width: 760px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease) 0.4s forwards;
  backdrop-filter: blur(2px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 2.5rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.3));
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}
.hero-eyebrow span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s var(--ease);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(212, 175, 55, 0.5);
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  border-radius: 6px;
  pointer-events: none;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
}
.btn-ghost:hover::before {
  opacity: 0.1;
}
.hero-navigation {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 4;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.6s forwards;
}
.hero-nav-btn {
  background: rgba(10, 125, 59, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
}
.hero-nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
}
.hero-nav-btn:hover {
  background: rgba(10, 125, 59, 0.6);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}
.hero-indicators {
  display: flex;
  gap: 12px;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 2px solid transparent;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}
.indicator:hover {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
}
.indicator.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.6),
    0 0 40px rgba(212, 175, 55, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero-scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
  opacity: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-scroll-bar {
  width: 2px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
}
.hero-scroll-bar::after {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  animation: scrollBar 2s ease-in-out infinite;
  border-radius: 2px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--green);
  padding: 1.1rem 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* ── ABOUT ── */
#about {
  padding: 9rem 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  background: var(--white);
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  background: url("../images/hira.jpg") center/cover;
}
.about-img-accent {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 42%;
  aspect-ratio: 1;
  background: url("../images/masjid.jpg") center/cover;
  border-radius: 4px;
  border: 6px solid var(--white);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}
.about-badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}
.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}
.about-badge-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.75;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-text {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.section-title strong {
  font-weight: 600;
  color: var(--green);
}
.section-body {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--grey-text);
  margin-bottom: 2rem;
}

/* ── SERVICES ── */
#services {
  padding: 8rem 6vw;
  background: var(--grey-light);
}
.services-header {
  max-width: 560px;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--grey-mid);
  border: 1.5px solid var(--grey-mid);
  border-radius: 10px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  background: #fefef9;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--green);
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.service-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--grey-text);
}

/* ── FLEET ── */
#fleet {
  padding: 8rem 6vw;
  background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
}
.fleet-header {
  max-width: 560px;
  margin-bottom: 4rem;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.fleet-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: all 0.4s var(--ease);
  box-shadow: 0 10px 40px rgba(10, 125, 59, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.fleet-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.fleet-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(10, 125, 59, 0.16);
}
.fleet-card:hover::before {
  opacity: 1;
}
.fleet-img-wrapper {
  position: relative;
  overflow: hidden;
}
.fleet-img {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  background-color: var(--grey-light);
  transition: transform 0.6s var(--ease);
}
.fleet-card:hover .fleet-img {
  transform: scale(1.08);
}
.fleet-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(12px);
}
.fleet-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.fleet-model {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.fleet-desc {
  font-size: 0.9rem;
  color: var(--grey-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(10, 125, 59, 0.04);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 500;
}
.feature-item svg {
  color: var(--green);
  flex-shrink: 0;
}
.fleet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10, 125, 59, 0.2);
}
.fleet-btn:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 125, 59, 0.35);
  border-color: var(--gold);
}

/* ── WHY CHOOSE US ── */
#why {
  padding: 8rem 6vw;
  background: var(--green);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.why-left .section-title {
  color: var(--white);
}
.why-left .section-title strong {
  color: var(--gold);
}
.why-left .section-body {
  color: rgba(255, 255, 255, 0.7);
}
.why-left .eyebrow-text {
  color: var(--gold-light);
}
.why-left .eyebrow-line {
  background: var(--gold);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.why-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  transition: all 0.3s;
}
.why-item:hover {
  background: rgba(255, 255, 255, 0.11);
}
.why-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.why-item-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}
.why-item-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.why-item-desc {
  font-size: 0.77rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* ── JOURNEY EXPERIENCE ── */
#journey {
  position: relative;
  padding: 10rem 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
}
.journey-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5, 25, 12, 0.75), rgba(5, 25, 12, 0.75)),
    url("../images/masjid2.jpg") center/cover;
}
.journey-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.journey-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.6;
}
.journey-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.journey-credit {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── VIP SECTION ── */
#vip {
  padding: 8rem 6vw;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#vip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.vip-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.vip-left .section-eyebrow .eyebrow-text {
  color: var(--gold);
}
.vip-left .eyebrow-line {
  background: var(--gold);
}
.vip-left .section-title {
  color: var(--white);
}
.vip-left .section-title strong {
  color: var(--gold);
}
.vip-left .section-body {
  color: rgba(255, 255, 255, 0.55);
}
.vip-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  color: var(--gold-light);
  line-height: 1.6;
}
.vip-notice svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.vip-fleet {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.vip-car {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  transition: all 0.3s;
}
.vip-car:hover {
  background: rgba(212, 175, 55, 0.07);
  border-color: rgba(212, 175, 55, 0.4);
}
.vip-car-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vip-car-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}
.vip-car-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.vip-car-tag {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}
.vip-car-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 1.2rem;
}

/* ── PARTNERSHIP ── */
#partnership {
  padding: 8rem 6vw;
  background: var(--off-white);
}
.partnership-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.partner-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.partner-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 24px rgba(10, 125, 59, 0.09);
}
.partner-card-icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--green);
}
.partner-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.partner-card-text {
  font-size: 0.78rem;
  color: var(--grey-text);
  line-height: 1.6;
}
.offer-list {
  list-style: none;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--dark);
}
.offer-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230a7d3b'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── CTA ── */
#cta {
  padding: 8rem 6vw;
  text-align: center;
  background: var(--white);
  position: relative;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.cta-title strong {
  font-weight: 600;
  color: var(--green);
}
.cta-sub {
  font-size: 0.9rem;
  color: var(--grey-text);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 125, 59, 0.25);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 15px 34px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}
.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 4rem 6vw 2rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo-text span:first-child {
  color: var(--white);
}
.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1rem;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollBar {
  0% {
    top: -50px;
  }
  100% {
    top: 100%;
  }
}
@keyframes heroBgShift {
  0%,
  100% {
    background-position: center;
  }
  50% {
    background-position: center 20%;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--dark);
  text-decoration: none;
  font-weight: 300;
}
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark);
  background: none;
  border: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #about {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-img-accent {
    right: 1rem;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vip-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .partnership-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .partner-cards {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 0 6vw;
  }
  .trust-bar {
    gap: 1.25rem;
    padding: 1rem 4vw;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  #about {
    padding: 5rem 6vw;
  }
  #services,
  #fleet,
  #why,
  #journey,
  #vip,
  #partnership,
  #cta {
    padding: 5rem 6vw;
  }
  .about-badge {
    display: none;
  }
}

/* ── TRANSPORT PAGE ── */
.transport-wrap {
  padding: 8rem 6vw 5rem;
  background: #f6f8f4;
  min-height: 100vh;
}
.transport-hero {
  margin-bottom: 1.5rem;
  max-width: 780px;
}
.transport-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.7vw, 3rem);
  color: #0c3420;
  margin-bottom: 0.5rem;
}
.transport-hero p {
  color: #516058;
  font-size: 0.94rem;
}
.transport-alert {
  border-radius: 8px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.transport-alert.success {
  background: #eaf8ee;
  border: 1px solid #a9dbb6;
  color: #1f4a2e;
}
.transport-alert.error {
  background: #fff2f2;
  border: 1px solid #f2b7b7;
  color: #7a2020;
}
.transport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.flow-card {
  background: #fff;
  border: 1px solid #e0e6df;
  border-radius: 10px;
  padding: 1rem;
}
.flow-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #123225;
}
.field-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.65rem;
}
.field-row label {
  font-size: 0.82rem;
  color: #3f5148;
  font-weight: 500;
}
.field-row input,
.field-row select,
.field-row textarea {
  border: 1px solid #ccd9d0;
  border-radius: 8px;
  padding: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.field-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.car-selection {
  margin-bottom: 1rem;
}
.car-selection h3 {
  margin-bottom: 0.8rem;
  color: #123225;
}
.car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.car-option {
  border: 1px solid #d8e0da;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}
.car-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.car-option:has(input:checked) {
  border-color: #0a7d3b;
  box-shadow: 0 10px 28px rgba(10, 125, 59, 0.12);
}
.car-image {
  height: 140px;
  background-size: cover;
  background-position: center;
}
.car-info {
  padding: 0.7rem;
}
.car-info h4 {
  font-size: 0.96rem;
  margin-bottom: 0.2rem;
  color: #1f3029;
}
.car-info p {
  font-size: 0.8rem;
  color: #58645e;
  margin: 0.1rem 0;
}
.car-price {
  color: #0a7d3b !important;
  font-weight: 600;
}
.fare-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #dce5de;
  border-radius: 10px;
  padding: 1rem;
}
.fare-preview p {
  font-size: 1rem;
  color: #2c3d35;
}

/* ── ADMIN ── */
.admin-auth-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #f5f7f3;
  padding: 1.2rem;
}
.admin-auth-card {
  width: min(460px, 100%);
  background: #fff;
  border: 1px solid #e1e8e1;
  border-radius: 12px;
  padding: 1.3rem;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
}
.admin-auth-card h1 {
  font-family: var(--font-display);
  color: #11412f;
  margin-bottom: 0.4rem;
}
.admin-error {
  color: #982c2c;
  font-size: 0.86rem;
  margin: 0.5rem 0;
}
.admin-auth-form {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.6rem;
}
.admin-auth-form label {
  font-size: 0.82rem;
  color: #43564d;
}
.admin-auth-form input {
  border: 1px solid #cad6cf;
  border-radius: 8px;
  padding: 0.6rem;
}

.admin-page {
  background: #f4f7f4;
  min-height: 100vh;
}
.admin-topbar {
  background: #0d3a29;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 6vw;
  gap: 1rem;
}
.admin-topbar h1 {
  font-size: 1.1rem;
  font-weight: 600;
}
.admin-actions {
  display: flex;
  gap: 0.6rem;
}
.admin-main {
  padding: 1rem 6vw 2rem;
  display: grid;
  gap: 1rem;
}
.admin-card {
  background: #fff;
  border: 1px solid #dce4de;
  border-radius: 10px;
  padding: 1rem;
}
.admin-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: #143726;
}
.admin-grid-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}
.admin-grid-form textarea {
  grid-column: 1 / -1;
}
.admin-grid-form input,
.admin-grid-form textarea,
.admin-grid-form select {
  border: 1px solid #cfdad3;
  border-radius: 8px;
  padding: 0.58rem;
  font-size: 0.87rem;
}
.admin-table-wrap {
  overflow: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 940px;
}
.admin-table th,
.admin-table td {
  border-bottom: 1px solid #e4ece6;
  padding: 0.55rem;
  font-size: 0.84rem;
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  background: #f7faf8;
  color: #2d4d40;
}
.admin-inline-form {
  display: grid;
  gap: 0.4rem;
  margin: 0.4rem 0;
}
.admin-inline-form input,
.admin-inline-form textarea {
  border: 1px solid #d0dbd3;
  border-radius: 7px;
  padding: 0.45rem;
  font-size: 0.82rem;
}
.status-form select {
  border: 1px solid #d4e0d7;
  border-radius: 7px;
  padding: 0.35rem;
  font-size: 0.82rem;
}

@media (max-width: 1024px) {
  .car-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-grid-form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .transport-wrap {
    padding: 6.7rem 5vw 4rem;
  }
  .transport-grid,
  .field-inline,
  .car-grid,
  .fare-preview {
    grid-template-columns: 1fr;
    display: grid;
  }
  .fare-preview {
    gap: 0.7rem;
  }
  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .admin-grid-form {
    grid-template-columns: 1fr;
  }
}

/* ── NEW ADMIN LAYOUT ── */
.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: #f3f6f4;
}
.admin-sidebar {
  background: linear-gradient(160deg, #0b5130, #083f26);
  color: #fff;
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
}
.admin-brand h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
}
.admin-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}
.admin-menu {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.45rem;
}
.admin-menu a {
  text-decoration: none;
  color: #d7efe1;
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  font-size: 0.9rem;
}
.admin-menu a.active,
.admin-menu a:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}
.admin-side-actions {
  margin-top: auto;
  display: grid;
  gap: 0.5rem;
}
.admin-content {
  padding: 1.2rem;
}
.admin-header h1 {
  margin: 0;
  color: #153a2b;
}
.admin-header p {
  margin-top: 0.3rem;
  color: #5a6c62;
}
.admin-stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}
.stat-box {
  background: #fff;
  border: 1px solid #dee7e0;
  border-radius: 10px;
  padding: 1rem;
}
.stat-box h3 {
  margin: 0;
  color: #0a653a;
  font-size: 1.4rem;
}
.stat-box p {
  margin-top: 0.2rem;
  color: #5f7268;
  font-size: 0.85rem;
}
.admin-panel-card {
  background: #fff;
  border: 1px solid #dfe8e2;
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
}
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.admin-form-grid .full {
  grid-column: 1 / -1;
}
.admin-form-grid label {
  display: block;
  font-size: 0.82rem;
  color: #4c6358;
  margin-bottom: 0.25rem;
}
.admin-form-grid input,
.admin-form-grid textarea {
  width: 100%;
  border: 1px solid #cdd9d1;
  border-radius: 8px;
  padding: 0.65rem;
  font-size: 0.9rem;
}
.booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.search-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.search-form input {
  width: 280px;
  border: 1px solid #ccd7d0;
  border-radius: 8px;
  padding: 0.62rem;
}
.booking-actions {
  display: flex;
  gap: 0.4rem;
}
.pagination {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.pagination a {
  text-decoration: none;
  background: #e8f2ec;
  padding: 0.35rem 0.7rem;
  border-radius: 7px;
  color: #164d36;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1rem;
  margin-bottom: 0.8rem;
}

/* ── NEW 4-STEP BOOKING UI ── */
.transport-pro-wrap {
  padding: 7.6rem 6vw 4rem;
  background: linear-gradient(180deg, #f6f9f7, #f2f6f3);
  min-height: 100vh;
}
.transport-pro-top h1 {
  margin: 0.2rem 0 0.45rem;
  color: #0f3f2b;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
}
.transport-pro-top p {
  color: #5a6e63;
  max-width: 780px;
}
.step-booking-form {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid #dce6df;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 12px 26px rgba(10, 125, 59, 0.08);
}
.step-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 2;
}
.step-item span {
  width: 34px;
  height: 34px;
  margin: 0 auto 0.2rem;
  border-radius: 50%;
  border: 1px solid #cadbd1;
  display: grid;
  place-items: center;
  background: #fff;
  color: #4e6559;
  font-weight: 600;
}
.step-item small {
  font-size: 0.77rem;
  color: #5c6f64;
}
.step-item.active span {
  background: #0a7d3b;
  color: #fff;
  border-color: #0a7d3b;
}
.step-item.active small {
  color: #0f5f34;
  font-weight: 600;
}
.progress-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 17px;
  height: 4px;
  background: #e0ebe4;
  border-radius: 999px;
  z-index: 1;
}
.progress-line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #0a7d3b, #19a156);
  border-radius: 999px;
  transition: width 0.25s ease;
}
.step-pane {
  display: none;
}
.step-pane.active {
  display: block;
}
.step-pane h3 {
  margin-bottom: 0.75rem;
  color: #15412e;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.form-grid .full {
  grid-column: 1 / -1;
}
.form-grid label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.84rem;
  color: #4a6257;
  font-weight: 500;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #cddad2;
  border-radius: 8px;
  padding: 0.65rem;
}
.step-desc {
  color: #6a7c72;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.car-select-container {
  margin-bottom: 1.5rem;
}
.car-select-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.car-select-grid::-webkit-scrollbar {
  height: 6px;
}
.car-select-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.car-select-grid::-webkit-scrollbar-thumb {
  background: #0a7d3b;
  border-radius: 3px;
}
.car-card-pro {
  position: relative;
  min-width: 280px;
  border: 2px solid #e8e8e2;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.car-card-pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 125, 59, 0.15);
}
.car-card-pro input {
  position: absolute;
  opacity: 0;
}
.car-card-pro:has(input:checked) {
  border-color: #0a7d3b;
  box-shadow:
    0 0 0 3px rgba(10, 125, 59, 0.1),
    0 8px 25px rgba(10, 125, 59, 0.15);
}
.car-photo {
  position: relative;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.car-capacity-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 125, 59, 0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
.car-meta {
  padding: 1rem;
}
.car-meta h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  color: #1e372c;
  font-weight: 600;
}
.car-category {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
  color: #0a7d3b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.car-features {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.feature {
  background: #e8f5ee;
  color: #0a7d3b;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
}
.car-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.car-price strong {
  font-size: 1.2rem;
  color: #0a7d3b;
  font-weight: 700;
}
.car-price span {
  font-size: 0.75rem;
  color: #6a7c72;
}
.car-selected-indicator {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 24px;
  height: 24px;
  background: #0a7d3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s var(--ease);
}
.car-card-pro:has(input:checked) .car-selected-indicator {
  opacity: 1;
  transform: scale(1);
}
.car-selected-indicator svg {
  color: white;
  width: 14px;
  height: 14px;
}
.payment-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}
.pay-box {
  border: 1px solid #d1ddd5;
  border-radius: 10px;
  padding: 0.8rem;
  background: #fff;
  display: grid;
  gap: 0.2rem;
  cursor: pointer;
}
.pay-box input {
  margin-bottom: 0.3rem;
}
.pay-icon {
  font-size: 1.2rem;
}
.pay-box small {
  color: #6a7c72;
  font-size: 0.76rem;
}
.fare-box {
  margin-top: 0.8rem;
  padding: 0.8rem;
  border-radius: 9px;
  background: #ecf7ef;
  border: 1px solid #b9dec2;
  color: #1f5136;
  font-size: 1rem;
}
.step-nav {
  margin-top: 0.9rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.booking-popup {
  position: fixed;
  inset: 0;
  background: rgba(9, 24, 16, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.booking-popup.show {
  display: flex;
}
.popup-card {
  width: min(420px, 92%);
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}
.popup-card h3 {
  color: #13472f;
  margin-bottom: 0.4rem;
}
.popup-card p {
  color: #4f6459;
  margin-bottom: 0.35rem;
}

@media (max-width: 1024px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .payment-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .car-card-pro {
    min-width: 260px;
  }
}
@media (max-width: 768px) {
  .form-grid,
  .admin-form-grid,
  .detail-grid,
  .payment-options,
  .admin-stats {
    grid-template-columns: 1fr;
  }
  .search-form {
    width: 100%;
  }
  .search-form input {
    width: 100%;
  }
  .car-card-pro {
    min-width: 240px;
  }
  .car-select-grid {
    gap: 0.75rem;
    padding: 0.25rem;
  }
}
