/* Google font imports */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Preahvihear&display=swap");

/* * === START OF SECTION STYLES === */
/* * --- Header and footer --- */
header {
  width: 100%;
  background-color: var(--puffy-color-puffy-white);
  position: sticky;
  top: 0;
  z-index: 100;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 93.8125rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: 5.625rem;
  box-sizing: border-box;
}

/* Logo styling */
.header__logo {
  display: flex;
  align-items: center;
}

.header__logo a {
  display: block;
}

.header__logo img {
  height: 4.375rem;
  width: auto;
  display: block;
}

/* Navigation menu */
.header__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

.header__menu li a {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 1rem;
  color: var(--puffy-text-color);
  text-decoration: none;
  transition: background-color 0.4s ease;
  display: block;
  position: relative;
  padding: 0.1875rem 0;
}

/* Underline hover effect */
.header__menu li a::after {
  content: "";
  position: absolute;
  display: block;
  background-color: var(--puffy-color-orange);
  height: 0.1875rem;
  width: 0;
  right: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.header__menu li a:hover::after {
  width: 100%;
}

.header__menu li a:hover {
  color: var(--puffy-color-orange);
}

/* Active page styling */
.header__menu li a.active,
.header__menu li a[aria-current="page"] {
  color: var(--puffy-color-orange);
}

/* Permanent underline for active page */
.header__menu li a.active::after,
.header__menu li a[aria-current="page"]::after {
  width: 100%;
}

/* Join us button styling */
.header__menu-link--join {
  display: flex !important;
  align-items: center;
  gap: 0.375rem;
  background-color: var(--puffy-color-orange);
  color: var(--puffy-color-puffy-white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2rem;
  white-space: nowrap;
}

.header__menu-link--join:hover {
  transition: background-color 0.4s ease;
  background-color: var(--puffy-color-orange--dark);
}

/* Reset underline for join us button */
.header__menu-link--join::after {
  display: none !important;
}

.header__menu-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

/* Mobile menu toggle styling */
.header__menu-mobile {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}

.header__menu-mobile img {
  width: 1.75rem;
  height: auto;
}

/* Hide the checkbox */
#mobile-menu-toggle {
  display: none;
}

/* Hide close icon by default */
.menu-close {
  display: none;
}

@media (max-width: 64em) {
  /* 1024px */
  .header__nav {
    min-height: 5.3125rem; /* 85px */
  }

  .header__menu li a {
    font-size: 0.875rem; /* 14px */
  }

  .header__logo img {
    height: 3.75rem;
  }
}

@media (max-width: 48em) {
  /* 768px */
  .header__nav {
    min-height: 4.0625rem; /* 65px */
    max-height: 5.3125rem; /* 85px */
    padding: 0 0.875rem;
    align-items: center;
    position: relative;
  }

  .header__menu-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101; /* Ensure it's above the menu */
  }

  /* Hide menu by default on mobile */
  .header__menu {
    display: none;
    position: absolute;
    top: 100%; /* Position right below the header */
    left: 0;
    width: 100%;
    background-color: var(--puffy-color-puffy-white);
    flex-direction: column;
    padding: 1rem 0;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    z-index: 100;
  }

  .header__menu li {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
  }

  .header__menu li a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: inline-block;
    width: auto;
  }

  .header__menu-link--join {
    margin: 0.5rem auto;
    display: inline-flex !important;
  }

  .header__logo img {
    height: 3.25rem;
  }

  /* Show the menu when checkbox checked */
  #mobile-menu-toggle:checked ~ nav .header__menu {
    display: flex !important;
  }

  /* Toggle between icons when checkbox checked */
  #mobile-menu-toggle:checked ~ nav .header__menu-mobile .menu-open {
    display: none;
  }

  #mobile-menu-toggle:checked ~ nav .header__menu-mobile .menu-close {
    display: block;
  }
}
/* Footer */
footer {
  background-color: var(--puffy-color-navy--light);
  color: var(--puffy-color-puffy-white);
  width: 100%;
  position: relative;
  padding: 0;
  margin: 0;
}

/* Orange line at top of footer */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--puffy-color-orange);
}

.footer__container {
  max-width: 1501px;
  margin: 0 auto;
  padding: 5.78125rem 22.278% 0; /*458px on 2056px */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  position: relative;
}

/* Logo/brand column stays on the left */
.footer__brand {
  grid-column: 1;
  justify-self: start;
}

/* Center the quick links column*/
.footer__links {
  grid-column: 2;
  justify-self: center;
  text-align: left;
  position: relative;
  left: 50px; /* Move quick links to the right a bit */
}

.footer__related {
  grid-column: 3;
  justify-self: center;
  text-align: left;
}

.footer__bottom {
  padding: 0 22.278% 3rem; /* Same container padding */
  height: 9.7rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer__logos {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.footer__logo-img {
  max-width: 200px;
  height: auto;
}

.footer__tagline {
  color: var(--puffy-color-puffy-white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer__section h4 {
  font-family: var(--manrope);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0;
  margin-bottom: 15px;
  color: var(--puffy-color-puffy-white);
}

.footer__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__section li {
  margin-bottom: 10px;
}

.footer__section a {
  color: var(--puffy-color-puffy-white);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer__section a:hover {
  color: var(--puffy-color-orange);
}

/* Active page styling for footer */
.footer__section a.active {
  color: var(--puffy-color-orange);
}

.footer__copyright,
.footer__disclaimer {
  margin-top: 30px;
  color: var(--puffy-color-puffy-white);
  font-size: 1rem;
  line-height: 1.5;
}

.footer__disclaimer {
  line-height: 1.5;
  margin-top: 15px;
}

@media (max-width: 64em) {
  /* 1024px */
  .footer__container,
  .footer__bottom {
    padding-left: 5%;
    padding-right: 5%;
  }

  .footer__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer__brand,
  .footer__links,
  .footer__related {
    margin: 0;
    position: static;
    flex-basis: auto;
  }

  .footer__logo-img {
    max-width: 150px;
  }
}

@media (max-width: 48em) {
  /* 768px*/
  /*logos on left, links below in a row */
  .footer__container {
    display: block;
    padding-top: 3rem;
  }

  .footer__brand {
    display: block;
    margin: 0 0 2rem 0;
    text-align: left;
    max-width: 200px;
  }

  .footer__links,
  .footer__related {
    display: inline-block;
    vertical-align: top;
    margin: 0 1rem 0 0;
    text-align: left;
  }

  .footer__section h4 {
    font-size: 1rem;
  }

  .footer__section li a {
    font-size: 0.9rem;
  }

  .footer__logo-img {
    max-width: 180px;
  }
}

@media (max-width: 64em) {
  /* 1024px */
  .footer__container,
  .footer__bottom {
    padding-left: 5%;
    padding-right: 5%;
  }

  .footer__container {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
  }

  .footer__links {
    grid-column: 1;
    justify-self: center;
  }

  .footer__related {
    grid-column: 2;
    justify-self: center;
  }
}

@media (max-width: 48em) {
  /* 768px */
  .footer__container {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .footer__brand,
  .footer__links,
  .footer__related {
    grid-column: 1;
    justify-self: center;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 250px;
  }

  .footer__bottom {
    height: auto;
    padding-bottom: 2rem;
  }
}
/* * --- Homepage --- */
/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 9/16 */
  background-image: url("assets/hero-home.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Place image above background but below other elements */
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.hero__video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* Dim the video */
  z-index: 3;
}

.hero__video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
  /* opacity: 0; */
  animation: videoFadeInOut 130s ease-in-out forwards;
}

@keyframes videoFadeInOut {
  /* 0% {
    opacity: 0;
  }
  1% {
    opacity: 0;
  }
  1.5% {
    opacity: 1;
  } */
  /* 3% {
    opacity: 1;
  } */
  95% {
    opacity: 1;
  } /* Stay visible until near the end */
  98% {
    opacity: 0;
  } /* Fade out */
  100% {
    opacity: 0;
  }
}

/* @keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
} */

.hero__content {
  position: absolute;
  top: 30%;
  left: 10%;
  transform: translateY(-50%);
  color: var(--puffy-color-puffy-white);
  text-align: left;
  z-index: 4; /* Place content above video and dimming layer */
  max-width: 50rem; /* 800px */
  animation: opacity 1.25s ease;
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero__content h1 {
  font-size: 4.375rem; /* 70px */
  font-weight: 700; /* bold? */
  margin-bottom: 2rem;
  line-height: 1.2;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
  font-family: var(--manrope);
  color: var(--puffy-color-puffy-white);
}

.hero__button {
  display: inline-block;
  padding: 0.8rem 2rem;
  /* background-color: var(--puffy-color-puffy-white);
  color: var(--puffy-color-navy--light); */

  color: var(--puffy-color-puffy-white);

  border: 2px solid var(--puffy-color-puffy-white);
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  /* text-transform: uppercase; */
  transition: all 0.3s ease;
}

.hero__button:hover {
  /* background-color: hsla(0, 0%, 0%, 0); */
  /* color: var(--puffy-color-puffy-white); */

  background-color: var(--puffy-color-puffy-white);
  color: var(--puffy-color-navy--light);
}

/* more responsiveness than last css */
@media (max-width: 62em) {
  /* 992px */
  .hero_content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 48em) {
  /* 768px */
  .hero__content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }

  .hero__content h1 {
    font-size: 2.5rem;
  }

  .hero__content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 30em) {
  /* 480px */
  .hero__content h1 {
    font-size: 2rem;
  }

  .hero__content p {
    font-size: 1rem;
  }

  .hero__button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Testimonials */
.testimonials {
  width: 100%;
  max-width: 75%;
  margin: 0 auto;
  padding: 4rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials__header {
  margin-bottom: 2rem;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.testimonials__label {
  letter-spacing: 2px;
  /* font-family: var(--manrope); */
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--puffy-color-orange);
}

.testimonials__title {
  font-family: var(--manrope);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0;
}

.testimonials__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.testimonials__card {
  padding: 2rem;
  display: grid;
  gap: 1rem;
  background-color: var(--puffy-color-puffy-white);
  box-shadow: 0px 12px 12px #00000015;
  border-radius: 10px;
  /* cursor: pointer; */
  transition: all 0.3s ease;
}

.testimonials__card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 4px #00000030, 0px 12px 12px #00000015;
}

.testimonials__quote i {
  font-size: 2.5rem;
  color: var(--puffy-color-orange);
}

.testimonials__text {
  font-size: 1rem;
  font-weight: 500;
  /* line-height: 1.5; */
}

.testimonials__rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.testimonials__rating i {
  color: var(--puffy-color-amber);
  font-size: 1rem;
}

.testimonials__divider {
  width: 40px;
  margin: 0.5rem auto;
  border: none;
  border-top: 2px solid var(--puffy-color-navy--light);
  opacity: 0.2;
}

.testimonials__avatar {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 100%;
  border: 1px solid var(--puffy-color-orange);
  /* padding: 5px; */
}

.testimonials__name {
  font-size: 0.9rem;
  font-family: var(--manrope);
  /* font-size: 1rem; */
  font-weight: 700;
  color: var(--puffy-text-color);
  transition: 0.3s;
  margin-top: -0.5rem;
}

.testimonials__card:hover .testimonials__name {
  color: var(--puffy-color-orange);
}

/* responsive */
@media (width < 56.25em) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (width < 37.5em) {
  .testimonials {
    max-width: 90%;
  }

  .testimonials__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }

  .testimonials__title {
    font-size: 1.5rem;
  }

  .testimonials__card {
    padding: 1.5rem;
  }
}

/* Homepage Experience Cambodia */
.experience-cambodia {
  position: relative;
  width: 100%;
  min-height: 500px;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.experience-cambodia__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.experience-cambodia__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.experience-cambodia__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.experience-cambodia__content-wrapper {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 700px;
}

.experience-cambodia__text-container {
  color: var(--puffy-color-puffy-white);
  padding: 1rem 0;
}

.experience-cambodia__title {
  font-family: var(--manrope);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--puffy-color-puffy-white);
}

.experience-cambodia__text {
  font-family: var(--inter);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--puffy-color-puffy-white);
}

.experience-cambodia__button {
  background-color: var(--puffy-color-orange);
  color: var(--puffy-color-puffy-white);
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.experience-cambodia__button:hover {
  background-color: var(--puffy-color-orange--dark);
}

/* Responsive*/
@media (max-width: 48em) {
  .experience-cambodia {
    padding: 2.5rem 0;
  }

  .experience-cambodia__title {
    font-size: 2.5rem;
  }

  .experience-cambodia__text {
    font-size: 1rem;
  }

  .experience-cambodia__button {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 30em) {
  .experience-cambodia__title {
    font-size: 2rem;
  }

  .experience-cambodia__text {
    font-size: 0.95rem;
  }

  .experience-cambodia__content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* introducing Air Combs */
.introducing-acb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6rem 8%;
  max-width: 112.5rem;
  margin: 0 auto;
  background-color: var(--puffy-color-puffy-white);
  overflow: hidden;
  position: relative;
}

.introducing-acb__image-container {
  width: 38%;
  position: relative;
  margin-right: 2%;
}

.introducing-acb__image-wrapper {
  position: relative;
  width: 100%;
}

.introducing-acb__image {
  width: 100%;
  height: auto;
  display: block;
}

.introducing-acb__content {
  width: 50%;
  padding-left: 3rem;
}

.introducing-acb__label {
  font-size: 1rem;
  color: var(--puffy-color-orange);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.introducing-acb__title {
  font-size: 3rem;
  font-family: var(--manrope);
  color: var(--puffy-color-navy--light);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.introducing-acb__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--puffy-text-color);
  margin-bottom: 1.5rem;
}

.introducing-acb__button {
  display: inline-block;
  background-color: var(--puffy-color-orange);
  color: var(--puffy-color-puffy-white);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.introducing-acb__button:hover {
  background-color: var(--puffy-color-orange--dark);
}

/* responsive */
@media (min-width: 112.5em) {
  .introducing-acb {
    padding: 6rem 24rem;
  }
}

@media (max-width: 75em) {
  .introducing-acb {
    padding: 5rem 5%;
  }

  .introducing-acb__content {
    padding-left: 3rem;
  }

  .introducing-acb__title {
    font-size: 3rem;
  }
}

@media (max-width: 62em) {
  .introducing-acb {
    flex-direction: column;
    padding: 4rem 2rem;
  }

  .introducing-acb__image-container {
    width: 70%;
    margin-bottom: 3rem;
  }

  .introducing-acb__content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}

@media (max-width: 36em) {
  .introducing-acb {
    padding: 3rem 1.5rem;
  }

  .introducing-acb__image-container {
    width: 90%;
  }

  .introducing-acb__title {
    font-size: 2.5rem;
  }
}

/* Gallery */
.gallery {
  background-color: var(--puffy-color-navy--light);
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.gallery__header-wrapper {
  max-width: 71.25rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.gallery__container {
  width: 75%;
  margin: 0 auto;
  position: relative;
}

.gallery__header {
  color: var(--puffy-color-puffy-white);
  font-family: var(--manrope);
  font-weight: 700;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 40px;
  text-align: left;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
  padding-top: 20px;
}

.gallery__item {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 4px 4px #00000030, 0px 12px 12px #00000015;
  transition: transform 0.3s ease;
}

.gallery__item:hover {
  transform: scale(1.03);
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Medium screens 2 columns */
@media (max-width: 56.25em) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }

  .gallery__container {
    width: 85%;
  }
}

/* Mobile screens */
@media (max-width: 48em) {
  .gallery {
    padding: 40px 0;
  }

  .gallery__header-wrapper {
    padding: 0 15px;
  }
}

@media (max-width: 37.5em) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(12, 1fr);
  }

  .gallery__container {
    width: 90%;
  }

  .gallery__header {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
}

/* Partners */
.partners {
  max-width: 71.25rem;
  margin: 0 auto;
  padding: 60px 10px;
  position: relative;
  overflow-x: hidden;
}

.partners__header {
  font-family: var(--manrope);
  font-size: 2rem;
  font-weight: 700;
  color: var(--puffy-color-navy--light);
  margin-bottom: 40px;
  margin-top: 0;
  text-align: left;
  position: static;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 40px 0;
  background-color: var(--puffy-color-puffy-white);
  white-space: nowrap;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0),
    var(--puffy-color-puffy-white)
  );
}

.logos:after {
  right: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    var(--puffy-color-puffy-white)
  );
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 25s slide infinite linear;
  width: auto;
}

.logos-slide img {
  height: 80px;
  margin: 0 40px;
  vertical-align: middle;
}

/*  Responsive Adjustments */
@media (max-width: 48em) {
  .partners {
    padding: 40px 15px;
  }

  .logos-slide img {
    height: 45px; /* Smaller logos on mobile */
    margin: 0 25px; /* Less spacing between logos */
  }

  .logos:before,
  .logos:after {
    width: 100px; /* Smaller fade gradient for mobile */
  }
}

@media (max-width: 30em) {
  .logos-slide img {
    height: 35px;
    margin: 0 10px;
  }

  .logos:before,
  .logos:after {
    width: 70px;
  }
}

/* .logos {
  overflow: hidden;
  box-sizing: border-box;
} */

/* * --- Experience Cambodia page --- */
/* Hero section styling */
.experience-cambodia-hero {
  position: relative;
  width: 100%;
  height: 21.875rem;
  overflow: hidden;
}

.experience-cambodia-hero__image {
  position: absolute;
  width: 100%;
  height: 100%;
}

.experience-cambodia-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-cambodia-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  text-align: center;
}

.experience-cambodia-hero__title {
  color: var(--puffy-color-puffy-white);
  font-family: var(--manrope);
  font-size: 3rem;
  font-weight: 700;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
  margin: 0;
  padding: 0 20px;
}

/* Content sections styling */
.experience-cambodia-container {
  max-width: 71.25rem;
  margin: 0 auto;
  padding: 0 10px;
}

.experience-cambodia-section {
  margin-bottom: 1.75rem;
}

.experience-cambodia-section-header {
  width: 100%;
  margin: 0;
  padding: 3rem 0 0 0;
  color: var(--puffy-text-color);
  font-family: var(--manrope);
}

.experience-cambodia-section-header {
  display: flex;
  align-items: center;
}

.experience-cambodia-section-icon {
  margin-right: 10px;
  width: 32px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-cambodia-section-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.experience-cambodia-section-content {
  line-height: 1.5;
  color: var(--puffy-text-color);
}

.experience-cambodia-content p {
  margin-bottom: 1.75rem;
}

/* Weather widget */
.experience-cambodia-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 30px;
}

.experience-cambodia-section-content {
  flex: 1 1 60%;
  min-width: 300px;
}

.experience-cambodia-weather-widget {
  flex: 0 1 300px;
  align-self: flex-start;
  position: sticky;
  top: 20px;
}

/* Sightseeing section styling */
.sightseeing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 80px; /* space between grid and footer */
}

.sightseeing-item {
  background-color: var(--puffy-color-puffy-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 12px 12px #00000015;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sightseeing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 4px #00000030, 0px 12px 12px #00000015;
}

.sightseeing-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.sightseeing-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.sightseeing-image.primary {
  opacity: 1;
}

.sightseeing-image.secondary {
  opacity: 0;
}

.sightseeing-item:hover .sightseeing-image.primary {
  opacity: 0;
}

.sightseeing-item:hover .sightseeing-image.secondary {
  opacity: 1;
}

.sightseeing-description {
  padding: 20px;
}

.sightseeing-description h4 {
  color: var(--puffy-color-orange, #1a365d);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: var(--manrope);
  font-size: 1.25rem;
  font-weight: 600;
}

.sightseeing-description p {
  margin: 0;
  color: var(--puffy-text-color);
  font-size: 0.95rem;
  /* font-weight: 500; */
  line-height: 1.5;
}

/* Repsonsiveness */
@media (max-width: 75em) {
  .experience-cambodia-container {
    max-width: 90%;
  }
}

@media (max-width: 62em) {
  .sightseeing-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}
@media (max-width: 48em) {
  .experience-cambodia-container {
    padding: 0 15px;
  }

  .experience-cambodia-hero__title {
    font-size: 2rem;
  }

  .experience-cambodia-section-title {
    font-size: 1.75rem;
  }

  .experience-cambodia-content-wrapper {
    flex-direction: column;
  }

  .experience-cambodia-weather-widget {
    margin: 0 auto;
    position: relative;
    order: -1;
  }
}
@media (max-width: 36em) {
  .experience-cambodia-hero {
    height: 15rem;
  }

  .experience-cambodia-section-content {
    padding: 20px 0;
  }
  .sightseeing-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
  }
}

/* * --- Air Combs page --- */
.air-combs-hero {
  position: relative;
  width: 100%;
  height: 21.875rem;
  overflow: hidden;
}

.air-combs-hero__image {
  position: absolute;
  width: 100%;
  height: 100%;
}

.air-combs-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.air-combs-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
}

/* Air Combs Content Section */
.air-combs-content {
  padding: 4rem 8%;
  max-width: 112.5rem;
  margin: 0 auto;
  background-color: var(--puffy-color-puffy-white);
}

.air-combs-content__container {
  display: flex;
  flex-direction: column;
  max-width: 71.25rem;
  margin: 0 auto;
}

.air-combs-content__intro {
  line-height: 1.5;
  color: var(--puffy-text-color);
  /* margin-bottom: 2rem; */
}

.air-combs-content__heading {
  font-family: var(--manrope);
  font-size: 2rem;
  color: var(--puffy-color-navy--light);
  margin: 1.5rem 0;
  font-weight: 700;
}

.air-combs-content__text {
  /* line-height: 1.5; */
  color: var(--puffy-text-color);
  margin-bottom: 1.5rem;
}

.air-combs-hero__title {
  color: var(--puffy-color-puffy-white);
  font-family: var(--manrope);
  /* font-size: 1.875rem; */
  font-size: 3rem;
  font-weight: 700;
  padding: 0 20px;
}

/* .air-combs-content__subheading {
  font-family: var(--manrope);
  font-size: 1.5rem;
  color: var(--puffy-color-navy--light);
  margin: 1.5rem 0 1rem;
  font-weight: 600;
} */

/* .air-combs-content__quote {
  border-left: 4px solid var(--puffy-color-orange);
  padding: 0.5rem 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  background: rgba(255, 153, 0, 0.05);
} */

/* list styling */
.air-combs-content__list {
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.6;
}

.air-combs-content__list li {
  margin-bottom: 0.5rem;
}

/* Wikipedia-style sidebar */
.air-combs-content__container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  max-width: 71.25rem;
  margin: 0 auto;
}

.air-combs-content__main {
  flex: 1;
  min-width: 0;
}

.air-combs-content__heading {
  font-family: var(--manrope);
  font-size: 2rem;
  color: var(--puffy-color-navy--light);
  margin: 1.5rem 0;
  font-weight: 700;
}

.wiki-sidebar {
  width: 18.75rem;
  font-size: 0.9rem;
  flex-shrink: 0;
  align-self: flex-start;
}

.wiki-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--puffy-text-color);
  background-color: var(--puffy-color-puffy-white);
  margin-bottom: 1.5rem;
}

.wiki-table th {
  background-color: var(--puffy-color-puffy-white);
  text-align: left;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--puffy-text-color);
  font-family: var(--manrope);
  font-weight: 700;
  color: var(--puffy-text-color);
  vertical-align: top;
}

.wiki-table td {
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--puffy-text-color);
  vertical-align: top;
}

.wiki-table__title {
  text-align: center !important;
  padding: 0.5rem;
}

.wiki-table__title-main {
  font-size: 1.1rem;
  font-weight: 600;
}

.wiki-table__title-khmer {
  font-family: var(--preahvihear);
  font-size: 0.9rem;
  font-weight: normal;
  margin-top: 0.2rem;
}

.wiki-table__logo {
  text-align: center;
  padding: 0.5rem;
}

.wiki-table__logo img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.wiki-table__image {
  text-align: center;
  padding: 0.5rem;
}

.wiki-table__image img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.wiki-table__caption {
  font-size: 0.8rem;
  color: var(--puffy-text-color);
  margin-top: 0.3rem;
}

/* .wiki-table__half {
  width: 50%;
  text-align: center !important;
} */

/* More compact tables */
/* .wiki-table th,
.wiki-table td {
  padding: 0.2rem 0.4rem;
  line-height: 1.5;
}

.wiki-table__logo,
.wiki-table__image {
  padding: 0.3rem;
}

.wiki-table__title {
  padding: 0.3rem;
}

.wiki-table__caption {
  margin-top: 0.2rem;
  line-height: 1.5;
} */

.codes-header th,
.codes-data td {
  text-align: center;
}

.wiki-table {
  margin-bottom: 1rem;
}

/* So the audio player doesn't mess up the whole damn thing */
.wiki-table audio {
  width: 100%;
  height: 30px;
  outline: none;
}

/* Responsive adjustments */
@media (max-width: 75em) {
  .air-combs-hero__title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  .air-combs-content {
    padding: 3rem 5%;
  }
}

@media (max-width: 62em) {
  .air-combs-content__container {
    flex-direction: column;
  }

  .wiki-sidebar {
    width: 100%;
    max-width: 500px;
    margin: 1.5rem auto 0;
  }
}

@media (max-width: 48em) {
  .air-combs-hero__title {
    font-size: 2rem;
  }
}

@media (max-width: 36em) {
  .air-combs-content {
    padding: 2.5rem 1.5rem;
  }

  .air-combs-content__heading {
    font-size: 1.75rem;
  }

  .air-combs-content__intro {
    font-size: 1rem;
  }
}

/* * --- About Us page --- */
.about__container {
  max-width: 71.25rem;
  margin: 0 auto;
  /* width: calc(100% - 20px); */
  padding: 0 10px;
  /* box-sizing: border-box; */
}

.about__container body {
  color: var(--puffy-text-color);
}

.about__section {
  margin-bottom: 1.75rem;
}

.about__section-header h2 {
  font-weight: 700;
}

.about__section-header-wrapper {
  background-color: var(--puffy-color-navy--light);
  width: 100%;
  margin: 0;
  padding: 15px 0;
  color: var(--puffy-color-puffy-white);
  font-family: var(--manrope);
}

.about__section-header {
  display: flex;
  align-items: center;
}

.about__section-icon {
  margin-right: 10px;
  width: 32px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__section-title {
  margin: 0;
  font-size: 2rem;
}

.about__section-content {
  padding: 30px 0;
  line-height: 1.5;
}

.about__section-content ul {
  list-style: none;
}
/* Get fontawesome plane icon for bullet points */
.about__section-content li:before {
  content: "\f072";
  font-family: "FontAwesome";
  display: inline-block;
  /* margin-right: 5px; */
}

@media (max-width: 48em) {
  .about__container {
    padding: 0 15px;
  }
}

/* * --- Destinations --- */
.destinations {
  margin: 0 auto;
  /* max-width: 71.25rem; */
}

.destinations__nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.destinations__nav-button {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--puffy-color-puffy-white);
  color: var(--puffy-color-orange);
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  border: 2px solid var(--puffy-color-orange);
  transition: all 0.3s;
  /* width: 16rem; */
}

.destinations__nav-button--active {
  background-color: var(--puffy-color-orange);
  color: var(--puffy-color-puffy-white);
}

.destinations__nav-button:hover {
  background-color: var(--puffy-color-orange);
  color: var(--puffy-color-puffy-white);
}

.destinations__section-title {
  font-family: var(--manrope);
  font-size: 2rem;
  font-weight: 700;
  color: var(--puffy-color-orange);
  margin: 30px 0 20px 0;
  text-align: left;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}

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

.destinations__section-header-wrapper {
  background-color: var(--puffy-color-navy--light);
  width: 100%;
  margin: 0 0 20px 0;
  padding: 15px 0;
  color: var(--puffy-color-puffy-white);
}

.destinations__country-title {
  max-width: 71.25rem;
  padding: 0;
  font-family: var(--manrope);
  font-size: 1.5rem;
  font-weight: 600;
  max-width: 71.25rem;
  margin: 0 auto;
}

.destinations__country-title .khmer {
  font-family: var(--preahvihear);
  margin-left: 10px;
  font-weight: 400;
}

.destinations__city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
  background-color: transparent;
  max-width: 71.25rem;
  margin: 0 auto;
}

.destinations__city-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.destinations__city-image {
  width: 180px;
  height: 240px;
  margin-bottom: 10px;
  overflow: hidden;
}

.destinations__city-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destinations__city-name {
  font-family: var(--manrope);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.destinations__city-name-khmer {
  font-family: var(--preahvihear);
  font-size: 1rem;
  color: var(--puffy-text-color);
}

.destinations__footer {
  /* text-align: center; */
  margin-top: 40px;
  padding: 20px;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 62em) {
  .destinations__city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .destinations__section-title {
    padding-left: 10px;
  }
  .destinations__country-title {
    padding-left: 10px;
  }
}

@media (max-width: 48em) {
  .destinations__city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destinations__section-title {
    padding-left: 10px;
  }
  .destinations__country-title {
    padding-left: 10px;
  }
}

@media (max-width: 36em) {
  .destinations__city-grid {
    grid-template-columns: 1fr;
  }
  .destinations__section-title {
    padding-left: 10px;
  }
  .destinations__country-title {
    padding-left: 10px;
  }
}

/* * --- Fleet --- */
/* Fleet styles */
.fleet__container {
  max-width: 71.25rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.fleet__title {
  font-family: var(--manrope);
  font-size: 2rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.fleet__section {
  margin-bottom: 1.75rem;
}

.fleet__section-header-wrapper {
  background-color: var(--puffy-color-navy--light);
  width: 100%;
  margin: 0;
  padding: 0.9375rem 0;
  color: var(--puffy-color-puffy-white);
  font-family: var(--manrope);
}

#comber-logo {
  background-color: var(--puffy-color-comber);
}

.fleet__section-header {
  display: flex;
  align-items: center;
}

.fleet__section-icon {
  margin-right: 1.625rem;
  width: 10rem;
  height: 3.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.fleet__section-title {
  margin: 0;
  font-size: 2rem;
}

.fleet__section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 71.25rem;
  margin: 0 auto;
}

.fleet__section:nth-child(3) .fleet__aircraft-image,
.fleet__section:nth-child(4) .fleet__aircraft-image {
  height: 300px;
}

.fleet__section:nth-child(4) .fleet__aircraft-details h4 {
  color: var(--puffy-color-comber);
}

.fleet__aircraft-card {
  /* border: 1px solid #ddd; */
  box-shadow: 0px 12px 12px #00000015;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.fleet__aircraft-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 4px #00000030, 0px 12px 12px #00000015;
}

.fleet__aircraft-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Aircraft count indicator */
.fleet__aircraft-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--puffy-color-navy--light);
  color: var(--puffy-color-puffy-white);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--manrope);
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 1;
}

/* special Comber */
.fleet__section:nth-child(4) .fleet__aircraft-count {
  background-color: var(--puffy-color-comber);
}

.fleet__aircraft-details {
  padding: 1rem;
}

.fleet__aircraft-details h4 {
  font-size: 1.25rem;
  font-family: var(--manrope);
  font-weight: 600;
  color: var(--puffy-color-orange);
}

.fleet__section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.fleet__section th,
.fleet__section td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.fleet__section th {
  background-color: #f2f2f2;
  font-weight: bold;
  font-family: var(--manrope);
}

.fleet__section tr:hover {
  background-color: #f9f9f9;
}

.fleet__wide-aircraft {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 71.25rem;
  padding: 0 1rem;
}

.fleet__wide-aircraft .fleet__aircraft-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 48em) {
  .fleet__section-grid {
    grid-template-columns: 1fr;
  }

  .fleet__wide-aircraft {
    grid-template-columns: 1fr;
  }
}

/* * --- FAQ --- */
.faq__container {
  max-width: 71.25rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq__title {
  font-family: var(--manrope);
  font-size: 2rem;
  font-weight: 700;
  /* padding: 1.25rem 0; */
}

.faq__section {
  margin-bottom: 1.75rem;
}

.faq__section-header h2 {
  font-weight: 700;
}

.faq__section-header-wrapper {
  background-color: var(--puffy-color-navy--light);
  width: 100%;
  margin: 0;
  padding: 0.9375rem 0;
  color: var(--puffy-color-puffy-white);
  font-family: var(--manrope);
}

.faq__section-header {
  display: flex;
  align-items: center;
}

.faq__section-icon {
  margin-right: 0.625rem;
  width: 2rem;
  height: 2.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Styling for FA plane icon */
.faq__section-icon .fa-plane {
  color: var(--puffy-color-puffy-white);
}

.faq__section-title {
  margin: 0;
  font-size: 2rem;
}

/* Accordion */
.accordion {
  max-width: 71.25rem;
  margin: 1.875rem auto;
  padding: 0;
  width: 100%;
}

.accordion li {
  list-style: none;
  width: 100%;
  margin-bottom: 0.625rem;
  background: var(--puffy-color-puffy-white);
  padding: 0.625rem;
  box-shadow: 0px 12px 12px #00000015;
  border-radius: 0.25rem;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.accordion li:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 4px #00000030, 0px 12px 12px #00000015;
}

.accordion li label {
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* font-family: var(--manrope); */
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--puffy-color-navy--light);
  border-left: var(--puffy-color-orange) 6px solid;
  transition: color 0.3s ease;
}

.accordion li label strong {
  flex: 1;
  padding-right: 0.5rem;
}

.accordion li label:hover {
  color: var(--puffy-color-orange);
}

.accordion li label:hover i {
  color: var(--puffy-color-orange);
}

.accordion li label i {
  color: var(--puffy-color-navy--light);
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 1rem;
  margin-left: 1rem;
}

.accordion input[type="checkbox"] {
  display: none;
}

.faq__content {
  padding: 0 0.625rem;
  line-height: 1.625rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

/* Content bullet points */
.faq__content ul {
  list-style: none;
  padding-left: 1.25rem;
}

.faq__content ul li {
  box-shadow: none;
  padding: 0.25rem 0;
  margin-bottom: 0;
  background: transparent;
}

.faq__content ul li:hover {
  transform: none;
  box-shadow: none;
}

.faq__content ul li:before {
  content: "\f072";
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 0.5rem;
  color: var(--puffy-color-navy--light);
}

.faq__content p a {
  color: var(--puffy-color-orange);
  text-decoration: none;
}

.accordion input[type="checkbox"]:not(:checked) ~ label i {
  transform: rotate(0deg);
}

.accordion input[type="checkbox"]:checked ~ label i {
  transform: rotate(90deg);
}

.accordion input[type="checkbox"]:checked ~ .faq__content {
  max-height: 25rem;
}

/* Contact Section Styles */
.contact-section {
  background-color: var(--puffy-color-puffy-white);
  border-radius: 8px;
  box-shadow: 0px 4px 4px #00000030, 0px 12px 12px #00000015;
  padding: 3rem 0;
  margin: 3rem auto;
  max-width: 71.25rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .contact-section:hover {
  transform: translateY(-12px);
  box-shadow: 0px 12px 12px #00000015;
} */

.contact-section__container {
  max-width: 40rem;
  margin: 0 auto;
}

.contact-section__icon {
  font-size: 3rem;
  color: var(--puffy-color-navy--light);
  margin-bottom: 1.5rem;
}

.contact-section__title {
  font-family: var(--manrope);
  font-size: 2rem;
  font-weight: 700;
  /* color: var(--puffy-color-navy--light); */
  color: var(--puffy-color-orange);
  margin-bottom: 1rem;
}

.contact-section__text {
  font-size: 1.125rem;
  /* font-weight: 500; */
  margin-bottom: 2rem;
  color: var(--puffy-text-color);
}

.contact-section__button {
  display: inline-block;
  background-color: var(--puffy-color-orange);
  color: var(--puffy-color-puffy-white);
  /* font-family: var(--inter); */
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-section__button:hover {
  background-color: var(--puffy-color-orange--dark);
}

/* Responsive styles */
@media (max-width: 64em) {
  .faq__section-title {
    font-size: 1.5rem;
  }

  .accordion li label {
    font-size: 1rem;
  }

  .contact-section__title {
    font-size: 1.75rem;
  }

  .contact-section__text {
    font-size: 1rem;
  }

  .contact-section__icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 48em) {
  .faq__container {
    padding: 0 1rem;
  }

  .faq__title {
    font-size: 1.5rem;
    text-align: center;
  }

  .faq__section-title {
    font-size: 1.25rem;
  }

  .faq__section-icon {
    width: 1.5rem;
    height: 2rem;
    font-size: 1.125rem;
  }

  .accordion input[type="checkbox"]:checked ~ .faq__content {
    max-height: 37.5rem;
  }

  .contact-section {
    padding: 2rem 1rem;
    margin: 2rem auto;
  }

  .contact-section__title {
    font-size: 1.5rem;
  }

  .contact-section__icon {
    font-size: 2rem;
  }
}

@media (max-width: 36em) {
  .faq__container {
    padding: 0 0.75rem;
  }

  .accordion li label {
    padding: 0.5rem;
    font-size: 0.9375rem;
  }

  .faq__content {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }

  .contact-section__button {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/* * --- Contact page --- */
.contact {
  height: auto;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 71.25rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Left side form section */
.contact__form {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  width: 380px;
  max-width: 100%;
}

/* Title section */
.contact__title {
  margin-bottom: 8px;
  width: 100%;
}

.contact__title-text {
  color: var(--puffy-color-navy--light);
  font-family: var(--manrope);
  font-weight: 700;
  font-size: 3em;
  margin-bottom: 5px;
  margin-top: 0;
  word-wrap: break-word;
}

.contact__title-line {
  border: none;
  height: 5px;
  background-color: var(--puffy-color-orange);
  border-radius: 5px;
  margin: 0;
  max-width: 100%;
}

/* Form labels */
.contact__label {
  color: var(--puffy-color-orange);
  font-family: var(--manrope);
  font-weight: 600;
  font-size: 1.125em;
  margin-bottom: 4px;
  margin-top: 0;
  width: 100%;
  padding-right: 10px;
  box-sizing: border-box;
}

/* Form inputs */
.contact__input {
  width: 100%; /* Changed from fixed width to 100% */
  height: 50px;
  border: 2px solid var(--puffy-color-grey);
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: var(--puffy-text-color);
  border-radius: 5px;
  transition: border 0.3s ease;
  margin-bottom: 6px;
  font-family: var(--inter);
  font-size: 1rem;
  box-sizing: border-box;
}

.contact__input:focus {
  border: 2px solid var(--puffy-color-orange);
}

.contact__input::placeholder {
  color: var(--puffy-color-grey--dark);
}

/* Textarea */
.contact__input--textarea {
  height: 110px;
  padding-top: 15px;
}

/* Submit button */
.contact__button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-family: var(--inter);
  font-size: 1rem;
  font-weight: 500;
  color: var(--puffy-color-puffy-white);
  border: none;
  border-radius: 5px;
  background: var(--puffy-color-orange);
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 4px;
  width: auto;
  box-sizing: border-box;
}

.contact__button:hover {
  background: var(--puffy-color-orange--dark);
}

/* Right side image */
.contact__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 2.5rem;
}

.contact__image {
  width: 500px;
  max-width: 100%;
  border-radius: 5%;
  overflow: hidden;
  box-shadow: 0px 12px 12px #00000015;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact__image:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 4px #00000030, 0px 12px 12px #00000015;
}

/* Responsive */
@media (max-width: 71.25em) {
  .contact {
    max-width: 100%;
    padding: 0 2rem;
  }

  .contact__image {
    width: 450px;
  }
}

@media (max-width: 62.5em) {
  .contact {
    flex-direction: column;
    height: auto;
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .contact__form {
    width: 100%;
    max-width: 500px;
    align-items: stretch;
    padding: 0 5px;
  }

  .contact__image-container {
    display: none; /* Hide on medium screens and below */
    margin-left: 0;
  }
}

@media (max-width: 48em) {
  .contact {
    padding: 2.5rem 1.5rem;
  }

  .contact__title-text {
    font-size: 2.5em;
  }

  .contact__form {
    max-width: calc(100% - 10px);
  }
}

@media (max-width: 30em) {
  .contact {
    padding: 2rem 1rem;
  }

  .contact__title-text {
    font-size: 2em;
  }

  .contact__form {
    gap: 8px;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .contact__label {
    font-size: 1em;
    padding-right: 5px;
  }

  .contact__input {
    height: 45px;
    padding-left: 15px;
    width: 100%;
  }

  .contact__input--textarea {
    height: 100px;
  }

  .contact__button {
    padding: 12px 25px;
    width: 100%;
    justify-content: center;
  }
}

/* * --- Pilots page --- */
.pilots {
  margin: 0 auto;
  /* max-width: 71.25rem; */
  max-width: 75vw;
}

.pilots__title {
  color: var(--puffy-color-navy--light);
  font-family: var(--manrope);
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.125rem;
  margin-bottom: 1.875rem;
}

.pilots-hub__title {
  font-family: var(--manrope);
  font-size: 2rem;
  font-weight: 700;
  color: var(--puffy-color-orange);
}

.pilots__nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.pilots__nav-button {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--puffy-color-puffy-white);
  color: var(--puffy-color-orange);
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  border: 2px solid var(--puffy-color-orange);
  transition: all 0.3s;
  /* width: 16rem; */
}

.pilots__nav-button--active {
  background-color: var(--puffy-color-orange);
  color: var(--puffy-color-puffy-white);
}

.pilots__nav-button:hover {
  background-color: var(--puffy-color-orange);
  color: var(--puffy-color-puffy-white);
}

.pilot-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  background-color: var(--puffy-color-navy--light);
}

.pilots-hub table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 5px;
  margin-bottom: 0;
  white-space: nowrap;
}

/* hopefully scrollable on mobile */
.pilots-hub-table__wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  background-color: white;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}

.pilots-hub th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--puffy-color-grey);
  min-width: 80px;
  /* border-bottom: 1px solid var(--puffy-color-navy--light); */
}

.pilots-hub tbody tr:hover {
  background-color: rgba(0, 64, 128, 0.05);
}

.pilots-hub th {
  font-family: var(--manrope);
  font-weight: 700;
  /* background-color: var(--puffy-color-navy--light); */
  /* background-color: var(--puffy-color-grey); */
  /* color: var(--puffy-color-puffy-white); */
}

.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 12px;
  font-family: var(--manrope);
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 5px;
  color: var(--puffy-color-puffy-white);
  background-color: var(--puffy-color-orange);
}

/* Responsive styles */
@media (max-width: 62em) {
  /* 992px */
  .pilots {
    max-width: 100%;
    padding: 0 15px;
  }

  .pilots__title {
    font-size: 1.75rem;
    line-height: 2.75rem;
  }
}

@media (max-width: 48em) {
  /* 768px */
  .pilots__title {
    font-size: 1.5rem;
    line-height: 2.25rem;
    margin-bottom: 1.5rem;
  }

  .pilots-hub__title {
    font-size: 1.3rem;
  }

  /* No column hiding - use horizontal scroll instead */
  .pilots-hub th,
  .pilots-hub td {
    padding: 10px 12px; /* Slightly reduce padding */
  }
}

@media (max-width: 36em) {
  /* 576px */
  .pilots__title {
    font-size: 1.3rem;
    line-height: 2rem;
    margin-bottom: 1.25rem;
  }

  .pilots-hub__title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  /* Further reduce padding but keep all columns */
  .pilots-hub th,
  .pilots-hub td {
    padding: 8px 10px;
  }

  .pilot-img {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }

  /* Add subtle indicator that table is scrollable */
  .pilots-hub-table__wrapper::after {
    content: "→";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--puffy-color-navy--light);
    opacity: 0.5;
    animation: fadeInOut 2s infinite;
    pointer-events: none;
  }

  @keyframes fadeInOut {
    0%,
    100% {
      opacity: 0;
    }
    50% {
      opacity: 0.5;
    }
  }
}

/* Optional: Add a shadow to indicate scrollability */
.pilots-hub-table__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 15px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.pilots-hub-table__wrapper:hover::before {
  opacity: 1;
}

/* * ---Join us registration page --- */
/* Site specific so it doesn't break the other stuff */
.registration *,
.registration *::before,
.registration *::after {
  box-sizing: border-box;
}

.registration input,
.registration select,
.registration textarea,
.registration button,
.registration .registration__form-control {
  font-family: var(--inter);
}

.registration .registration__form-header h2,
.registration .registration__form-header p,
.registration .registration__form-group label {
  font-family: var(--inter);
}

/* Registration container */
.registration {
  padding: 2rem 0;
  background-color: var(--puffy-color-puffy-white);
}

.registration .registration__container {
  width: 100%;
  margin: 0 auto;
  background-color: var(--puffy-color-puffy-white);
  display: flex;
  overflow: hidden;
  border-radius: 0;
  /* box-shadow: none; */
  box-shadow: 0px 4px 4px #00000030, 0px 12px 12px #00000015;
}

/* Left image */
.registration .registration__image {
  flex: 0 0 40%;
  position: relative;
  background-color: var(--puffy-color-puffy-white);
}

.registration .registration__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Form Container */
.registration .registration__form-container {
  flex: 0 0 60%;
  padding: 2.5rem;
  overflow-y: visible;
}

.registration .registration__form-header {
  margin-bottom: 2rem;
}

.registration .registration__form-header h2 {
  color: var(--puffy-color-navy--light);
  font-family: var(--manrope);
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.registration .registration__form-header p {
  color: var(--puffy-text-color);
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 500;
}

.registration #registration__form {
  display: flex;
  flex-direction: column;
  /* gap: 1.5rem; */
  padding-bottom: 2rem;
}

.registration .registration__form-group {
  margin-bottom: 1.25rem;
  width: 100%;
}

.registration .registration__form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--puffy-color-orange);
  font-family: var(--manrope);
  font-weight: 600;
  font-size: 1.125rem;
}

.registration .registration__form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--puffy-color-grey--dark);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: var(--puffy-color-puffy-white);
}

.registration .registration__form-control:focus {
  border-color: var(--puffy-color-orange);
  outline: none;
  /* box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2); */
  box-shadow: 0px 4px 4px #00000030, 0px 12px 12px #00000015;
}

.registration select.registration__form-control {
  appearance: none;
  padding-right: 2.5rem;
}

.registration .registration__submit-link {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background-color: var(--puffy-color-orange);
  color: var(--puffy-color-puffy-white);
  border: none;
  border-radius: 5px;
  padding: 0.875rem 1.5rem;
  font-family: var(--inter);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 1rem;
  width: 100%;
}

/* di di di (no longer used) */
/* .registration a {
  text-decoration: none;
}

.registration .registration__submit-link:hover {
  background-color: var(--puffy-color-orange--dark);
} */

.registration .btn {
  background-color: var(--puffy-color-orange);
  color: var(--puffy-color-puffy-white);
  border: none;
  border-radius: 5px;
  padding: 0.875rem 1.5rem;
  font-family: var(--inter);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 1rem;
  text-align: center;
  display: block;
  width: 100%;
}

.registration .btn:hover {
  background-color: var(--puffy-color-orange--dark);
}

/* Disabled options styling */
.registration select option:disabled {
  color: var(--puffy-color-grey--dark);
  font-style: italic;
}

/* Responsive */
@media (max-width: 62em) {
  .registration .registration__container {
    width: 85%;
  }
}

@media (max-width: 48em) {
  .registration .registration__container {
    width: 90%;
    flex-direction: column;
  }

  .registration .registration__image {
    flex: none;
    height: 250px;
  }

  .registration .registration__form-container {
    flex: none;
    padding: 1.5rem;
    width: 100%;
  }
}

@media (max-width: 30em) {
  .registration .registration__container {
    width: 95%;
    margin: 0 auto;
  }

  .registration .registration__form-container {
    padding: 1.25rem;
  }
}

/* validation red */
/* .registration .registration__form-control:invalid:focus {
  border-color: var(--puffy-color-red);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
} */

/* * === END OF SECTION STYLES === */

/* * === GLOBAL SETTINGS AND VARIABLES === */
:root {
  --manrope: "Manrope", sans-serif;
  --inter: "Inter", sans-serif;
  --preahvihear: "Preahvihear", sans-serif;

  /* Brand Cyan Colors */
  --puffy-color-cyan: rgb(0, 224, 254);
  --puffy-color-cyan--dark: rgb(0, 202, 229);
  --puffy-color-cyan--light: rgb(51, 231, 255);

  /* Brand Navy Colors */
  --puffy-color-navy: rgb(23, 30, 44);
  --puffy-color-navy--dark: rgb(14, 19, 27);
  --puffy-color-navy--light: rgb(31, 42, 61);

  /* Brand Orange Colors */
  --puffy-color-orange: rgb(234, 88, 12);
  --puffy-color-orange--dark: rgb(192, 86, 33);
  --puffy-color-orange--light: rgb(237, 137, 54);

  /* Comber color */
  --puffy-color-comber: rgb(43, 169, 187);

  /* Theme Text Color */
  --puffy-text-color: var(--puffy-color-navy--light);

  /* Utility Colors */
  --puffy-color-red: rgb(220, 38, 38);
  --puffy-color-green: rgb(132, 204, 22);
  --puffy-color-orange-alt: rgb(255, 106, 0);
  --puffy-color-amber: rgb(245, 158, 11);
  --puffy-color-blue: rgb(82, 128, 234);
  --puffy-color-purple: rgb(153, 61, 245);
  --puffy-color-pink: rgb(233, 47, 139);
  --puffy-color-salmon: rgb(248, 113, 113);
  --puffy-color-grey: rgb(208, 208, 208);
  --puffy-color-grey--dark: rgb(105, 105, 105);
  --puffy-color-grey-blue: rgb(43, 48, 59);

  --puffy-color-puffy-white: rgb(250, 250, 250);

  /* Button Theme Colors */
  --puffy-button--neutral: var(--puffy-color-navy--light);
  --puffy-button--confirmation: var(--puffy-color-orange--dark);
  --puffy-button--positive: var(--puffy-color-green);
  --puffy-button--caution: var(--puffy-color-orange-alt);
  --puffy-button--danger: var(--puffy-color-red);
}

html {
  scroll-behavior: smooth;
}

/* Text assignments */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--inter);
  color: var(--puffy-text-color);
  background-color: var(--puffy-color-puffy-white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100vw;
}

footer {
  line-height: 1;
}

/* scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 3.125rem;
  z-index: 1000;
  height: 3.125rem;
  width: 3.125rem;
  font-size: 1.375rem;
  background-color: var(--puffy-color-orange);
  color: var(--puffy-color-puffy-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
  box-shadow: 0px 4px 4px #00000030;
  transition: background-color 0.3s ease;
}

.scroll-to-top:hover {
  background-color: var(--puffy-color-orange--dark);
}

/* Ensure all sections stay contained */
section {
  max-width: 100%;
  overflow-x: hidden;
}
