:root {
  --ink: #12333b;
  --sea: #0b7285;
  --deep-sea: #084c61;
  --sun: #f4a261;
  --leaf: #2a9d8f;
  --sand: #f6f3ed;
  --mist: #e9f0ef;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  color: var(--ink);
  line-height: 1.6;
  background: linear-gradient(180deg, var(--sand) 0%, #ffffff 45%, var(--mist) 100%);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.navbar {
  background: linear-gradient(90deg, var(--deep-sea), var(--sea));
  box-shadow: 0 6px 18px rgba(8, 76, 97, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.logo {
  font-weight: bold;
  font-size: 20px;
  color: var(--white);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a,
.nav-parent {
  text-decoration: none;
  color: var(--white);
  font-family: "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-group {
  position: relative;
}

.nav-parent::after {
  content: " ▾";
  font-size: 12px;
  vertical-align: middle;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 14px 28px rgba(8, 76, 97, 0.22);
  z-index: 200;
}

.nav-group.open .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  color: var(--ink);
  font-size: 16px;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-dropdown a:hover {
  background: #eef7f5;
}

.nav-group.active-group .nav-parent {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

nav a.active {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.hero {
  position: relative;
  background: url('images/hero_1.webp') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-left .hero-content {
  text-align: left;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section {
  padding: 60px 0;
}

.light-bg {
  background: var(--mist);
}

.private-cta-bg {
  background: linear-gradient(180deg, #f1f7fb 0%, #e3f0f7 100%);
}

.airport-quote-bg {
  background: linear-gradient(180deg, #f7f4ee 0%, #efe9dd 100%);
}

.day-quote-bg {
  background: linear-gradient(180deg, #edf6f4 0%, #e0efeb 100%);
}

.multi-quote-bg {
  background: linear-gradient(180deg, #f2f3f8 0%, #e7e9f2 100%);
}

.why-bg {
  background: linear-gradient(180deg, #f3f9f8 0%, #e8f4f2 100%);
}

.why-highlight {
  padding-top: 70px;
  padding-bottom: 70px;
}

.why-shell {
  background: linear-gradient(140deg, var(--deep-sea) 0%, #0d5f74 55%, var(--sea) 100%);
  border-radius: 22px;
  padding: 36px 24px;
  box-shadow: 0 22px 42px rgba(8, 76, 97, 0.28);
  color: var(--white);
}

.why-head h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.why-head p {
  max-width: 760px;
  margin: 0 auto;
  opacity: 0.95;
}

.why-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-weight: 700;
}

.why-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.why-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 15px;
  background: var(--sun);
  color: #2b1e12;
  overflow: hidden;
}

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.why-icon.is-photo {
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.why-icon.is-photo img {
  object-fit: cover;
  padding: 0;
}

.why-card h3 {
  margin-bottom: 8px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.92);
}

.why-trust {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.why-trust span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
  font-weight: 600;
}

.grid-3 {
  display: grid;
  gap: 30px;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(8, 76, 97, 0.12);
}

.tour-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tour-chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--deep-sea);
  background: rgba(11, 114, 133, 0.12);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--sea), var(--deep-sea));
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(8, 76, 97, 0.24);
}

.feature h3 {
  margin-bottom: 10px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--leaf);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: var(--sun);
  color: #2b1e12;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 15px;
}

.center {
  text-align: center;
}

.reviews-widget {
  margin-top: 24px;
}

.insta-full .container {
  width: 100%;
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
}

.insta-full {
  background: #ffffff;
}

.contact-reviews-white {
  background: #ffffff;
}

.about-story {
  max-width: 900px;
}

.about-story h2 {
  margin-bottom: 14px;
}

.about-story p {
  margin-bottom: 12px;
}

.vehicle-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.vehicle-card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(8, 76, 97, 0.12);
}

.vehicle-card h3 {
  margin-bottom: 10px;
}

.vehicle-list {
  margin-left: 20px;
}

.vehicle-list li {
  margin-bottom: 6px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.gallery-trigger {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-trigger img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-trigger:hover img {
  transform: scale(1.03);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-modal.open {
  display: flex;
}

.gallery-figure {
  max-width: min(1000px, 90vw);
  text-align: center;
}

.gallery-figure img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}

.gallery-figure figcaption {
  color: var(--white);
  margin-top: 8px;
}

.gallery-close,
.gallery-nav {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.gallery-close {
  top: 18px;
  right: 18px;
}

.gallery-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

body.gallery-open {
  overflow: hidden;
}

footer {
  background: linear-gradient(90deg, var(--deep-sea), var(--sea));
  color: var(--white);
  padding: 30px 0;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--leaf);
  color: var(--white);
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
}

@media(min-width:768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 48px;
  }
}

@media(max-width:900px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--deep-sea), var(--sea));
    flex-direction: column;
    padding: 12px 0 18px;
    display: none;
  }

  nav a {
    margin: 6px 0;
    font-size: 17px;
  }

  .nav-group {
    width: 100%;
    text-align: center;
  }

  .nav-parent {
    margin: 6px 0;
    font-size: 17px;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    margin: 6px auto 8px;
    width: min(92%, 360px);
    box-shadow: none;
    background: rgba(255, 255, 255, 0.95);
  }

  .nav-dropdown a {
    font-size: 16px;
  }

  body.menu-open nav {
    display: flex;
  }

  .why-icon {
    width: 92px;
    height: 92px;
  }
}
