/* Base */
:root{
  --bg: #0b1020;
  --card: #0f1530;
  --muted: #6b7280;
  --text: #0b1020;        /* for light areas */
  --ink: #0f1220;         /* dark ink */
  --brand: #0d7fb4;       /* cyan */
  --brand-2: #22c55e;     /* green accent */
  --surface: #ffffff;     /* white */
  --ring: rgb(14,165,233,.35);
  --shadow: 0 10px 30px rgba(2,6,23,.1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f1220;
  line-height: 1.6;
  background: #fff;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Layout helpers */
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75);
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 1rem;
}

/* Topbar */
.topbar {
  background: #f1f5f9;
  color: #0f1220;
  font-size: .9rem;
}
.topbar .container {
  display: grid;
  grid-auto-flow: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: .4rem 0;
}

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
}
.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: .2px;
}
.logo span { color: var(--brand); }
.logo--footer { font-size: 1.15rem; }

.nav {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: .9rem 0;
}

.menu {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.menu a {
  font-weight: 500;
  color: #051e2c;
  opacity: .85;
}
.menu a:hover { opacity: 1; }

/* Mobile menu (CSS only) */
.nav-toggle { display: none; }
.hamburger {
  display: none;
  width: 38px;
  height: 34px;
  border: 1px solid #0b3b63;
  border-radius: 10px;
  padding: 6px;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #0f1220;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: .7rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow);
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--brand);
  color: rgb(255, 255, 255);
  border-color: transparent;
}
.btn-outline {
  background: white;
  color: #0f1220;
}
.btn-small { padding: .55rem .8rem; border-radius: 10px; }

/* Hero */
.hero { position: relative; height: 40vh; min-height: 120px; }
.hero img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(.75);
}
.hero-overlay {
  position: absolute; inset: 0; display: grid; place-content: center;
  text-align: center; color: white; padding: 1rem;
}
.hero-overlay h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 .6rem 0;
}
.hero-overlay p {
  max-width: 760px; margin: 0 auto 1.2rem; opacity: .95;
}
.hero-cta { display: flex; gap: .8rem; justify-content: center; margin-bottom: .9rem; }
.badges { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }
.badges span {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  padding: .35rem .6rem; border-radius: 999px; font-weight: 600; font-size: .9rem;
}

/* Section */
.section { padding: 72px 0; }
.section.alt { background: #f8fafc; }
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0 0 8px 0;
  text-align: center;
}
.section-sub {
  text-align: center; color: var(--muted); margin: 0 auto 28px; max-width: 680px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: white; border: 1px solid #eef2f7; border-radius: 18px; padding: 18px;
  box-shadow: var(--shadow);
}
.card .icon { font-size: 28px; }
.card h3 { margin: 6px 0 6px; }
.list { margin: 10px 0 0; padding-left: 18px; }
.list li { margin: 6px 0; color: #111827; }

/* Fleet */
.fleet-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.fleet-item {
  background: white; border: 1px solid #eef2f7; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
}
.fleet-item h4 { margin: 12px 16px 0; }
.fleet-item p { margin: 6px 16px 16px; color: var(--muted); }
.fleet-item img { width: 100%; height: 210px; object-fit: cover; }

/* Tours list */
.tours { display: grid; gap: 12px; }
.tour {
  background: white; border: 1px solid #eef2f7; border-radius: 16px; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow);
}
.tour h3 { margin: 0 0 4px 0; }
.tour p { margin: 0; color: var(--muted); }

/* Quotes */
.quotes { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
blockquote {
  background: white; border: 1px solid #eef2f7; padding: 18px; border-radius: 16px; font-style: italic; box-shadow: var(--shadow);
}
cite { display: block; margin-top: 8px; font-style: normal; color: var(--muted); }

/* Form */
.form {
  background: white; border: 1px solid #eef2f7; border-radius: 18px; padding: 18px; box-shadow: var(--shadow);
}
.form .grid {
  display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr);
}
.form label { display: grid; gap: 6px; font-weight: 600; }
.form input, .form textarea, .form select {
  width: 100%; padding: .75rem .9rem; border: 1px solid #e5e7eb; border-radius: 12px; font: inherit; outline: none;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--ring); }
.form .full { grid-column: 1 / -1; }
.form-note { color: var(--muted); margin-top: 10px; }

/* Trust strip */
.trust { background: #0f172a; color: white; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 14px 0;
}
.trust-grid > div {
  text-align: center; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 10px; background: rgba(255,255,255,.06);
}

/* Footer */
.footer { background: #0b1020; color: #dbeafe; margin-top: 54px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 18px; padding: 34px 0;
}
.footer .links { list-style: none; margin: 0; padding: 0; }
.footer .links li { margin: 6px 0; color: #cbd5e1; }
.subfooter { border-top: 1px solid rgba(255,255,255,.08); }
.subfooter .container { padding: 12px 0; color: #9fb3c8; }

/* Responsive */
@media (max-width: 980px) {
  .cards, .fleet-grid, .quotes { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .topbar { display: none; }
  .nav { grid-template-columns: auto auto auto; }
  .menu {
    position: fixed; inset: 64px 0 auto 0; background: white; border-top: 1px solid #e5e7eb;
    display: grid; gap: 0; padding: .4rem 1rem; transform: translateY(-120%); transition: transform .2s ease;
  }
  .menu a { padding: .8rem 0; border-bottom: 1px solid #eef2f7; }
  .hamburger { display: grid; place-content: center; margin-left: auto; }
  .nav-toggle:checked ~ .hamburger { border-color: #cbd5e1; }
  .nav-toggle:checked ~ .menu { transform: translateY(0); }
  .hero { height: 62vh; }
  .cards, .fleet-grid { grid-template-columns: 1fr; }
  .form .grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}
.gallery {
  padding: 3rem 1rem;
  background: #f9f9f9;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;  
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 0 10px;
}

.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.05);
  filter: brightness(60%);
}

.gallery-item:hover .overlay,
.gallery-item:focus .overlay {
  opacity: 1;
}

/* Mobile touch: show overlay on tap */
@media (hover: none) and (pointer: coarse) {
  .gallery-item:active .overlay {
    opacity: 1;
  }
}

/* tours: packges */
.packages {
  padding: 3rem 1rem;
  background: #fff;
  text-align: center;
}

.packages h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.package-card {
  background: #f9f9f9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-content {
  padding: 1rem;
}

.package-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.package-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.package-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.package-content ul li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #444;
}

.package-content ul li i {
  color: #28a745; /* green check */
  margin-right: 8px;
}

.package-content .btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.package-content .btn:hover {
  background: #0056b3;
}
/* other: mods */
.itinerary {
  padding: 3rem 1rem;
  text-align: center;
}

.map-container {
  max-width: 650px;
  margin: 0 auto;
}

.map-container svg {
  width: 100%;
  height: auto;
}

/* Path animation */
.map-container path {
  animation: drawRoute 4s linear forwards;
}

@keyframes drawRoute {
  to {
    stroke-dashoffset: 0;
  }
}
