﻿:root {
  --color-body: #050608;
  /* dark theme defaults */
  --color-ink: #0b0d11;
  --color-charcoal: #141720;
  --color-card: #10131c;
  --color-steel: #1c1f28;
  --color-gold: #ffc300;
  --color-gold-soft: #ffd95c;
  --color-white: #ffffff;
  --color-muted: #a7abb5;
  --color-text: #e6e7eb;
  --color-border: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 32px 60px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 24px 40px rgba(0, 0, 0, 0.35);
  --font-primary: "Poppins", sans-serif;
  --font-alt: "Barlow", sans-serif;
  --transition-base: all 0.35s ease;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(
    circle at top left,
    #090b12 0%,
    var(--color-body) 45%,
    #040507 100%
  );
  color: var(--color-muted);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-gold);
}

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

video {
  width: 100%;
  border-radius: var(--radius-md);
}

.section-padding {
  padding: 6rem 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-heading .eyebrow {
  display: inline-block;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-heading h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-heading p {
  color: var(--color-muted);
  font-size: 1rem;
}

.row.g-4 {
  --bs-gutter-x: 1.85rem;
  --bs-gutter-y: 2.5rem;
  margin-right: -12px;
  margin-left: -12px;
}

.row.g-4 > [class*='col-'] {
  padding-right: 12px;
  padding-left: 12px;
  margin-bottom: 1.5rem;
}

.experiences .row.g-4 > [class*='col-'],
.fleet .row.g-4 > [class*='col-'],
.assurance .row.g-4 > [class*='col-'],
.highlights .row.g-4 > [class*='col-'] {
  padding-bottom: 2.5rem;
}

.assurance .row.g-4 > [class*='col-'] {
  padding-bottom: 1.5rem;
}

:where(
    .journey-step,
    .highlight-card,
    .assurance-card,
    .terms-card,
    .about-panel
  ) {
  background: rgba(14, 17, 26, 0.96);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.48);
}

.btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 0.85rem 1.9rem;
  transition: var(--transition-base);
  letter-spacing: 0.02rem;
}

.btn-gold {
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-soft) 100%
  );
  color: #18191c;
  box-shadow: 0 14px 35px rgba(255, 195, 0, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(255, 195, 0, 0.45);
  color: #18191c;
}

.btn-outline-gold {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: #18191c;
  transform: translateY(-3px);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold);
  font-weight: 600;
}

.hero-link:hover {
  gap: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navigation-wrap {
  padding: 0.75rem 0;
  transition: var(--transition-base);
  background: linear-gradient(
    135deg,
    rgba(5, 5, 8, 0.92),
    rgba(12, 12, 18, 0.92)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.navigation-wrap.scrolled {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95),
    rgba(15, 15, 20, 0.95)
  );
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-alt);
  color: var(--color-white);
  font-weight: 600;
  letter-spacing: 0.04rem;
}

.navbar-brand .brand-logo {
  height: 48px;
  width: auto;
}

.navbar-brand .brand-text {
  font-size: 1.05rem;
}
.navbar-nav .nav-link {
  color: var(--color-muted);
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  inset: auto 0.8rem 0.45rem;
  height: 2px;
  background: var(--color-gold);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0);
  transition: var(--transition-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-white);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-scroll {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.navbar-nav {
  display: flex;
  flex-wrap: nowrap;
  min-width: max-content;
  gap: 0.25rem;
}

@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    align-items: center;
    min-width: 0;
    gap: 0.5rem;
  }

  .nav-scroll {
    flex: 0 1 60%;
    max-width: 60%;
    min-width: 0;
    position: relative;
    -webkit-mask-image: linear-gradient(
      to right,
      black 0,
      black calc(100% - 24px),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      black 0,
      black calc(100% - 24px),
      transparent 100%
    );
  }

  .nav-scroll::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to left, var(--color-dark-bg), transparent);
  }

  .navbar-nav .nav-item:first-child .nav-link {
    color: var(--color-white);
    font-weight: 600;
  }
}

.navbar-cta {
  flex: 0 0 auto;
}

.nav-scroll::-webkit-scrollbar {
  height: 6px;
}

.nav-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.nav-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--color-white);
  margin-right: 1rem;
  transition: var(--transition-base);
  cursor: pointer;
}

.theme-toggle:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.6rem 0.8rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  display: inline-block;
  transition: var(--transition-base);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-base);
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

.navbar-toggler.is-open .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler.is-open .navbar-toggler-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler.is-open .navbar-toggler-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.floating-contacts {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: grid;
  gap: 0.75rem;
  z-index: 980;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-card);
  color: var(--color-white);
  padding: 0.65rem 1rem;
  border-radius: 60px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
  transition: var(--transition-base);
  font-weight: 600;
}

.floating-btn i {
  font-size: 1.1rem;
}

.floating-btn:hover {
  transform: translateY(-4px);
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #1fa55b, #25d366);
}

.floating-btn.phone {
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-soft)
  );
  color: #111318;
}

.floating-btn.directions {
  background: linear-gradient(135deg, #0f1a2e, #1c3f76);
  color: var(--color-white);
}

.floating-offer {
  position: fixed;
  right: -6px;
  bottom: 220px;
  background: linear-gradient(135deg, #0b1b2f, #112f58);
  color: var(--color-white);
  padding: 1rem 1.1rem;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: grid;
  gap: 0.5rem;
  width: min(280px, 90vw);
  transform: translateX(110%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.floating-offer.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-offer h4 {
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold);
}

.floating-offer p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.floating-offer .btn {
  width: 100%;
  justify-content: center;
}

.floating-offer-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.floating-offer-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.floating-offer-tab {
  position: fixed;
  right: 0;
  bottom: 220px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-soft));
  color: #111318;
  border: none;
  padding: 0.85rem 1rem;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  cursor: pointer;
  animation: pulseGlow 2.4s ease-in-out infinite, offerShake 0.85s ease-in-out 3s infinite;
}

.floating-offer-tab:hover {
  transform: translateX(-3px);
}

.floating-offer-tab.hidden {
  display: none;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.45), 0 18px 45px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 12px 6px rgba(255, 195, 0, 0.35), 0 18px 45px rgba(0, 0, 0, 0.4);
  }
}

@keyframes offerShake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 575px) {
  .floating-offer {
    left: 50%;
    transform: translateX(150%);
    right: auto;
    bottom: 200px;
  }

  .floating-offer.open {
    transform: translate(-50%, 0);
  }

  .floating-offer-tab {
    right: 12px;
    bottom: 200px;
  }
}

.hero {
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, rgba(5, 5, 8, 0.68), rgba(5, 5, 8, 0.5)),
    url("../images/img/bg-desktop.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(5, 5, 8, 0.08));
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-glow {
  display: none;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: inline-block;
}

.hero-legal {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #fff4c4, #ffc300);
  -webkit-background-clip: text;
  color: transparent;
  text-transform: uppercase;
  animation: heroLegalBlink 2.4s ease-in-out infinite;
}

@keyframes heroLegalBlink {
  0%,
  45%,
  100% {
    opacity: 1;
    text-shadow: 0 0 18px rgba(255, 195, 0, 0.45),
      0 0 36px rgba(255, 195, 0, 0.2);
  }
  60% {
    opacity: 0.4;
    text-shadow: none;
  }
}

.hero-lead {
  max-width: 520px;
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-typing {
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

.hero-stats li {
  min-width: 150px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  color: var(--color-muted);
}

.hero-stats span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
}

.hero-media {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-media .badge {
  position: absolute;
  top: -18px;
  left: 24px;
  background: var(--color-gold);
  color: #121214;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.04rem;
}

.media-caption {
  margin-top: 1.2rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}
.journey {
  position: relative;
}

.journey-track {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.journey-step {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.journey-step::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 195, 0, 0.7),
    transparent
  );
  opacity: 0;
  transition: var(--transition-base);
}

.journey-step:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 195, 0, 0.35);
}

.journey-step:hover::after {
  opacity: 1;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 195, 0, 0.15),
    rgba(255, 195, 0, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 195, 0, 0.25);
}

.journey-step h3 {
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.about {
  background: linear-gradient(
    180deg,
    rgba(15, 16, 23, 0.7),
    rgba(5, 5, 8, 0.95)
  );
}

.about-story {
  background: rgba(16, 19, 28, 0.9);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

.about-story h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-family: var(--font-alt);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-story p {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.about-highlights {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--color-text);
}

.about-highlights i {
  color: var(--color-gold);
  font-size: 1rem;
  margin-top: 0.25rem;
}

.about-panels {
  display: grid;
  gap: 1.75rem;
}

.about-panel {
  padding: 1.5rem;
  transition: var(--transition-base);
}

.about-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 195, 0, 0.25);
}

.about-panel h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.highlights {
  background: #07080c;
}

.highlight-card {
  text-align: center;
  padding: 1.8rem 1.3rem;
  transition: var(--transition-base);
}

.highlight-card i {
  font-size: 1.8rem;
  margin-bottom: 1.1rem;
  color: var(--color-gold);
}

.highlight-card h3 {
  color: var(--color-white);
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.highlight-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.highlight-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 195, 0, 0.25);
}

body.light-theme .assurance-card {
  background: #ffffff;
  border: 1px solid rgba(24, 28, 39, 0.08);
  box-shadow: 0 16px 30px rgba(28, 32, 46, 0.12);
}

.experience-card {
  background: rgba(14, 17, 26, 0.96);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.experience-card:hover {
  transform: translateY(-12px);
}

.experience-media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.experience-media video {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.modal-video-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 70vh;
  box-shadow: var(--shadow-card);
  width: min(100%, 960px);
  margin: 0 auto;
}

.modal-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-content {
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.experience-content h3 {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 600;
}

.experience-content p {
  color: var(--color-muted);
}

.experience-link {
  align-self: flex-start;
  border: none;
  background: none;
  color: var(--color-gold);
  font-weight: 600;
  display: inline-flex;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.experience-link:hover {
  gap: 0.75rem;
}

.fleet {
  position: relative;
}

.fleet-card {
  background: rgba(14, 17, 26, 0.96);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: auto;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  transition: var(--transition-base);
  min-height: 100%;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
}

.fleet-card:hover {
  transform: translateY(-22px);
  border-color: rgba(255, 195, 0, 0.25);
}

.fleet-thumb {
  background: linear-gradient(
    135deg,
    rgba(255, 195, 0, 0.08),
    rgba(255, 195, 0, 0.02)
  );
  padding: 1.5rem 1.5rem 0.5rem;
}

.fleet-thumb img {
  height: 160px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

.fleet-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fleet-tag {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255, 195, 0, 0.15);
  color: var(--color-gold);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  font-weight: 600;
}

.fleet-body h3 {
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 600;
}

.fleet-body ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.fleet-card-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.day-picker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  color: var(--color-white);
}

.day-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.15rem;
  background: rgba(255, 255, 255, 0.05);
}

.day-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
}

.day-btn:hover {
  color: var(--color-gold);
}

.day-btn i {
  pointer-events: none;
}

.fleet-days-input {
  width: 64px;
  background: transparent;
  border: none;
  color: var(--color-white);
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  -moz-appearance: textfield;
}

.fleet-days-input::-webkit-outer-spin-button,
.fleet-days-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.fleet-cta {
  margin-top: 3rem;
}

.assurance {
  background: linear-gradient(
    180deg,
    rgba(5, 6, 8, 0.95),
    rgba(8, 10, 15, 0.95)
  );
}

.assurance-card {
  text-align: center;
  padding: 1.5rem 1.25rem;
  height: 100%;
  min-height: 200px;
  transition: var(--transition-base);
}

.assurance-card:hover {
  transform: translateY(-10px);
}

.assurance-card i {
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.assurance-card h3 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.assurance-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 195, 0, 0.25);
}

.review-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
}

.gallery-grid {
  margin-top: 1.5rem;
}

.gallery-grid .thumb {
  position: relative;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--color-card);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-base);
  border-radius: calc(var(--radius-lg) - 6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(5, 6, 8, 0.75);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 0.85rem;
  letter-spacing: 0.04rem;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 6, 8, 0.85));
  opacity: 0;
  transition: var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  opacity: 1;
}

.cta-highlight {
  background: radial-gradient(
    circle at top right,
    rgba(255, 195, 0, 0.18),
    transparent 55%
  );
}

.cta-card {
  background: rgba(16, 19, 28, 0.92);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid rgba(255, 195, 0, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-soft);
}

.cta-card h2 {
  color: var(--color-white);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-card p {
  color: var(--color-muted);
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-card {
  background: rgba(16, 19, 28, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 1.5rem;
}

.contact-card h2 {
  color: var(--color-white);
  font-size: 2rem;
}

.contact-address {
  color: var(--color-muted);
  display: grid;
  gap: 0.4rem;
}

.contact-directions {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-directions:hover {
  color: var(--color-gold-soft);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--color-text);
}

.contact-list i {
  color: var(--color-gold);
}

.contact-list li div {
  display: grid;
  gap: 0.3rem;
}

.contact-list li a {
  color: var(--color-gold);
}

.contact-list li a:hover {
  color: var(--color-gold-soft);
}

.contact-hours p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

.terms {
  background: linear-gradient(
    180deg,
    rgba(5, 6, 8, 0.92),
    rgba(10, 12, 16, 0.92)
  );
}

.terms-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.terms-card {
  padding: 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.terms-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(255, 195, 0, 0),
    rgba(255, 195, 0, 0.6),
    rgba(255, 195, 0, 0)
  );
  opacity: 0;
  transition: var(--transition-base);
}

.terms-card h3 {
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 600;
}

.terms-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.terms-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 195, 0, 0.35);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}

.terms-card:hover::after {
  opacity: 1;
}

body.light-theme .terms-card {
  background: #ffffff;
  border: 1px solid rgba(24, 28, 39, 0.08);
  box-shadow: 0 16px 30px rgba(28, 32, 46, 0.12);
}

.faq .accordion {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.faq .accordion-item {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.faq .accordion-button {
  background: linear-gradient(
    145deg,
    rgba(16, 19, 28, 0.92),
    rgba(10, 13, 18, 0.88)
  );
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.35);
  transition: var(--transition-base);
}

.faq .accordion-button::after {
  flex-shrink: 0;
  background-image: none;
  content: "\f067";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "Font Awesome";
  font-weight: 900;
  color: var(--color-gold);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 195, 0, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-base);
  box-shadow: 0 8px 18px rgba(255, 195, 0, 0.18);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-gold);
  background: linear-gradient(
    145deg,
    rgba(20, 24, 32, 0.98),
    rgba(15, 17, 24, 0.9)
  );
}

.faq .accordion-button:not(.collapsed)::after {
  content: "\f068";
  background: var(--color-gold);
  color: #101116;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(255, 195, 0, 0.22);
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-collapse {
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}

.faq .accordion-body {
  padding: 1.25rem 1.5rem;
  color: var(--color-muted);
  background: rgba(12, 13, 19, 0.85);
  border-radius: 0 0 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-top: none;
}

.faq a {
  color: var(--color-gold);
  text-decoration: underline;
}

.footer {
  background: #040507;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .brand-logo {
  height: 52px;
  margin-bottom: 1rem;
}

.footer h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social span {
  color: var(--color-muted);
  font-size: 0.85rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact li div {
  display: grid;
  gap: 0.25rem;
}

.footer-links a {
  color: var(--color-muted);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-contact span {
  color: var(--color-muted);
}

.footer-contact a {
  color: var(--color-gold);
}

.footer-contact a:hover {
  color: var(--color-gold-soft);
}

.footer-social a {
  font-size: 1.1rem;
  color: var(--color-gold);
  display: inline-flex;
  padding: 0.55rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 195, 0, 0.35);
}

.footer-bottom {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.experience-modal .modal-content {
  background: rgba(16, 19, 28, 0.97);
  color: var(--color-text);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.experience-modal .modal-dialog {
  max-width: 700px;
}

.experience-modal .modal-body {
  padding: 1.5rem;
}

.experience-modal .modal-body h3 {
  color: var(--color-white);
  margin-bottom: 0.85rem;
}

.experience-modal .btn-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  opacity: 0.85;
  background-color: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-size: 14px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
  z-index: 10;
}

.experience-modal .btn-close:hover {
  opacity: 1;
  background-color: rgba(255, 195, 0, 0.24);
  border-color: transparent;
}

.modal-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 1.2rem;
  color: var(--color-muted);
}

.modal-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: flex-start;
}

.modal-list li i {
  color: var(--color-gold);
  font-size: 1rem;
  line-height: 1.4;
  padding-top: 0.15rem;
}

.modal-note {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.modal-actions {
  margin-top: 1rem;
}

.modal-slider {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.modal-slider .carousel-item img {
  border-radius: 0;
}

.modal-slider .carousel-control-prev,
.modal-slider .carousel-control-next {
  width: 12%;
}

.modal-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* Elegant Card Showcase */
.gallery-modal {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 1rem;
  position: relative;
}

.gallery-frame {
  position: relative;
  background: var(--color-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: scale(0.98);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.modal.show .gallery-frame {
  transform: scale(1);
  opacity: 1;
}

.gallery-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(82vh, 900px);
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 8, 0) 0%,
    rgba(5, 6, 8, 0.85) 70%,
    rgba(5, 6, 8, 0.98) 100%
  );
  color: var(--color-text);
}

.gallery-caption h5 {
  color: var(--color-white);
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.gallery-caption p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  z-index: 4;
}

.gallery-nav i {
  font-size: 1.05rem;
}

.gallery-nav.prev {
  left: 14px;
}

.gallery-nav.next {
  right: 14px;
}

.gallery-nav:hover {
  background: var(--color-gold);
  color: #111318;
  transform: translateY(-50%) scale(1.05);
  border-color: transparent;
}

.gallery-nav:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Floating close button */
.gallery-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.gallery-close-btn i {
  font-size: 1.2rem;
}

.gallery-close-btn:hover {
  background: var(--color-gold);
  color: #111318;
  transform: translateY(-1px) scale(1.05);
  border-color: transparent;
}

.modal-backdrop.show {
  backdrop-filter: blur(4px);
  background-color: rgba(5, 6, 8, 0.8);
}

iframe {
  width: 100%;
  border: 0;
}

.btn-close {
  filter: invert(1);
}

.accordion-button::after {
  background-image: none;
  content: "\f078";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "Font Awesome";
  font-weight: 900;
  color: var(--color-gold);
  transform: rotate(0deg);
  transition: var(--transition-base);
}

.accordion-button.collapsed::after {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.35);
}

::selection {
  background: rgba(255, 195, 0, 0.25);
  color: var(--color-white);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation-duration: 0.001s !important;
  }
}

.journey-step:hover,
.experience-card:hover,
.fleet-card:hover,
.highlight-card:hover,
.assurance-card:hover,
.terms-card:hover {
  z-index: 2;
}

.experiences .row.g-4 {
  --bs-gutter-y: 3rem;
}

.fleet .row.g-4,
.assurance .row.g-4 {
  --bs-gutter-y: 3rem;
}

.journey-step,
.highlight-card,
.experience-card,
.fleet-card,
.assurance-card,
.terms-card,
.about-panel {
  transform: translateY(0);
  margin-bottom: 1.5rem;
}

.journey-track {
  gap: 2.5rem;
}

.about-panels {
  gap: 2rem;
}

.fleet-card {
  height: 100%;
  min-height: initial;
}

.assurance-card {
  height: 100%;
}

.terms-card {
  height: 100%;
}

.terms-grid {
  gap: 2.5rem;
}

body.light-theme {
  --color-body: #f4f6fb;
  --color-ink: #f9fbff;
  --color-charcoal: #eef1f8;
  --color-card: #ffffff;
  --color-steel: #e2e7f2;
  --color-gold: #c28a00;
  --color-gold-soft: #f0b939;
  --color-white: #101318;
  --color-muted: #5b6270;
  --color-text: #2c323d;
  --color-border: rgba(24, 28, 39, 0.085);
  --shadow-soft: 0 18px 30px rgba(28, 32, 46, 0.12);
  --shadow-card: 0 12px 20px rgba(28, 32, 46, 0.08);
  color: var(--color-text);
  background: #f4f6fb;
}

body.light-theme .journey-step,
body.light-theme .highlight-card,
body.light-theme .experience-card,
body.light-theme .fleet-card,
body.light-theme .about-panel {
  background: #ffffff;
  border: 1px solid rgba(24, 28, 39, 0.08);
  box-shadow: 0 8px 16px rgba(28, 32, 46, 0.08);
}

body.light-theme .navigation-wrap {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(24, 28, 39, 0.08);
  box-shadow: 0 12px 24px rgba(24, 28, 39, 0.08);
}

body.light-theme .navigation-wrap.scrolled {
  background: rgba(255, 255, 255, 0.96);
}

body.light-theme .theme-toggle {
  border-color: rgba(24, 28, 39, 0.12);
  color: #273041;
}

body.light-theme .theme-toggle:hover {
  color: #c28a00;
  border-color: rgba(194, 138, 0, 0.45);
}

body.light-theme .hero {
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.93),
      rgba(234, 239, 250, 0.75)
    ),
    url("../images/img/bg-desktop.jpg") center/cover no-repeat;
}

body.light-theme .hero::before {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.75),
    rgba(249, 244, 220, 0.45)
  );
}

body.light-theme .hero-lead {
  color: #464c5a;
}

body.light-theme .hero-legal {
  text-shadow: 0 0 12px rgba(194, 138, 0, 0.35);
}

body.light-theme .hero-stats li {
  background: rgba(18, 20, 26, 0.06);
  border: 1px solid rgba(18, 20, 26, 0.09);
  color: #4a5160;
}

body.light-theme .floating-btn {
  background: #ffffff;
  color: #283040;
  border: 1px solid rgba(24, 28, 39, 0.08);
}

body.light-theme .floating-btn.whatsapp {
  color: #0f552d;
}

body.light-theme .floating-btn.phone {
  color: #5a4100;
}

body.light-theme .floating-btn.directions {
  color: #0f3a7a;
  border-color: rgba(15, 58, 122, 0.2);
}

body.light-theme .journey-step::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(194, 138, 0, 0.5),
    transparent
  );
}

body.light-theme .about-story {
  background: #ffffff;
  border: 1px solid rgba(24, 28, 39, 0.08);
  box-shadow: 0 16px 30px rgba(28, 32, 46, 0.12);
}
body.light-theme .about-story h2 {
  color: #1f2532;
}
body.light-theme .about-story p {
  color: #4f5663;
}
body.light-theme .about-highlights li {
  color: #4f5663;
}

body.light-theme .about-highlights i {
  color: #c28a00;
}

body.light-theme .about-panel h3 {
  color: #1f2532;
}

body.light-theme .about {
  background: linear-gradient(
    180deg,
    rgba(232, 237, 247, 0.7),
    rgba(255, 255, 255, 0.95)
  );
}

body.light-theme .highlights {
  background: #edf1fb;
}

body.light-theme .about-panel {
  background: #ffffff;
  border: 1px solid rgba(24, 28, 39, 0.08);
  box-shadow: 0 16px 30px rgba(28, 32, 46, 0.12);
}

body.light-theme .assurance {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(232, 237, 247, 0.9)
  );
}

body.light-theme .gallery {
  background: linear-gradient(
    180deg,
    rgba(246, 248, 254, 0.92),
    rgba(255, 255, 255, 0.92)
  );
}

body.light-theme .gallery-item span {
  background: rgba(255, 255, 255, 0.88);
  color: #1b2030;
}

body.light-theme .gallery-item::after {
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(243, 245, 254, 0.85)
  );
}

body.light-theme .cta-highlight {
  background: radial-gradient(
    circle at top right,
    rgba(194, 138, 0, 0.18),
    rgba(255, 255, 255, 0.9)
  );
}

body.light-theme .cta-card {
  background: #ffffff;
  border: 1px solid rgba(24, 28, 39, 0.08);
  box-shadow: 0 16px 30px rgba(28, 32, 46, 0.12);
}

body.light-theme .cta-card h2 {
  color: #1f2532;
}

body.light-theme .cta-card p {
  color: #4f5663;
}

body.light-theme .contact-card {
  border: 1px solid rgba(24, 28, 39, 0.08);
  background: #ffffff;
}

body.light-theme .contact-list li a {
  color: #c28a00;
}

body.light-theme .map-frame {
  border: 1px solid rgba(24, 28, 39, 0.08);
  box-shadow: 0 18px 30px rgba(28, 32, 46, 0.12);
}

body.light-theme .terms {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(236, 240, 250, 0.92)
  );
}

body.light-theme .faq .accordion-button {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(237, 242, 253, 0.92)
  );
  border: 1px solid rgba(24, 28, 39, 0.08);
  color: #273042;
  box-shadow: 0 12px 24px rgba(24, 28, 39, 0.08);
}

body.light-theme .faq .accordion-button:not(.collapsed) {
  color: #c28a00;
  background: linear-gradient(
    145deg,
    rgba(255, 249, 220, 0.95),
    rgba(255, 247, 200, 0.92)
  );
}

body.light-theme .faq .accordion-button::after {
  border-color: rgba(194, 138, 0, 0.35);
}

body.light-theme .faq .accordion-button:not(.collapsed)::after {
  color: #ffffff;
  background: #c28a00;
  border-color: transparent;
}

body.light-theme .faq .accordion-body {
  background: rgba(248, 250, 255, 0.9);
  border: 1px solid rgba(24, 28, 39, 0.08);
}

body.light-theme .faq a {
  color: #c28a00;
}

body.light-theme .footer {
  background: #eff2fb;
  color: #2c323d;
}

body.light-theme .footer-links a,
body.light-theme .footer-contact span {
  color: #4f5663;
}

body.light-theme .footer-contact a {
  color: #c28a00;
}

body.light-theme .footer-contact a:hover {
  color: #a77500;
}

body.light-theme .footer-social a {
  border-color: rgba(194, 138, 0, 0.35);
  color: #c28a00;
}

body.light-theme .footer-bottom {
  color: #4f5663;
}

.fleet-card {
  height: 100%;
}

.assurance-card {
  height: 100%;
}

.terms-card {
  height: 100%;
}
