/* ====== GLOBAL STYLES ====== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f1e6;
  color: #4a3f35;
}

/* ====== HEADER STYLES ====== */
header {
  background: #ffffff;
  color: #b8860b;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  flex-wrap: wrap;
}

/* Navigation Links */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

header a {
  text-decoration: none;
  color: #b8860b;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
  font-size: 16px;
}

header a:hover {
  color: #8b6508;
}

/* Call-to-Action Button */
.inquire-btn {
  background-color: #ffffff;
  color: #b8860b !important;
  font-size: 14px;
  padding: 8px 15px;
  border: 2px solid #b8860b;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.inquire-btn:hover {
  background-color: #f8f8f8;
  color: #b8860b !important;
  border-color: #8b6508;
}

/* Logo */
.logo img {
  height: 100px;
}

.company-name {
  font-size: 15px;
  font-weight: bold;
  color: #0f120e;
  margin-top: 5px;
  text-align: center;
  font-family: Helvetica, sans-serif;
}

/* Nav Styles */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
  color: #ed9e0c;
}

/* ====== HAMBURGER MENU FOR MOBILE ====== */
.hamburger {
  display: none;
}

/* ====== RESPONSIVE HEADER ====== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .hamburger {
    display: block;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    color: black;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background: #f9f9f9;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active {
    display: flex;
  }
}

/* ===== TRAVEL STATS SECTION ===== */
.travel-stats {
  background: #ffffff;
  color: #b8860b;
  text-align: center;
  padding: 60px 20px;
  max-width: 700px;
  margin: 40px auto;
  font-family: "Georgia", serif;
  position: relative;
  overflow: hidden;
}

.travel-stats p {
  display: none;
  opacity: 0;
  transform: translateX(100%);
  transition: all 1s ease-in-out;
  font-size: 22px;
  font-weight: bold;
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #b8860b;
  background: #fff;
  box-shadow: 0 6px 16px rgba(184, 134, 11, 0.15);
  line-height: 1.6;
  word-wrap: break-word;
  white-space: normal;
}

.travel-stats p.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.travel-stats strong {
  font-size: 48px;
  display: block;
  color: #b8860b;
  font-weight: 900;
  background: linear-gradient(90deg, #b8860b, #d4af37, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

.travel-stats p:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(184, 134, 11, 0.25);
}

@media (max-width: 768px) {
  .travel-stats {
    padding: 40px 15px;
  }
  .travel-stats p {
    font-size: 18px;
    padding: 20px;
  }
  .travel-stats strong {
    font-size: 32px;
  }
}

/* ===== WHY TRAVEL SECTION ===== */
.why-travel {
  background: url('https://i.ibb.co/GFpJpgw/v2osk-JE01-L3h-B0-GQ-unsplash.jpg') no-repeat center center/cover;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  color: white;
}

.why-travel h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.travel-benefits {
  position: relative;
  max-width: 700px;
  margin: auto;
  perspective: 1000px;
}

.benefit {
  display: none;
  opacity: 0;
  transform: rotateY(90deg);
  transition: all 1s ease-in-out;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  backface-visibility: hidden;
}

.benefit.active {
  display: block;
  opacity: 1;
  transform: rotateY(0deg);
}

.benefit h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #8B4513;
}

.benefit p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Buttons */
button,
.inquire-btn {
  background: #ffffff;
  color: #b8860b;
  border: 2px solid #b8860b;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover,
.inquire-btn:hover {
  background: #b8860b;
  color: #ffffff;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  background: url('../images/hero1.jpg') repeat-x;
  background-size: cover;
  background-position: left center;
  animation: scrollBg 30s linear infinite;
}

@keyframes scrollBg {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

.hero .btn {
  background: #e4c07d;
  color: #5c3d2e;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #d3ac6d;
}

@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
    padding: 40px 15px;
    background-size: auto 100%;
  }

  .hero .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ===== ABOUT & SERVICE SECTIONS ===== */
.about-hero h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 18px;
  max-width: 600px;
}

.about-content, .mission, .services, .team, .cta {
  padding: 50px 10%;
  text-align: center;
  background: white;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-content h2, .mission h2, .services h2, .team h2, .cta h2 {
  font-size: 32px;
  color: #2a4d14;
  margin-bottom: 20px;
}

.service-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.service-card h3 {
  color: #2a4d14;
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
}

/* CTA */
.cta {
  background: #e8eae7;
  color: rgb(19, 11, 11);
  padding: 40px 20px;
  border-radius: 10px;
}

.cta .btn {
  background: #5c3d2e;
  color: #9ca796;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.cta .btn:hover {
  background: #ffd700;
}

@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* ====== FEATURED DESTINATIONS SECTION ====== */
.destinations {
    background: linear-gradient(135deg, #fff8ef 0%, #fefcf9 100%);
    padding: 60px 8%;
    text-align: center;
    color: #3a2f24;
    font-family: 'Poppins', sans-serif;
}

.destinations h2 {
    font-size: 2.2rem;
    color: #2c1f13;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.destinations h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 3px;
    margin: 8px auto 0;
    background-color: #c9a66b;
    border-radius: 10px;
}

/* ====== GRID LAYOUT ====== */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    justify-items: center;
}

/* ====== DESTINATION CARD ====== */
.destination-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* ====== IMAGE ====== */
.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

/* ====== COUNTRY AND DESTINATION NAMES ====== */
.destination-card h3 {
    font-size: 1.2rem;
    color: #c0844f;
    margin: 16px 0 8px;
    letter-spacing: 0.5px;
}

.destination-card h4 {
    font-size: 1rem;
    color: #3a2f24;
    margin-bottom: 20px;
    font-weight: 500;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .destinations {
        padding: 40px 5%;
    }

    .destinations h2 {
        font-size: 1.8rem;
    }

    .destination-card img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .destination-card {
        max-width: 100%;
    }

    .destinations h2 {
        font-size: 1.6rem;
    }
}


/* ===== FOOTER ===== */
footer {
  background: #D4AF37;
  color: white;
  padding: 30px 20px;
  font-size: 16px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  padding: 15px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffd700;
}

.social-media,
.payment-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.social-media img,
.payment-logos img {
  height: 28px;
  width: 28px;
  transition: transform 0.3s ease;
}

.social-media img:hover,
.payment-logos img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
  opacity: 0.8;
}

/* ===== MOBILE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .destination-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 60vh;
  }
}
