* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #5fa8ff 0%, #0e2a47 60%);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */

.navbar {
  position: relative;
  width: 100%;
  background: #0b1d2a;
  padding: 25px 60px;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 90px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

/* ================= HERO ================= */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 820px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  line-height: 1.15;
}

.sub {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}

.hero-text {
  margin: 18px auto 0;
  font-size: 18px;
  opacity: 0.95;
  max-width: 700px;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: #d4af37;
  color: #0b1d2a;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
  font-weight: 500;
  margin-right: 10px;
}

.btn:hover {
  background: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: white;
  color: #0b1d2a;
}

/* ================= INTRO ================= */

.intro {
  padding: 120px 20px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.intro h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 1.25;
}

.intro p {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 18px;
}

.intro a {
  color: white;
  text-decoration: underline;
}

.intro a:hover {
  color: #d4af37;
}

/* ================= WHY US / FAQ ================= */

.why-us {
  padding: 40px 20px 100px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.why-us h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-box {
  background: rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 30px 24px;
  transition: 0.35s ease;
}

.why-box:hover {
  transform: translateY(-8px);
}

.why-box h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.3;
}

.why-box p {
  font-size: 17px;
}

/* ================= TOURS ================= */

.tours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 20px;
}

.tour-card {
  background: rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: 0.4s ease;
}

.tour-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

.tour-card h3 {
  font-family: 'Playfair Display', serif;
  margin: 20px 0 10px;
  text-align: center;
  font-size: 30px;
}

.tour-card p {
  text-align: center;
  padding: 0 20px 20px;
  font-size: 17px;
}

.tour-card:hover {
  transform: translateY(-8px);
}

.tour-card:hover img {
  transform: scale(1.05);
}

/* ================= FOOTER ================= */

.footer {
  text-align: center;
  padding: 100px 20px;
  background: #0b1d2a;
}

.footer h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 20px;
}

.footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.contact {
  max-width: 700px;
  margin: 0 auto;
}

.contact p {
  margin-bottom: 8px;
  font-size: 18px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer a:hover {
  color: #c9a24d;
}

.meeting-text {
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 17px;
}

.footer iframe {
  max-width: 1100px;
  display: block;
  margin: 15px auto 0;
}

.copyright {
  margin-top: 30px;
  opacity: 0.9;
  font-size: 16px;
}

/* ================= SCROLL ANIMATION ================= */

.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px) {

  .navbar {
    padding: 20px 16px;
  }

  .nav-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .logo {
    height: 70px;
  }

  .nav-links {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 16px;
  }

  .btn {
    display: block;
    margin: 18px auto 0;
    max-width: 260px;
  }

  .why-us h2,
  .intro h2,
  .footer h2 {
    font-size: 30px;
  }

  .tour-card h3 {
    font-size: 26px;
  }

  .contact p,
  .meeting-text,
  .intro p,
  .why-box p,
  .tour-card p {
    font-size: 16px;
  }

  .footer {
    padding: 80px 16px;
  }

  .footer iframe {
    height: 300px;
  }
}