:root {
  --indigo-950: #1e1b4b;
  --indigo-900: #312e81;
  --indigo-800: #3730a3;
  --indigo-700: #4338ca;
  --indigo-600: #4f46e5;
  --indigo-500: #6366f1;
  --indigo-400: #818cf8;
  --black: #0f172a;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-500: #64748b;
  --shadow: 0 12px 40px rgba(30, 27, 75, 0.1);
  --shadow-hover: 0 20px 50px rgba(30, 27, 75, 0.14);
  --radius: 1rem;
  --radius-pill: 999px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --container-pad: clamp(1rem, 4vw, 2rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-bg {
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.2vw + 0.95rem, 1.08rem);
  line-height: 1.62;
  color: var(--black);
  background: var(--white);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  box-sizing: border-box;
}

/* Header — indigo, white text */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: linear-gradient(135deg, var(--indigo-900) 0%, var(--indigo-800) 100%);
  box-shadow: 0 2px 24px rgba(30, 27, 75, 0.35);
  transition: transform 0.35s var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
  padding-inline: max(0px, env(safe-area-inset-left)) max(0px, env(safe-area-inset-right));
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.brand-text {
  white-space: nowrap;
}

@media (max-width: 400px) {
  .brand-text {
    font-size: 0.88rem;
    max-width: 9.5rem;
    white-space: normal;
    line-height: 1.2;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.25s var(--ease);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + var(--header-h));
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, var(--indigo-900) 0%, var(--indigo-950) 100%);
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav a::after {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88svh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 2.5rem) 0 clamp(3rem, 8vw, 4.5rem);
}

@media (max-width: 600px) {
  .hero {
    min-height: min(82svh, 640px);
    padding-bottom: 3.25rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--indigo-950) url("../images/hero-banner.png") center / cover no-repeat;
  transform: scale(1.02);
  animation: hero-kenburns 22s ease-in-out infinite alternate;
}

@keyframes hero-kenburns {
  from {
    transform: scale(1.02) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-1%, -0.5%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 27, 75, 0.5) 0%,
    rgba(30, 27, 75, 0.62) 50%,
    rgba(15, 23, 42, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  max-width: 36rem;
  margin: 0 auto 2rem;
  opacity: 0.96;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
}

@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    padding-inline: 0.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.scroll-hint-line {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 12px;
  margin-inline: auto;
  position: relative;
}

.scroll-hint-line::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: currentColor;
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.4;
    transform: translateY(10px);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  min-height: 46px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  touch-action: manipulation;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 27, 75, 0.22);
  }
}

@media (hover: none) {
  .btn:active {
    transform: scale(0.98);
  }
}

.btn:focus-visible {
  outline: 3px solid var(--indigo-400);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--indigo-600) 0%, var(--indigo-700) 100%);
  color: var(--white);
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--indigo-500) 0%, var(--indigo-600) 100%);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--indigo-900);
  border-color: var(--white);
}

.btn-block {
  width: 100%;
  margin-top: auto;
}

.btn-on-band {
  background: var(--white);
  color: var(--indigo-900);
  border-color: var(--white);
}

.btn-on-band:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  margin-top: 0.5rem;
}

.btn-whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  color: var(--white);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 1.35rem;
  color: var(--indigo-950);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 4px;
  margin: 0.65rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--indigo-500), var(--indigo-700));
}

.section-lead {
  text-align: center;
  color: var(--gray-500);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}

.about {
  background: var(--gray-100);
}

.about-text {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  color: var(--black);
  font-size: clamp(1.02rem, 1.5vw + 0.9rem, 1.15rem);
  line-height: 1.7;
}

.card-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.85rem);
}

/* Fleet: 1 → 2 → 3 columns */
@media (min-width: 600px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 599px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}

/* Packages & reviews: 1 col phone, 2 col tablet / small laptop, 3 col desktop */
@media (min-width: 600px) and (max-width: 1023px) {
  .packages-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .packages-grid,
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 599px) {
  .packages-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  border: 1px solid rgba(99, 102, 241, 0.06);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
  }
}

.card-image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}

.fleet-grid {
  align-items: stretch;
}

.fleet-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fleet-card:hover .card-image-wrap img {
  transform: scale(1.04);
}

.card-body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.2rem);
  margin: 0;
  color: var(--indigo-950);
  line-height: 1.3;
}

.card-body p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.98rem;
}

.fleet-pax {
  margin-top: 0.25rem !important;
  color: var(--indigo-800) !important;
  font-weight: 600;
}

.package-card .package-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}

.package-card:hover .package-media img {
  transform: scale(1.06);
}

.link-arrow {
  font-weight: 600;
  color: var(--indigo-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* Features */
.features {
  background: var(--gray-100);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .feature:hover {
    transform: translateY(-3px);
  }
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--indigo-600) 0%, var(--indigo-700) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--indigo-950);
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* Reviews */
.review-card {
  padding: 1.75rem;
  border-left: 4px solid var(--indigo-600);
}

.review-card p {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--black);
}

.review-card cite {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
}

.reviews-lead {
  margin-top: -0.35rem;
}

/* Justdial trust panel — link-out (embedding Justdial is usually blocked) */
.justdial-trust {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  max-width: 52rem;
  margin-inline: auto;
}

.justdial-trust-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1.35rem, 4vw, 2rem);
  background: linear-gradient(145deg, var(--white) 0%, var(--gray-100) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-left: 4px solid #c81e1e;
  transition: box-shadow 0.3s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .justdial-trust-inner:hover {
    box-shadow: var(--shadow-hover);
  }
}

@media (min-width: 768px) {
  .justdial-trust-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.justdial-trust-main {
  flex: 1;
  min-width: 0;
}

.justdial-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9f1239;
}

.justdial-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--indigo-950);
}

.justdial-desc {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--gray-500);
}

.justdial-stars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
}

.justdial-star {
  color: #f59e0b;
  font-size: 1.15rem;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.justdial-stars-caption {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
}

.justdial-trust-cta {
  flex-shrink: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .justdial-trust-cta {
    text-align: right;
    max-width: 14rem;
  }
}

.btn-justdial {
  background: linear-gradient(135deg, var(--indigo-600) 0%, var(--indigo-800) 100%);
  color: var(--white);
  border: 2px solid transparent;
  width: 100%;
  min-height: 48px;
}

@media (min-width: 768px) {
  .btn-justdial {
    width: auto;
    min-width: 13rem;
  }
}

.btn-justdial:hover {
  color: var(--white);
}

.justdial-btn-icon {
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.95;
}


.footer-links {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

/* CTA — indigo strip, white text */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--indigo-800) 0%, var(--indigo-900) 50%, var(--indigo-950) 100%);
  padding: clamp(2.75rem, 7vw, 4.25rem) 0;
  text-align: center;
  color: var(--white);
}

.cta-band-glow {
  pointer-events: none;
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(129, 140, 248, 0.35) 0%, transparent 55%);
  opacity: 0.9;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
  color: var(--white);
}

.cta-inner p {
  margin: 0 0 1.75rem;
  opacity: 0.95;
  max-width: 32rem;
  margin-inline: auto;
  color: var(--white);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
}

@media (max-width: 420px) {
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
    min-height: 48px;
  }
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-lead {
  margin-top: 0;
  color: var(--gray-500);
}

.phone-row {
  margin: 0.5rem 0;
}

.phone-row.muted {
  font-size: 0.95rem;
  color: var(--gray-500);
}

.contact-link {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw + 0.5rem, 1.85rem);
  font-weight: 700;
  text-decoration: none;
  color: var(--indigo-800);
  word-break: break-word;
}

.contact-link:hover {
  color: var(--indigo-600);
}

.contact-link-sub {
  color: var(--black);
}

.map-wrap {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

.map-wrap iframe,
.map-iframe {
  display: block;
  width: 100%;
  min-height: 220px;
  height: clamp(220px, 40vw, 300px);
  border: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--indigo-500);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.contact-form-wrap .btn {
  border: none;
}

.form-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 1rem;
}

.hidden {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

/* Footer */
.site-footer {
  background: var(--indigo-950);
  color: rgba(255, 255, 255, 0.88);
  padding: 1.75rem 0 calc(1.75rem + env(safe-area-inset-bottom, 0px));
  text-align: center;
}

.footer-inner p {
  margin: 0.35rem 0;
  font-size: 0.95rem;
}

.footer-tag {
  opacity: 0.8;
  font-size: 0.88rem !important;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

main {
  padding-top: 0;
}
