/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
}

/* ================= HEADER ================= */
.site-header {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */
.logo img {
  height: 55px;
}

/* ================= NAV ================= */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 500;
  color: #222;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #c89b3c;
}

/* ================= MOBILE MENU ================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #222;
  margin-bottom: 5px;
  border-radius: 2px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 75px;
    right: 0;
    width: 100%;
    background: #fff;
    display: none;
    padding: 20px;
  }

  .nav-menu.show {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #c89b3c;
  color: #000;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: 85vh;
  }
}

/* ================= ABOUT US (STYLED) ================= */
.about {
  padding: 90px 20px;
  background: #f7f7f7;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* CONTENT */
.section-tag {
  display: inline-block;
  color: #c89b3c;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #111;
}

.about-intro {
  font-weight: 500;
  color: #444;
  margin-bottom: 18px;
}

.about-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 2.1rem;
  }
}
/* ================= SERVICES ================= */
.services {
  padding: 90px 20px;
  background: #ffffff;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #111;
}

.section-header p {
  color: #555;
  line-height: 1.7;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.service-card {
  background: #f9f9f9;
  padding: 35px 30px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #111;
}

.service-card p {
  color: #555;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}
/* ================= PACKAGES ================= */
.packages {
  padding: 90px 20px;
  background: #f7f7f7;
}

.packages-container {
  max-width: 1200px;
  margin: auto;
}

.package-category {
  margin: 50px 0 25px;
  font-size: 1.9rem;
  color: #111;
}

/* GRID */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.package-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.package-content {
  padding: 25px;
  text-align: center;
}

.package-content h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.package-content p {
  color: #666;
  margin-bottom: 18px;
}

/* BUTTON */
.package-btn {
  display: inline-block;
  padding: 10px 26px;
  background: #c89b3c;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-category {
    font-size: 1.6rem;
  }
}
/* ================= PACKAGES ================= */
.packages {
  padding: 90px 20px;
  background: #f7f7f7;
}

.packages-container {
  max-width: 1200px;
  margin: auto;
}

.package-category {
  margin: 50px 0 25px;
  font-size: 1.9rem;
}

/* GRID */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.package-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-content {
  padding: 25px;
  text-align: center;
}

/* DESTINATIONS */
.package-destinations {
  list-style: none;
  padding: 0;
  margin: 10px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
}

.package-destinations li {
  background: #f1f1f1;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* FORM */
.package-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.package-form input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* BUTTON */
.package-btn {
  background: #c89b3c;
  color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.package-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(200,155,60,.45);
}

.package-btn:active {
  transform: scale(.96);
}

/* MOBILE DESTINATIONS (SHOW 2 ONLY) */
@media (max-width: 768px) {
  .package-destinations li:nth-child(n+3) {
    display: none;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= CONTACT SECTION ================= */
.contact {
  padding: 100px 20px;
  background: #f7f7f7;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* INFO */
.contact-info h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

/* FORM */
.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-btn {
  width: 100%;
  padding: 14px;
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37,211,102,0.35);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }

  .contact-info h2 {
    font-size: 2.1rem;
  }
}
/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 90px 20px;
  background: #ffffff;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
}

/* SLIDER */
.testimonial-slider {
  overflow: hidden;
  margin-top: 50px;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* CARD */
.testimonial-card {
  min-width: 320px;
  max-width: 360px;
  background: #f7f7f7;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.testimonial-card p {
  font-style: italic;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: #777;
}

/* STARS */
.stars {
  color: #f5b301;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 85%;
  }
}
/* ================= WHY CHOOSE US ================= */
.why-us {
  padding: 100px 20px;
  background: #f7f7f7;
}

.why-us-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 60px;
}

/* CARD */
.why-us-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

.why-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.why-us-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #111;
}

.why-us-card p {
  color: #555;
  line-height: 1.7;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= FOOTER ================= */
.site-footer {
  background: #111;
  color: #ccc;
  padding: 70px 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

/* BRAND */
.footer-brand h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-brand p {
  line-height: 1.7;
  font-size: 0.95rem;
}

/* COLUMNS */
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col a {
  color: #c89b3c;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* WHATSAPP BUTTON */
.footer-whatsapp {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  background: #ac7373;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 50px;
  padding: 20px;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

/* DEVELOPER CREDIT */
.developer-credit {
  margin-top: 8px;
}

.developer-credit a {
  color: #c89b3c;
  text-decoration: none;
  font-weight: 500;
}

.developer-credit a:hover {
  text-decoration: underline;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
