/* ----------------GENERAL----------------- */
* {
    margin: 0;
    font-family: "Saira", sans-serif;
}

body {
    background-color: #ececec;
}

h1, h2, h3 {
    font-family: 'Michroma', sans-serif;
}

h1 {
    font-size: 4rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
}

h4 {
    font-size: 2rem;
}

/* ======================================== NAV ======================================== */
header .call {
    background-color: #ff0036;
    padding: 4px 10%;
    color: #fff;
    font-size: 13px;
}

header nav {
    display: flex;
    justify-content: space-between;
    padding: 5px 10%;
    background-color: #fff;
    align-items: center;
}

header nav img {
  width: 250px;
  position: relative;
}


header nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    width: 300px;
}

header nav ul li a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #ff0036;
}



header nav ul button {
    background-color: transparent;
    padding: 8px 15px;
    border: 1px solid #ff0036;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    color: #ff0036;
}

header nav ul button:hover {
    background-color: #ff0036;
    color: #fff;
    transition: 0.3s;
}
/* ==================== HAMBURGER MENU ==================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #ff0036;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

/* ======================================== HOME-PAGE ======================================== */
#home header {
    height: 90vh;
    background-image: url(../images/banner/beach.jpg);
    background-size: cover;
}

#home header .top {
    padding: 0 10%;
    /* text-align: center; */
    color: #fff;
    position: absolute;
    top: 50%;
}

#home header .top h1 {
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 #000;
    color: #ff0036;
}

#home header .top h2 {
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 #000;
}

#home header .top button {
    padding: 10px 20px;
    border: none;
    background-color: #fff;
    color: #ff0036;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

#home header .top button:hover {
    background-color: #ff0036;
    color: #fff;
    border: none;
    transition: 0.3s;
}


/* ======================================== RESPONSIVE ======================================== */

/* Tablets */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 1.6rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    left: 0;
    background-color: #fff;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 10%;
    display: none;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease-in-out;
  }

  /* Hamburger animation */
  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  header nav {
    flex-wrap: wrap;
  }

  header nav img {
    width: 200px;
    position: relative;
  }

  #home header .top h1 {
    font-size: 3rem;
  }

  #home header .top h2 {
    font-size: 1.2rem;
  }

  #home header .top button {
    font-size: 0.9rem;
  }
}

/* Small Phones */
@media (max-width: 480px) {

  #home header {
    height: 100vh;
  }

    /* header nav img {
    width: 150px;
    position: relative;
  } */

  .nav-links {
    padding: 1rem 5%;
  }

  .nav-links li a {
    font-size: 0.8rem;
  }

  #home header .top h1 {
    font-size: 2rem;
  }

  #home header .top h2 {
    font-size: 0.8rem;
  }


}


/* ==================== SERVICES-SECTION ==================== */
#services {
  padding: 100px 10%;
}

#services .servebox {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

#services .servebox h1 {
  font-size: 3rem;
}

#services .servebox .services-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#services .servebox .services-container .service {
  width: 330px;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

#services .servebox .services-container .service .img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

#services .servebox .services-container .service .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#services .servebox .services-container .service h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #ff0036;
}

#services .bookings {
  text-align: center;
}

#services .bookings .book-button button{
  background-color: transparent;
  padding: 8px 15px;
  border: 1px solid #ff0036;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  color: #ff0036;
}

#services .bookings .book-button button:hover {
  background-color: #ff0036;
  color: #fff;
  transition: 0.3s;
}

/* ==================== RESPONSIVE S-SECTION ==================== */

/* Large tablets (<= 1024px) */
@media (max-width: 1024px) {
  #services {
    padding: 40px 8%;
  }

  #services .servebox {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-direction: column;
  }

  #services .servebox h1 {
    font-size: 2.5rem;
  }

  #services .servebox .services-container {
    gap: 20px;
  }

  #services .servebox .services-container .service {
    max-width: 300px;
  }
}

/* Tablets (<= 768px) */
@media (max-width: 768px) {
    #services .servebox {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-direction: column;
  }

  #services .servebox h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  #services .servebox .services-container {
    justify-content: center;
  }

  #services .servebox .services-container .service {
    flex: 1 1 100%;
    max-width: 500px;
  }

  #services .servebox .services-container .service .img {
    height: 220px;
  }

  #services .servebox .services-container .service h3 {
    font-size: 1rem;
  }

  #services .servebox .services-container .service p {
    font-size: 0.95rem;
  }
}

/* Small Phones (<= 480px) */
@media (max-width: 480px) {
  #services {
    padding: 30px 5%;
  }

  #services .servebox h1 {
    font-size: 1.8rem;
  }

  #services .servebox .services-container {
    flex-direction: column;
    align-items: center;
  }

  #services .servebox .services-container .service {
    max-width: 100%;
    padding: 15px;
  }

  #services .servebox .services-container .service .img {
    height: 200px;
  }

  #services .servebox .services-container .service p {
    font-size: 0.9rem;
  }

  #services .bookings .book-button button {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
}

/* ==================== OFFERS-SECTION ==================== */
#offers .offerbox {
  padding: 0px 10% 100px;
}

#offers .offerbox h1 {
  font-size: 3rem;
  margin-bottom: 80px;
  text-align: center;
}

#offers .offerbox .offercontainer .offercontent .offer {
  padding: 10px;
  width: 300px;
  display: flex;
  flex-direction: column;
  /* margin-bottom: 10px; */
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  height: 249px;
  justify-content: space-between;
  text-align: center;
}

#offers .offerbox .offercontainer .offercontent .offer h3 {
  /* text-align: center; */
  margin-bottom: 10px;
  color: #ff0036;
}

#offers .offerbox .offercontainer .offercontent .offer h4 {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 10px;
}

#offers .offerbox .offercontainer .rescontent .one {
  text-align: center;
}

/* SXM */
#offers .offerbox .sxm {
  margin-bottom: 100px;
}

/* #offers .offerbox .sxm .offercontent {
    display: flex;
    justify-content: center;
    gap: 20px;
} */

#offers .offerbox .sxm h2{
  text-align: center;
  padding-bottom: 50px;
}

#offers .offerbox .sxm .offercontent .offerboxS1 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

#offers .offerbox .sxm .offercontent .offer h4:nth-child(4) {
  font-size: 1rem;
  /* text-align: center; */
  margin-bottom: 10px;
  font-weight: 300;
}

/* BARTHS */
#offers .offerbox .barths h2{
  padding-bottom: 50px;
  text-align: center;
}

#offers .offerbox .barths .offercontent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#offers .offerbox .barths .offercontent .offerboxS2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 700px;
    justify-content: center;
}

#offers .offerbox .barths .offercontent .offer h4:nth-child(5) {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 10px;
  font-weight: 300;
}

#offers .offerbox .barths .offercontent .offer ul {
  list-style: none;
  padding: 0;
}

#offers .offerbox .barths .offercontent .rescontent {
  width: 300px;
  padding: 10px;
}


#offers .offerbox .barths img {
  width: 500px;
  border-radius: 10px;
}

/* ==================== RESPONSIVE O-SECTION ==================== */

/* -------- Laptop (≤ 1024px) -------- */
@media (max-width: 1024px) {
  #offers .offerbox {
    padding: 0 5% 80px;
  }

  /* SXM */
  #offers .offerbox .sxm .offercontent .offerboxS1 {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
  }

  /* BARTHS */
  #offers .offerbox .barths .offercontent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

  #offers .offerbox .barths .offercontent .offerboxS2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  /* #offers .offerbox .barths .offercontent {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  } */

  /* #offers .offerbox .sxm .offercontent,
  #offers .offerbox .barths {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  } */

  #offers .offerbox .barths .offercontent .rescontent {
  text-align: center;
  padding: 0px;
}

  #offers .offerbox .offercontainer .offercontent .offer {
    width: 280px;
  }

  #offers .offerbox .barths img {
    width: 400px;
  }

  #offers .offerbox h1 {
    font-size: 2.5rem;
  }
}

/* -------- Tablet (≤ 768px) -------- */
@media (max-width: 768px) {
  #offers .offerbox {
    padding: 0 5% 60px;
  }

  #offers .offerbox h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  /* Stack offers vertically for SXM */
  #offers .offerbox .sxm .offercontent .offerboxS1 {
    display: flex;
    flex-wrap: wrap;
  }

  #offers .offerbox .offercontainer .offercontent .offer {
    width: 90%;
    max-width: 350px;
  }

  /* Barth section stacks vertically */
  #offers .offerbox .barths {
    /* flex-direction: column;
    align-items: center; */
  }

  #offers .offerbox .barths .offercontent .offerboxS2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 650px;
  }

  #offers .offerbox .barths img {
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
  }

  #offers .offerbox .barths .offercontent .rescontent {
    width: 100%;
    text-align: center;
  }

  #offers .offerbox .barths .offercontent .rescontent h3 {
    margin-top: 15px;
  }
}

/* -------- Phone (≤ 480px) -------- */
@media (max-width: 480px) {
  #offers .offerbox {
    padding: 0 20px 50px;
  }

  #offers .offerbox h1 {
    font-size: 1.8rem;
  }

  #offers .offerbox .offercontainer .offercontent .offer {
    /* width: 100%; */
    padding: 15px;
    font-size: 0.9rem;
  }

  #offers .offerbox .offercontainer .offercontent .offer h3 {
    font-size: 1.1rem;
  }

  #offers .offerbox .offercontainer .offercontent .offer h4 {
    font-size: 0.9rem;
  }

  #offers .offerbox .offercontainer .offercontent .offer p {
    font-size: 0.85rem;
    text-align: center;
  }

  #offers .offerbox .barths img {
    width: 100%;
    height: auto;
  }

  .rescontent p,
  .rescontent h3 {
    font-size: 0.9rem;
  }
}


/* ==================== TRANSFERS-SECTION ==================== */
#transfers .transfer-content {
  padding: 0 10% 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#transfers .transfer-content h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  text-align: center;
}

#transfers .transfer-content .transfer-container {
  display: grid;
  /* justify-content: center; */
  /* text-align: center; */
  padding: 0 0 50px;
}

#transfers .transfer-content .transfer-container .Prime-transfer {
  /* padding: 10px; */
  border-radius: 10px;
  /* text-align: center; */
  margin-bottom: 20px;
}

#transfers .transfer-content .transfer-container .Prime-transfer h3 {
  color: #ff0036;
}

#transfers .transfer-content .transfer-container .Prime-transfer h4 {
  font-size: 1.2rem;
  /* text-align: center; */
  margin-top: 10px;
  font-weight: 300;
}

#transfers .transfer-content .transfer-container .transfer-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

#transfers .transfer-content .transfer-container .transfer-box .transfer {
  /* padding: 10px; */
  border-radius: 10px;
  /* text-align: center; */
}

#transfers .transfer-content .transfer-container .transfer-box .transfer h3 {
  color: #ff0036;
}

#transfers .transfer-content .transfer-container .transfer-box .transfer h4 {
  font-size: 1.2rem;
  /* text-align: center; */
  margin-top: 10px;
  font-weight: 300;
}

#transfers .transfer-content .otrans {
  margin-bottom: 20px;
}

#transfers .transfer-content .otrans h3 {
  /* text-align: center; */
  margin-bottom: 20px;
  color: #ff0036;
}

#transfers .transfer-content .otrans .other {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

#transfers .transfer-content .t-wrap button{
  background-color: transparent;
  padding: 8px 15px;
  border: 1px solid #ff0036;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  color: #ff0036;
}

#transfers .transfer-content .t-wrap button:hover {
  background-color: #ff0036;
  color: #fff;
  transition: 0.3s;
}

/* ==================== RESPONSIVE T-SECTION ==================== */

/* -------- Laptop (≤ 1024px) -------- */
@media (max-width: 1024px) {
  #transfers .transfer-content {
    flex-direction: column;
    padding: 0 5% 80px;
  }

  #transfers .transfer-content h1 {
    font-size: 2.5rem;
  }

  #transfers .transfer-content .transfer-container {
    text-align: center;
  }

  #transfers .transfer-content .transfer-container .transfer-box {
    justify-content: space-between;
    gap: 20px;
  }

  #transfers .transfer-content .otrans .other {
    
  }

  #transfers .transfer-content .otrans .other ul {
    width: 45%;
  }

  #transfers .transfer-content .t-wrap button {
    font-size: 1rem;
  }
}

/* -------- Tablet (≤ 768px) -------- */
@media (max-width: 768px) {
  #transfers .transfer-content {
    flex-direction: column;
    align-items: center;
    padding: 0 5% 60px;
  }

  #transfers .transfer-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  /* Stack transfers vertically */
  #transfers .transfer-content .transfer-container .transfer-box {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  #transfers .transfer-content .transfer-container .Prime-transfer,
  #transfers .transfer-content .transfer-container .transfer-box .transfer {
    width: 90%;
    max-width: 350px;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    margin-left: auto;
    margin-right: auto;
  }

  #transfers .transfer-content .otrans {
    text-align: center;
  }

  #transfers .transfer-content .otrans .other {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #transfers .transfer-content .otrans .other ul {
    width: 90%;
  }

  #transfers .transfer-content .t-wrap button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

/* -------- Phone (≤ 480px) -------- */
@media (max-width: 480px) {
  #transfers .transfer-content {
    padding: 0 20px 50px;
  }

  #transfers .transfer-content h1 {
    font-size: 1.8rem;
  }

  #transfers .transfer-content .transfer-container {
    text-align: center;
  }

  #transfers .transfer-content .transfer-container .Prime-transfer,
  #transfers .transfer-content .transfer-container .transfer-box .transfer {
    /* width: 100%; */
    font-size: 0.9rem;
    padding: 12px;
    margin-left: auto;
    margin-right: auto;
  }

  #transfers .transfer-content .transfer-container .Prime-transfer h3,
  #transfers .transfer-content .transfer-container .transfer-box .transfer h3 {
    font-size: 1rem;
  }

  #transfers .transfer-content .transfer-container .Prime-transfer h4,
  #transfers .transfer-content .transfer-container .transfer-box .transfer h4 {
    font-size: 1rem;
    margin-top: 8px;
  }

  #transfers .transfer-content .otrans h3 {
    font-size: 1.1rem;
  }

  #transfers .transfer-content .otrans .other ul {
    width: 100%;
    padding-left: 15px;
  }

  #transfers .transfer-content .otrans .other li {
    font-size: 0.9rem;
  }

  #transfers .transfer-content .t-wrap button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
  }
}


/* ======================================== ABOUT-PAGE ======================================== */

/* ==================== ABOUT-SECTION ==================== */
.about-section {
  background-color: var(--bg-light);
  padding: 60px 5%;
  color: var(--text-dark);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-container h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--primary);
}

/* ===== Layout ===== */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== Text Area ===== */
.about-text p {
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-text h3 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  border-left: 4px solid #ff0036;
  padding-left: 10px;
}

.airline-list {
  columns: 2;
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.airline-list li {
  padding: 4px 0;
}

/* ===== Contact Info ===== */
.contact-info {
  background-color: #fff;
  border-left: 4px solid var(--primary);
  padding: 15px 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ===== Agent Info ===== */
.agent-info {
  font-style: italic;
  color: #555;
}

/* ===== Side Contact Box ===== */
.about-contact {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px 25px;
  text-align: center;
  position: sticky;
  top: 30px;
}

.about-contact h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.about-contact p {
  margin-bottom: 25px;
}

.about-contact button {
  background-color: transparent;
  padding: 8px 15px;
  border: 1px solid #ff0036;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  color: #ff0036;
}

.about-contact button:hover {
  background-color: #ff0036;
  color: #fff;
  transition: 0.3s;
}

/* ==========================
   RESPONSIVE DESIGN
========================== */

/* 📱 Mobile (≤480px) */
@media (max-width: 480px) {
  .about-container h1 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .airline-list {
    columns: 1;
  }

  .about-contact {
    position: static;
  }
}

/* 📟 Tablet (≤768px) */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .airline-list {
    columns: 2;
  }

  .about-contact {
    margin-top: 20px;
    position: static;
  }
}

/* 💻 Laptop (≥1024px) */
@media (min-width: 1024px) {
  .about-container h1 {
    font-size: 2.8rem;
  }

  .about-text p {
    font-size: 1.05rem;
  }
}



/* ======================================== BOOKING-PAGE ======================================== */

/* ==================== B-FORM-SECTION ==================== */
.booking-section {
  padding: 50px 5%;
}

.booking-form {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.booking-form h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.form-section {
  margin-bottom: 40px;
}

.form-section h3 {
  color: #ff0036;
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  background-color: #f0f0f0;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  background-color: #fff;
  box-shadow: 0 0 0 2px var(--primary);
}

/* ========== BUTTON ========== */
.submit-wrap {
  text-align: center;
  margin-top: 30px;
}

.btn {
  background-color: #fff;
  color: #ff0036;
  padding: 14px 40px;
  border: 1px solid #ff0036;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #ff0036;
  color: #fff;
}

/* Anti-spam hidden field */
.hp {
  display: none;
}

/* ==================== RESPONSIVE BOOKING-SECTION ==================== */

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .booking-form {
    padding: 25px;
  }

  .booking-form h1 {
    font-size: 1.8rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .submit-btn {
    width: 100%;
  }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  .booking-form {
    padding: 30px;
  }

  .booking-form h1 {
    font-size: 2rem;
  }

  .form-grid {
    /* grid-template-columns: 1fr 1fr; */
  }

  .submit-btn {
    width: auto;
    padding: 12px 30px;
  }
}

/* Laptop (≥1024px) */
@media (min-width: 1024px) {
  .booking-form h1 {
    font-size: 2.4rem;
  }

  .form-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ==================== CONDITIONS-SECTION ==================== */
#Booking #b-conditions {
  padding: 0 10% 100px;
}

#Booking #b-conditions .conditionsbox {
  text-align: left;
}

#Booking #b-conditions .conditionsbox h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  text-align: center;
  padding: 100px 0 50px;
}

#Booking #b-conditions .conditionsbox .conditions-container .condition-wrap .condition {
  width: 500px;
  margin-bottom: 20px;
}

#Booking #b-conditions .conditionsbox .conditions-container .condition-wrap .condition h3 {
  color: #ff0036;
}

#Booking #b-conditions .conditionsbox .conditions-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#Booking #b-conditions .conditionsbox .conditions-container .condimage img {
  width: 450px;
  border-radius: 10px;
}

/* ==================== RESPONSIVE B-SECTION ==================== */

/* -------- Laptop (≤ 1024px) -------- */
@media (max-width: 1024px) {
  #Booking #b-conditions {
    padding: 0 8% 80px;
  }

  #Booking #b-conditions .conditionsbox h1 {
    font-size: 2.5rem;
  }

  #Booking #b-conditions .conditionsbox .conditions-container {
    gap: 40px;
  }

  #Booking #b-conditions .conditionsbox .conditions-container .condition-wrap .condition {
    width: 100%;
    max-width: 450px;
  }

  #Booking #b-conditions .conditionsbox .conditions-container .condimage img {
    width: 380px;
  }
}

/* -------- Tablet (≤ 768px) -------- */
@media (max-width: 768px) {
  #Booking #b-conditions {
    padding: 0 5% 60px;
  }

  #Booking #b-conditions .conditionsbox h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  #Booking #b-conditions .conditionsbox .conditions-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  #Booking #b-conditions .conditionsbox .conditions-container .condition-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #Booking #b-conditions .conditionsbox .conditions-container .condition-wrap .condition {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
  }

  #Booking #b-conditions .conditionsbox .conditions-container .condimage img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
  }

  #Booking #b-conditions .conditionsbox .conditions-container .condition-wrap .condition p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* -------- Phone (≤ 480px) -------- */
@media (max-width: 480px) {
  #Booking #b-conditions {
    padding: 0 20px 50px;
  }

  #Booking #b-conditions .conditionsbox h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  #Booking #b-conditions .conditionsbox .conditions-container {
    flex-direction: column;
    gap: 20px;
  }

  #Booking #b-conditions .conditionsbox .conditions-container .condition-wrap {
    text-align: left;
  }

  #Booking #b-conditions .conditionsbox .conditions-container .condition-wrap .condition {
    width: 100%;
    margin-bottom: 15px;
  }

  #Booking #b-conditions .conditionsbox .conditions-container .condition-wrap .condition h3 {
    font-size: 1.1rem;
  }

  #Booking #b-conditions .conditionsbox .conditions-container .condition-wrap .condition p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  #Booking #b-conditions .conditionsbox .conditions-container .condimage img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}


/* ==================== CANCELLATION-SECTION ==================== */
#Booking #b-cancellation {
  padding: 0 10% 100px;
}

#Booking #b-cancellation .cancellationbox {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}

#Booking #b-cancellation .cancellationbox h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  text-align: right;
}

#Booking #b-cancellation .cancellationbox .cancellation-container .cancellation {
  width: 750px;
  margin-bottom: 20px;
}

#Booking #b-cancellation .cancellationbox .cancellation-container .cancellation h3 {
  color: #ff0036;
}

#Booking #b-cancellation .cancellationbox .cancellation-container .cancellation ul li {
  list-style: circle;
}

/* ==================== RESPONSIVE CANCELLATION SECTION ==================== */

/* -------- Laptop (≤ 1024px) -------- */
@media (max-width: 1024px) {
  #Booking #b-cancellation {
    padding: 0 8% 80px;
  }

  #Booking #b-cancellation .cancellationbox h1 {
    font-size: 2.5rem;
  }

  #Booking #b-cancellation .cancellationbox .cancellation-container .cancellation {
    width: 100%;
    max-width: 650px;
  }
}

/* -------- Tablet (≤ 768px) -------- */
@media (max-width: 768px) {
  #Booking #b-cancellation {
    padding: 0 6% 70px;
  }

  #Booking #b-cancellation .cancellationbox {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #Booking #b-cancellation .cancellationbox h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  #Booking #b-cancellation .cancellationbox .cancellation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  #Booking #b-cancellation .cancellationbox .cancellation-container .cancellation {
    width: 100%;
    max-width: 600px;
  }

  #Booking #b-cancellation .cancellationbox .cancellation-container .cancellation h3 {
    font-size: 1.2rem;
  }

  #Booking #b-cancellation .cancellationbox .cancellation-container .cancellation ul li,
  #Booking #b-cancellation .cancellationbox .cancellation-container .cancellation p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* -------- Phone (≤ 480px) -------- */
@media (max-width: 480px) {
  #Booking #b-cancellation {
    padding: 0 20px 50px;
  }

  #Booking #b-cancellation .cancellationbox {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  #Booking #b-cancellation .cancellationbox h1 {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 20px;
  }

  #Booking #b-cancellation .cancellationbox .cancellation-container {
    gap: 20px;
  }

  #Booking #b-cancellation .cancellationbox .cancellation-container .cancellation {
    width: 100%;
  }

  #Booking #b-cancellation .cancellationbox .cancellation-container .cancellation h3 {
    font-size: 1.1rem;
  }

  #Booking #b-cancellation .cancellationbox .cancellation-container .cancellation ul li,
  #Booking #b-cancellation .cancellationbox .cancellation-container .cancellation p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

/* ======================================= CONTACT ======================================= */
  /* ==================== CONTACT FORM SECTION ==================== */
#Contact\ form {
  padding: 100px 10%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#Contact\ form .form-wrap {
  width: 100%;
  max-width: 800px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#Contact\ form .form-wrap h2 {
  font-size: 2.5rem;
  color: #ff0036;
  text-align: center;
  margin-bottom: 30px;
}

#Contact\ form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#Contact\ form form .C-input {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#Contact\ form form .ci-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#Contact\ form form .ci {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#Contact\ form form input,
#Contact\ form form select,
#Contact\ form form textarea {
  background-color: #ececec;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
  color: #333;
  width: 100%;
  box-sizing: border-box;
}

#Contact\ form form textarea {
  resize: none;
}

#Contact\ form form input:focus,
#Contact\ form form select:focus,
#Contact\ form form textarea:focus {
  outline: none;
  border: 1px solid #ff0036;
  background-color: #f9f9f9;
  transition: 0.2s;
}

#Contact\ form form button {
  align-self: center;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #ff0036;
  color: #ff0036;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#Contact\ form form button:hover {
  background-color: #ff0036;
  color: #fff;
}

/* ==================== RESPONSIVE CONTACT FORM ==================== */

/* -------- Laptop (≤ 1024px) -------- */
@media (max-width: 1024px) {
  #Contact\ form {
    padding: 80px 8%;
  }

  #Contact\ form .form-wrap {
    padding: 30px;
  }

  #Contact\ form .form-wrap h2 {
    font-size: 2.2rem;
  }
}

/* -------- Tablet (≤ 768px) -------- */
@media (max-width: 768px) {
  #Contact\ form {
    padding: 70px 6%;
  }

  #Contact\ form .form-wrap {
    padding: 25px;
  }

  #Contact\ form .form-wrap h2 {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  #Contact\ form form .ci-wrap {
    flex-direction: column;
    gap: 10px;
  }

  #Contact\ form form input,
  #Contact\ form form select,
  #Contact\ form form textarea {
    font-size: 0.95rem;
  }

  #Contact\ form form button {
    font-size: 0.95rem;
    padding: 8px 16px;
  }
}

/* -------- Phone (≤ 480px) -------- */
@media (max-width: 480px) {
  #Contact\ form {
    padding: 50px 20px;
  }

  #Contact\ form .form-wrap {
    padding: 20px;
  }

  #Contact\ form .form-wrap h2 {
    font-size: 1.8rem;
  }

  #Contact\ form form input,
  #Contact\ form form select,
  #Contact\ form form textarea {
    font-size: 0.9rem;
    padding: 8px;
  }

  #Contact\ form form button {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}



/* ======================================== FOOTER ======================================== */
#footer_main {
  background-color: #fff;
  color: #222222;
  padding: 50px 5% 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

#footer_main h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #ff0036;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* text-align: center; */
}

/* --- Contact, Links, Service Sections --- */
.footer-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-wrap li {
  margin-bottom: 0.5rem;
}

.footer-wrap a {
  color: #222222;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-wrap a:hover {
  color: #00bcd4;
}

/* --- Bottom Section --- */
.f-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.f-social a {
  margin-right: 0.75rem;
  font-size: 1.8rem;
  transition: color 0.3s;
}

.f-social a:hover {
  color: #ff0036;
}

.f-agent a {
  display: inline-block;
  background: #ececec;
  color: #0d1117;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.3s;
}

.f-agent a:hover {
  background: #ff0036;
  color: #fff;
}

/* --- Footer Bottom Text --- */
#footer_main > p {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #90a4ae;
}

/* ==================== RESPONSIVE FOOTER ==================== */

/* 📱 Phone (max 480px) */
@media (max-width: 480px) {
  #footer_main {
    padding: 2rem 1rem;
  }
  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mfc {
  padding-bottom: 20px;
  }

  .f-bottom {
    flex-direction: column;
    align-items: center;
  }
  .f-agent a {
    text-align: center;
  }
}

/* 📱📗 Tablet (max 768px) */
@media (max-width: 768px) {
  .footer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

.mfc {
  padding-bottom: 20px;
}

  .f-bottom {
    flex-direction: column;
    align-items: center;
  }
}

/* 💻 Laptop (max 1024px) */
@media (max-width: 1024px) {
  .footer-wrap {
    display: flex;
    flex-direction: column;
  }
}