/* -------------------------------------------------- */
/* GLOBAL RESET & BASE                                */
/* -------------------------------------------------- */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.5;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.center {
  text-align: center;
}

.muted {
  color: #6b6b6b;
  font-size: 0.95rem;
}

/* -------------------------------------------------- */
/* HEADER                                              */
/* -------------------------------------------------- */

.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap; /* allow wrapping on small screens */
}

.logo img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-width: 200px;
  }

  .header .wrap {
    padding: 10px 12px;
  }
}

#navMenu {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
}

#navMenu a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 8px;
}

#navMenu a:hover {
  opacity: 0.8;
}

.btn-book {
  border: 1px solid #111;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: #111;
}

.menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  background: transparent;
  border: 0;
}

/* Responsive menu toggle for mobile */
@media (max-width: 900px) {
  #navMenu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 74px;
    right: 16px;
    background: #fff;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    width: calc(100% - 40px);
    max-width: 300px;
    box-sizing: border-box;
    z-index: 1001;
  }

  .menu-btn {
    display: block;
  }
}

/* -------------------------------------------------- */
/* HERO SECTION                                        */
/* -------------------------------------------------- */

.hero {
  padding: 70px 20px;
  background: #fff;
}

.hero .content {
  display: flex;
  gap: 28px;
  align-items: center;
}

.hero .text {
  flex: 1;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.hero p {
  color: #333;
  margin-bottom: 16px;
}

.hero .hero-cta {
  display: flex;
  gap: 12px;
}

/* ---------------- HERO SLIDER ---------------- */

.slider-container {
  position: relative;
  width: 420px;
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
}

.slider-hero {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.slider-hero img {
  width: 420px;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

/* arrows */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 5px 12px;
  cursor: pointer;
  z-index: 10;
}

#prevHero { left: 5px; }
#nextHero { right: 5px; }

/* -------------------------------------------------- */
/* SECTION STANDARD                                    */
/* -------------------------------------------------- */

.section {
  padding: 48px 20px;
}

.section h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* -------------------------------------------------- */
/* CARDS                                               */
/* -------------------------------------------------- */

.card {
  background: #fff;
  border: 1px solid #eee;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* -------------------------------------------------- */
/* FORMS                                               */
/* -------------------------------------------------- */

form {
  background: #f8f8f8;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #eee;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 8px;
}

button {
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

/* -------------------------------------------------- */
/* FAQ                                                 */
/* -------------------------------------------------- */

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .24s ease;
}

/* -------------------------------------------------- */
/* FOOTER                                              */
/* -------------------------------------------------- */

.site-footer {
  width: 100%;
  background: #cfcfcf;
  color: #1a1a1a;
  padding: 50px 0 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer-col h3 {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #111;
  text-decoration: none;
  font-size: 15px;
}

.footer-col ul li a:hover {
  opacity: 0.7;
}

.footer-logo {
  width: 150px;
  height: 50px;
  margin-bottom: 10px;
}

.footer-social img {
  width: 22px;
  margin-right: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid #444;
  margin-top: 40px;
  font-size: 15px;
}

/* -------------------------------------------------- */
/* PRICING PAGE                                        */
/* -------------------------------------------------- */

.price-section {
  background: #fff;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.price-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}

.price-text {
  flex: 1;
}

.price-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.price-text .sub-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #555;
}

.price-text p {
  margin-bottom: 24px;
  max-width: 450px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 26px;
}

.price-table td {
  padding: 10px 0;
  font-size: 17px;
  border-bottom: 1px solid #eee;
}

.price-table td:last-child {
  text-align: right;
  font-weight: bold;
}

.price-btn {
  background: #1a1a1a;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.price-image-area {
  flex: 1;
  position: relative;
}

.price-bus {
  width: 100%;
  max-width: 650px;
  display: block;
  filter: drop-shadow(0 18px 25px rgba(0,0,0,0.15));
}

.price-bottom-curve {
  width: 100%;
  height: 80px;
  background: linear-gradient(90deg, #1a1a1a, #000000);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  margin-top: 20px;
}

/* -------------------------------------------------- */
/* RESPONSIVE                                          */
/* -------------------------------------------------- */

@media (max-width: 900px) {
  .hero .content {
    flex-direction: column;
  }

  #navMenu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 74px;
    right: 16px;
    background: #fff;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
  }

  .menu-btn {
    display: block;
  }

  .price-container {
    flex-direction: column;
    text-align: center;
  }

  .price-text p,
  .price-table {
    margin-left: auto;
    margin-right: auto;
  }

  .price-bus {
    margin-top: 20px;
  }
}
