/* 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);
  --accent: #0b76ef;
  --muted: #6b7280;
  --bg: #f6f8fb;
  --card: #fff;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(0,0,0,.08);
  font-family: Inter, Arial, sans-serif;
}

* { 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: #ebebebc7;
}

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: #011931;
  color: #ffffff;
  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: 1px 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;
  }
}
/* Sections */
.section {
  margin: 40px 0;
}
.section h2 {
  margin-bottom: 14px;
}
.grid {
  display: grid;
  gap: 18px;
}
.three {
  grid-template-columns: repeat(3, 1fr);
}
.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--card);
  padding: 14px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card img {
  width: 100%;
  border-radius: 8px;
  height: 200px;
  object-fit: cover;
}
.card h3 {
  margin: 12px 0 6px;
}
.price {
  color: var(--accent);
  font-weight: 700;
}
.card .btn {
  margin-top: auto;
  align-self: start;
}


/* Contact */
.contact-card {
  background: var(--card);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
/* Buttons */
.btn {
  padding: 10px 16px;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-outline {
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
}/* Section spacing */
.section {
  margin: 50px 0;
}
.section h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

/* Grid layouts */
.grid {
  display: grid;
  gap: 20px;
}
.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

/* Card styles */
.card {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease;
}
.card:hover {
  transform: translateY(-4px);
}
.card img {
  width: 100%;
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 14px;
}
.card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  color: #0b76ef;
}
.card p {
  flex-grow: 1;
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
.btn-primary {
  background: #0b76ef;
  color: #fff;
  border: none;
  transition: background .2s ease;
}
.btn-primary:hover {
  background: #095ec0;
}
.btn-custom {
  background: #095ec0; /* WhatsApp green */
  color: #fff;
  margin-left: 10px;
  display: inline-block;
  padding: .3rem 1rem;
  border-radius: 24px;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow);
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}
.btn-custom:hover {
  background: #128C7E;
  color: #fff;
}
.btn-custom2 {
  background: #636363; /* WhatsApp green */
  color: #fff;
  margin-left: 1px;
  display: inline-block;
  padding: .3rem 0.6rem;
  border-radius: 24px;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow);
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}
.btn-custom2:hover {
  background: #128C7E;
  color: #fff;
}
.btn-custom3 {
  background: #097005; /* WhatsApp green */
  color: #fff;
  margin-left: 1px;
  display: inline-block;
  padding: .3rem 0.6rem;
  border-radius: 24px;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow);
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}
.btn-custom3:hover {
  background: #128C7E;
  color: #fff;
}
.about {
  background: #f9fafb;
  padding: 60px 20px;
}
.about .container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.about h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}
.about p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 15px;
}
@media (max-width: 640px) {
  .about h2 { font-size: 24px; }
  .about p { font-size: 15px; }
}
.categories {
  background: #f9fafb;
  padding: 60px 20px;
  text-align: center;
}
.categories h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}
.categories .intro {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.category-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform .2s ease;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}
.category-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b76ef;
}
.category-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .category-grid { grid-template-columns: 1fr; }
  .categories h2 { font-size: 24px; }
}


/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .grid.three {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid.three {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%; /* full width buttons on mobile */
  }
}
/* Section spacing */
.section {
  margin: 50px 20px;
  text-align: center;
}
.section h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 30px;
}

/* Cards for itinerary & inclusions/exclusions */
.card {
  background: #fff;
  padding: 20px 25px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  max-width: 900px;
  text-align: left;
  transition: transform .2s ease;
}
.card:hover {
  transform: translateY(-4px);
}
.card h3 {
  font-size: 20px;
  color: #0b76ef;
  margin-bottom: 12px;
}
.card ul {
  list-style: disc inside;
  line-height: 1.6;
  margin-bottom: 10px;
}
.card ul li {
  margin-bottom: 6px;
  color: #4b5563;
}

/* Buttons for inquiry/WhatsApp */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin: 10px 5px 0 0;
  transition: 0.3s;
}
.btn-primary {
  background: #0b76ef;
  color: #fff;
}
.btn-primary:hover {
  background: #095ec0;
  color: #fff;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #128C7E;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .card { max-width: 100%; padding: 18px; }
}
@media (max-width: 640px) {
  .btn { width: 100%; margin: 10px 0; }
  .section h2 { font-size: 22px; }
  .card h3 { font-size: 18px; }
}
.adventure-tour {
  padding: 60px 20px;
  background: linear-gradient(to right, #e0f7fa, #f1f8e9);
}

.adventure-tour h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #004d40;
}

.adventure-tour p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #333;
  font-size: 16px;
}

.adventure-tour .route-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 850px;
  margin: 0 auto;
  transition: transform 0.2s ease-in-out;
}

.adventure-tour .route-card:hover {
  transform: translateY(-6px);
}

.adventure-tour h3 {
  font-size: 20px;
  color: #00695c;
  margin-bottom: 15px;
}

.adventure-tour ul {
  list-style: none;
  padding: 0;
}

.adventure-tour ul li {
  padding: 8px 0;
  font-size: 15px;
  color: #444;
}
/* WhatsApp Chat Widget */
.whatsapp-chat {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

/* Floating button */
.chat-button {
  background: #25D366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.chat-button:hover {
  transform: scale(1.1);
}

/* Chat Box */
.chat-box {
  display: none;
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  animation: slideUp 0.3s ease forwards;
}

/* Chat Header */
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0a1a2f;
  color: #FFD700;
  padding: 10px 15px;
}

.chat-header img.chat-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.chat-header h4 {
  font-size: 15px;
  margin: 0;
}

.chat-header p {
  font-size: 11px;
  color: #ddd;
  margin: 0;
}

.chat-header .close-chat {
  margin-left: auto;
  font-size: 22px;
  cursor: pointer;
  color: white;
}

/* Chat Body */
.chat-body {
  padding: 15px;
  text-align: center;
  background: #f9f9f9;
}

.chat-body p {
  color: #333;
  margin-bottom: 15px;
}

.chat-start-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s;
}

.chat-start-btn:hover {
  background: #1ebe5d;
}

/* Animation */
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .chat-box {
    width: 260px;
  }
}

