* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  overflow-y: scroll;
  scrollbar-color: #183b72 lightblue;
}
body {
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  margin-top: 2rem;
}
section {
  padding: 1rem 0;
}
.main-container {
  opacity: 0;
  animation: fadeInAnimation 1s ease-in forwards;
}
@keyframes fadeInAnimation {
  to {
    opacity: 1;
  }
}
.containers {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
/* ===== NAVIGATION BAR ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.5rem;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.logo {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.logo img {
  height: 5rem;
}
.logo:hover {
  transform: scale(1.2);
}
.ham-menu {
  height: 50px;
  width: 50px;
  margin-left: 1px;
  position: relative;
  display: inline-block;
}
.ham-menu span {
  height: 5px;
  width: 100%;
  background-color: #183b72;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-in-out;
}
.ham-menu span:nth-child(1) {
  top: 25%;
}
.ham-menu span:nth-child(3) {
  top: 75%;
}
.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
  opacity: 0;
}
.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.off-screen-menu {
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: fixed;
  z-index: 100;
  top: -100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.off-screen-menu a {
  color: #183b72;
  font-size: 1.5rem;
}
.off-screen-menu li {
  padding: 1rem;
}
.off-screen-menu ul {
  justify-content: center;
  align-items: center;
  text-align: center;
  height: auto;
  width: 100%;
  top: 4.5rem;
  right: 0;
  padding: 1rem;
  margin-bottom: 0;
  list-style-type: none;
}
.off-screen-menu.active {
  top: 6rem;
}
/* ==== HOME SECTION ==== */
#home {
  padding: 0;
  padding-top: 10rem;
  height: 20vh;
  overflow: hidden;
  position: relative;
}
.slider img {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}
.slider img.active {
  opacity: 1;
  z-index: 1;
}
/* ABOUT SECTION */
.section-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #2c3e97;
  padding: 1rem 0;
}
.about-container {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  gap: 1.5rem;
}
.about-left {
  font-size: 1rem;
  text-align: justify;
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: justify;
}
.about-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.about-card h3 {
  margin-top: 0;
  color: #2c3e97;
  font-size: 1.1rem;
}
.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: left;
}
.partners .jad-logo {
  height: auto;
  max-width: 12rem;
}
/* AFFILIATION */
#affiliation img {
  border-radius: 5px;
  height: auto;
  width: 100%;
}

/* === PACKAGES === */
#package {
  text-align: center;
  background-image: url("images/offer_bg.png");
  background-size: cover;
  background-position: center;
  padding: 2rem 0.5rem;
}
.offers {
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
  border-bottom: 1px solid;
  gap: 1.5rem;
  line-height: 1.6;
}
.offer-left {
  font-size: 0.8rem;
  font-weight: bold;
}
.offer-left .color {
  color: #2c3e97;
}
.offer-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: start;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
}
@media screen and (max-width: 320px) {
  .offer-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    font-size: 1rem;
  }
}
.offer-right i {
  color: #4f83ff;
}
.offer-right div {
  text-align: justify;
}
#bookNOW {
  margin-top: 1rem;
  background-color: red;
  border: none;
  border-radius: 15px;
  padding: 0.5rem;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#bookNOW:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#bookNOW a {
  text-decoration: none;
  color: white;
}
#package .add-info {
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  display: inline-block;
  font-weight: bold;
}
#package h2 {
  font-size: 2.2rem;
  background: linear-gradient(to left, #183b72, #4f83ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.2rem;
}
.package-container {
  gap: 2rem;
  justify-content: center;
}
.scroller {
  background: transparent;
  backdrop-filter: blur(2px);
  padding: 1rem;
  display: grid;
  gap: 1.5rem;
  grid-auto-flow: column;
  grid-auto-columns: 80%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1025px) {
  .scroller {
    grid-auto-columns: 21%;
  }
  .about-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.5rem;
  }
}
.packages-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}
.packages-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.packages-card img:hover {
  transform: scale(1.05);
}
.package-container h3 {
  color: #183b72;
  text-decoration: underline;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.packages-card p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #333;
}
.packages-card button {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: none;
  font-weight: bold;
  background: #183b72;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.packages-card button:hover {
  background: #4f83ff;
}

/* === CONTACT SECTION === */
#contact {
  height: auto;
  background-image: url("images/contact_bg.png");
  background-position: 5%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: white;
  line-height: 1.6;
  color: var(--light-text);
}
#contact .containers {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  text-align: justify;
}
.contact-left {
  width: 90%;
  max-height: 800px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
}
.contact-left h2 {
  color: #4f83ff;
  font-size: 1.5rem;
  text-shadow: 3px 2px 2px rgba(0, 0, 0, 0.448);
}
.contact-left h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.map-container iframe {
  height: 220px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.contact-left p {
  font-size: var(--fs-500);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-left i {
  font-size: 1rem;
  width: 30px;
}
/* Social/Facebook */
#contact .facebook-logo {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
}
#contact .facebook-logo i {
  margin-right: 5px;
}
/* === CONTACT FORM === */
#contact .containers {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 80%;
  max-width: 500px;
  padding: 1rem;
  margin: auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.contact-right h2 {
  color: #2c3e97;
  padding-bottom: 1.5rem;
}
.contact-right form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-right input,
.contact-right textarea {
  width: 80%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: Arial, Helvetica, sans-serif;
}
.contact-right input:focus,
.contact-right textarea:focus {
  border-color: #183b72;
  outline: none;
}
.contact-right textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-right button {
  width: 100%;
  padding: 1rem;
  background-color: #2c3e97;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-right button:hover {
  background-color: #183b72;
}
.contact-left h2 {
  color: #4f83ff;
}
/* === FOOTER === */
#footer {
  background-color: #183b72;
  font-size: 0.8rem;
  text-align: center;
  color: white;
  padding: 0.5rem 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  /* HEADER */
  nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
  }

  #hamburger-nav,
  .off-screen-menu {
    display: none;
  }
  .logo {
    padding-left: 2rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
  }

  .logo img {
    height: 5.5rem;
  }
  .logo:hover {
    transform: scale(1.2);
  }
  .nav-links {
    display: flex;
    padding-right: 2rem;
    gap: 1.5rem;
  }
  .nav-links a {
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    color: #183b72;
    transition: color 0.3s;
  }
  .nav-links a:hover {
    color: #4f83ff;
  }
  /* HOME SECTION */
  #home {
    padding: 0;
    padding-top: 5rem;
    height: 100vh;
    overflow: hidden;
    /* position: relative; */
  }
  .slider {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
  }
  .slider img.active {
    opacity: 1;
    z-index: 1;
  }
  /* ABOUT SECTION */
  .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e97;
  }
  .about-container {
    display: flex;
    flex-direction: column;
  }
  .about-left {
    font-size: large;
    text-align: justify;
  }
  .about-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: justify;
  }
  .about-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .about-card h3 {
    margin-top: 0;
    color: #2c3e97;
    font-size: 1.1rem;
  }
  .partners {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: left;
  }
  .partners .jad-logo {
    height: auto;
    max-width: 12rem;
  }
  /* AFFILIATION */
  #affiliation img {
    width: 100%;
    border-radius: 50px;
  }
  /* PACKAGES */
  #package {
    text-align: center;
    background-image: url("images/offer_bg.png");
    background-size: cover;
    background-position: center;
  }
  .offers {
    display: grid;
    grid-template-columns: auto auto;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid;
  }
  .offer-left {
    font-weight: bold;
  }
  .offer-left .color {
    color: #2c3e97;
  }
  .offer-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: right;
    font-size: 1.5rem;
    font-weight: 600;
  }
  .offer-right i {
    color: #4f83ff;
  }

  .offer-right div {
    text-align: justify;
  }
  #bookNOW {
    background-color: red;
    border: none;
    border-radius: 15px;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  #bookNOW:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  #bookNOW a {
    text-decoration: none;
    color: white;
  }

  #package .add-info {
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
    font-weight: bold;
  }

  #package h2 {
    font-size: 2.2rem;
    background: linear-gradient(to left, #183b72, #4f83ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
  }

  .package-container {
    gap: 2rem;
    justify-content: center;
  }

  .scroller {
    background: transparent;
    backdrop-filter: blur(2px);
    padding: 1rem;
    display: grid;
    gap: 1.5rem;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  @media (min-width: 1025px) {
    .scroller {
      grid-auto-columns: 21%;
    }
    .about-container {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 0.5rem;
    }
  }

  .packages-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }

  .packages-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

  .packages-card img:hover {
    transform: scale(1.05);
  }

  .package-container h3 {
    color: #183b72;
    text-decoration: underline;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .packages-card p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #333;
  }

  .packages-card button {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: none;
    font-weight: bold;
    background: #183b72;
    color: white;
    cursor: pointer;
    transition: 0.3s;
  }
  .packages-card button:hover {
    background: #4f83ff;
  }
  /* === CONTACT FORM === */
  #contact .containers {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .contact-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1rem;
    color: white;
    width: 90%;
    line-height: 1.6;
  }
  #contact .facebook-logo {
    color: white;
    font-size: 1rem;
  }
  #contact h2 {
    font-size: 1.5rem;
  }
  #contact h3 {
    font-size: 1.2rem;
  }
  .contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 2rem;
    background-color: white;
    backdrop-filter: blur(1px);
    border-radius: 12px;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.185);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  .contact-right h2 {
    color: #2c3e97;
    padding-bottom: 1.5rem;
  }
  .contact-right form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact-right input,
  .contact-right textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  .contact-right input:focus,
  .contact-right textarea:focus {
    border-color: #183b72;
    outline: none;
  }
  .contact-right textarea {
    resize: vertical;
    min-height: 150px;
  }
  .contact-right button {
    width: 100%;
    padding: 1rem;
    background-color: #2c3e97;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .contact-right button:hover {
    background-color: #183b72;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #desktop-nav {
    padding-left: 0;
  }
  #home {
    height: 70vh;
  }
  .slider img {
    top: 2.5rem;
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  .slider #img1 {
    object-position: 5%;
  }
  .slider #img2 {
    object-position: 80%;
  }
  .slider #img3 {
    object-position: 10%;
  }
  .slider #img4 {
    object-position: 100%;
  }
  .slider #img5 {
    object-position: center;
  }
  .slider #img6 {
    object-position: 5%;
  }
  .section-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e97;
    padding: 1rem;
  }
  .about-container {
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    gap: 1.5rem;
  }
  .about-left {
    font-size: 1rem;
    text-align: justify;
  }
  .about-right {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: justify;
  }
  .about-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .about-card h3 {
    margin-top: 0;
    color: #2c3e97;
    font-size: 1.1rem;
  }
  .partners {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: left;
  }
  .partners .jad-logo {
    height: auto;
    max-width: 12rem;
  }
  /* AFFILIATION */
  #affiliation img {
    border-radius: 5px;
    height: auto;
    width: 100%;
  }
  #package {
    padding: 0.5rem;
  }
  .offers {
    grid-template-columns: auto;
    gap: 1rem;
    padding: 1rem;
  }
  .offer-left {
    font-size: 1rem;
  }
  .offer-right {
    font-size: 1rem;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0 8rem;
  }
  .scroller {
    width: 100%;
    overflow-x: scroll; /* horizontal scrolling */
    overflow-y: hidden; /* no vertical overflow */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */

    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    grid-auto-columns: 41%;
  }
  .scroller::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .packages-card {
    height: auto;
    width: 40vh;
  }
}
