*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

/* ── Header ── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2.25rem 0;
  pointer-events: none;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0.35rem 0.65rem 0.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  pointer-events: auto;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header--solid .header__inner {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
  min-width: 0;
}

.header__logo-icon {
  display: block;
  width: auto;
  height: 44px;
  max-width: none;
  object-fit: contain;
  filter: brightness(0);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.header__nav li {
    list-style: none;
    text-transform: uppercase;
}
.current_page_item a {
    color: #FD0C04;
}
.header__logo-name {
  font-size: 0.98rem;
  font-weight: 600;
  color: #FD0C04;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header__logo-tagline {
  font-size: 0.5rem;
  font-weight: 400;
  color: #222;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.header__nav {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 650px;
  padding: 25px 80px;
  margin-left: auto;
  margin-right: 0.5rem;
  background: #fff;
  border-radius: 999px;
}
ul#menu-main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.header__toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header--menu-open .header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header--menu-open .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header--menu-open .header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__contact--mobile {
  display: none;
}

.header__nav-link {
  padding: 0.35rem 0.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: #FD0C04;
}

.header__contact {
  flex-shrink: 0;
  padding: 25px 33px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #FD0C04;
  background: #fff;
  border: 1.5px solid #FD0C04;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.header__contact:hover {
  background: #FD0C04;
  color: #fff;
}

/* ── Hero ── */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  z-index: 1;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  max-width: 780px;
}

.hero__icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 1.75rem;
  filter: brightness(0) invert(1);
}

.hero__title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}

.hero__title-line {
  display: block;
}

.hero__title strong {
  font-weight: 700;
}

.hero__subtitle {
  max-width: 580px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.hero__cta {
  display: inline-block;
  padding: 0.6rem 1.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #FD0C04;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: #FD0C04;
  color: #fff;
}

/* ── About Hero ── */

.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  z-index: 1;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.about-hero__breadcrumb {
  position: absolute;
  top: 7.5rem;
  left: 2.25rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.about-hero__breadcrumb-link {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.about-hero__breadcrumb-link:hover {
  color: #fff;
}

.about-hero__breadcrumb-sep {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.about-hero__breadcrumb-current {
  font-weight: 600;
  color: #fff;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  max-width: 920px;
}

.about-hero__icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 1.75rem;
  filter: brightness(0) invert(1);
}

.about-hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.35rem;
  font-size: clamp(2.15rem, 5.2vw, 3.5rem);
  font-weight: 400;
  line-height: 1.22;
  color: #fff;
}

.about-hero__title-line {
  display: block;
  white-space: nowrap;
}

.about-hero__title strong {
  font-weight: 700;
}

.about-hero__subtitle {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  max-width: 960px;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.about-hero__subtitle-line {
  display: block;
  white-space: nowrap;
}

.about-hero__cta {
  display: inline-block;
  padding: 0.6rem 1.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #FD0C04;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.about-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: #FD0C04;
  color: #fff;
}

@media (max-width: 900px) {
  .about-hero__breadcrumb {
    top: 6.75rem;
    left: 1.25rem;
    font-size: 0.86rem;
  }

  .about-hero__content {
    padding: 7rem 1.25rem 3.5rem;
  }

  .about-hero__title-line {
    white-space: normal;
  }

  .about-hero__subtitle-line {
    white-space: normal;
  }
}

@media (max-width: 540px) {
  .about-hero__breadcrumb {
    top: 6.25rem;
    left: 1rem;
  }

  .about-hero__icon {
    width: 72px;
    height: 72px;
  }

  .about-hero__subtitle {
    font-size: 1.02rem;
  }
}

/* ── Our Services Hero ── */

.our-services-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  z-index: 1;
}

.our-services-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/ourServiceBg.png") center / cover no-repeat;
  z-index: 0;
}

.our-services-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.our-services-hero__breadcrumb {
  position: absolute;
  top: 7.5rem;
  left: 2.25rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.our-services-hero__breadcrumb-link {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.our-services-hero__breadcrumb-link:hover {
  color: #fff;
}

.our-services-hero__breadcrumb-sep {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.our-services-hero__breadcrumb-current {
  font-weight: 600;
  color: #fff;
}

.our-services-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  max-width: 1100px;
}

.our-services-hero__icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 1.75rem;
  filter: brightness(0) invert(1);
}

.our-services-hero__title {
  margin-bottom: 1.35rem;
  font-size: clamp(1.85rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.22;
  color: #fff;
  white-space: nowrap;
}

.our-services-hero__title strong {
  font-weight: 700;
}

.our-services-hero__subtitle {
  max-width: 680px;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.our-services-hero__cta {
  display: inline-block;
  padding: 0.6rem 1.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #FD0C04;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.our-services-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: #FD0C04;
  color: #fff;
}

@media (max-width: 900px) {
  .our-services-hero__breadcrumb {
    top: 6.75rem;
    left: 1.25rem;
    font-size: 0.86rem;
  }

  .our-services-hero__content {
    padding: 7rem 1.25rem 3.5rem;
  }
}

@media (max-width: 540px) {
  .our-services-hero__breadcrumb {
    top: 6.25rem;
    left: 1rem;
  }

  .our-services-hero__icon {
    width: 72px;
    height: 72px;
  }

  .our-services-hero__title {
    white-space: normal;
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .our-services-hero__subtitle {
    font-size: 1.02rem;
  }
}

/* ── Tailor-made (Our Services) ── */

.tailor-made {
  position: relative;
  z-index: 2;
  background: #fff;
  overflow-x: clip;
}

.tailor-made__bg-accent {
  position: absolute;
  top: -0.75rem;
  bottom: -1.35rem;
  left: calc(50% - 5rem);
  right: calc(50% - 50vw);
  background: #FDF6EE;
  pointer-events: none;
  z-index: 0;
}

.tailor-made__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.75rem 2rem 5.25rem;
}

.tailor-made__content {
  position: relative;
  z-index: 1;
  align-self: start;
  margin-top: 4.5rem;
}

.tailor-made__visual {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin: 3.5rem 0 0;
}

.tailor-made__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 5.15;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
  transform: rotate(-4deg);
}

.tailor-made__card {
  position: relative;
  z-index: 2;
  margin-left: -5rem;
  padding: 2.5rem 2.85rem 1.15rem;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.1);
}

.tailor-made__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.tailor-made__badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FD0C04;
  background: #f9e8e4;
  border-radius: 999px;
}

.tailor-made__number {
  flex-shrink: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1;
  color: #FD0C04;
}

.tailor-made__title {
  margin-bottom: 1.15rem;
  font-size: clamp(1.5rem, 2.75vw, 1.95rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.tailor-made__title-accent {
  color: #FD0C04;
}

.tailor-made__text {
  margin-bottom: 0.85rem;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.72;
  color: #1a1a1a;
}

.tailor-made__text:last-of-type {
  margin-bottom: 0.85rem;
}

.tailor-made__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.tailor-made__feature {
  position: relative;
  padding-left: 2.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  color: #1a1a1a;
}

.tailor-made__feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 2rem;
  height: 2px;
  background: #FD0C04;
}

.tailor-made__cta {
  display: inline-block;
  padding: 0.65rem 1.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: #FD0C04;
  border: 1.5px solid #FD0C04;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tailor-made__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253, 12, 4, 0.28);
  background: #fff;
  color: #FD0C04;
}

@media (max-width: 900px) {
  .tailor-made__bg-accent {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .tailor-made__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4.5rem 1.25rem 5rem;
  }

  .tailor-made__visual {
    width: min(100%, 440px);
    margin: 0 auto;
  }

  .tailor-made__content {
    margin-top: 0;
  }

  .tailor-made__card {
    margin-left: 0;
    padding: 2rem 1.75rem;
  }

  .tailor-made__photo {
    transform: rotate(-2deg);
  }
}

@media (max-width: 540px) {
  .tailor-made__inner {
    padding: 3.5rem 1rem 4rem;
  }

  .tailor-made__photo {
    transform: none;
  }

  .tailor-made__bg-accent {
    display: none;
  }
}

/* ── Strategic Mobility (Our Services) ── */

.strategic-mobility {
  position: relative;
  z-index: 2;
  background: #F8F9FA;
  overflow-x: clip;
}

.strategic-mobility__plane {
  position: absolute;
  width: auto;
  pointer-events: none;
  z-index: 0;
}

.strategic-mobility__plane--up {
  left: -1.5rem;
  top: 1.25rem;
  height: 400px;
}

.strategic-mobility__plane--down {
  right: -2.5rem;
  bottom: 1.25rem;
  height: 400px;
}

.strategic-mobility__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.75rem 2rem 5.25rem;
}

.strategic-mobility__content {
  position: relative;
  margin-top: 3.5rem;
  padding-right: 1rem;
}

.strategic-mobility__body {
  position: relative;
  min-width: 0;
  padding-left: calc(3px + 1.75rem);
}

.strategic-mobility__line {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.strategic-mobility__line--grey {
  width: 1px;
  height: 100%;
  background: #dcdcdc;
}

.strategic-mobility__line--red {
  width: 3px;
  height: 24%;
  background: #FD0C04;
}

.strategic-mobility__main {
  position: relative;
  z-index: 1;
}

.strategic-mobility__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.strategic-mobility__badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FD0C04;
  background: #f9e8e4;
  border-radius: 999px;
}

.strategic-mobility__number {
  flex-shrink: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1;
  color: #FD0C04;
}

.strategic-mobility__title {
  margin-bottom: 1.15rem;
  font-size: clamp(1.5rem, 2.75vw, 1.95rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.strategic-mobility__title-accent {
  color: #FD0C04;
}

.strategic-mobility__text {
  max-width: 34rem;
  margin: 0 0 1.75rem;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.72;
  color: #1a1a1a;
}

.strategic-mobility__cta {
  display: inline-block;
  padding: 0.65rem 1.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: #FD0C04;
  border: 1.5px solid #FD0C04;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.strategic-mobility__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253, 12, 4, 0.28);
  background: #fff;
  color: #FD0C04;
}

.strategic-mobility__visual {
  position: relative;
  z-index: 1;
  width: calc(100% + 2rem);
  max-width: 760px;
  margin: 0 -1rem 0 auto;
}

.strategic-mobility__bg-accent {
  position: absolute;
  top: -0.75rem;
  bottom: -1.35rem;
  left: 50%;
  right: calc(50% - 50vw);
  background: #FDF6EE;
  pointer-events: none;
  z-index: 0;
}

.strategic-mobility__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.25;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 10px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

@media (max-width: 900px) {
  .strategic-mobility__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4.5rem 1.25rem 5rem;
  }

  .strategic-mobility__content {
    margin-top: 0;
    padding-right: 0;
  }

  .strategic-mobility__visual {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
  }

  .strategic-mobility__bg-accent {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .strategic-mobility__plane--up,
  .strategic-mobility__plane--down {
    height: 280px;
    opacity: 0.35;
  }
}

@media (max-width: 540px) {
  .strategic-mobility__inner {
    padding: 3.5rem 1rem 4rem;
  }

  .strategic-mobility__plane--up,
  .strategic-mobility__plane--down {
    display: none;
  }
}

/* ── ACT Management (Our Services) ── */

.act-management {
  position: relative;
  z-index: 2;
  background: #141414;
  overflow-x: clip;
}

.act-management__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: 3.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 5.5rem;
}

.act-management__visual {
  position: relative;
  z-index: 1;
  width: calc(100% + 2rem);
  max-width: 760px;
  margin: 0 auto 0 -1rem;
}

.act-management__glow {
  position: absolute;
  inset: -1.25rem -1.75rem;
  background: radial-gradient(
    ellipse at center,
    rgba(253, 12, 4, 0.42) 0%,
    rgba(253, 12, 4, 0.12) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.act-management__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.25;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.act-management__content {
  position: relative;
  padding-left: 0.5rem;
}

.act-management__text-wrap {
  display: flex;
  align-items: stretch;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

.act-management__accent {
  flex-shrink: 0;
  width: 3px;
  background: #FD0C04;
}

.act-management__body {
  min-width: 0;
}

.act-management__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.act-management__badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FD0C04;
  background: #fff;
  border-radius: 999px;
}

.act-management__number {
  flex-shrink: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1;
  color: #FD0C04;
}

.act-management__title {
  margin-bottom: 1.15rem;
  font-size: clamp(1.5rem, 2.75vw, 1.95rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.02em;
  color: #fff;
}

.act-management__title-accent {
  color: #FD0C04;
}

.act-management__text {
  max-width: 34rem;
  margin: 0;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.88);
}

.act-management__cta {
  display: inline-block;
  padding: 0.65rem 1.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: #FD0C04;
  border: 1.5px solid #FD0C04;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.act-management__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253, 12, 4, 0.28);
  background: #fff;
  color: #FD0C04;
}

@media (max-width: 900px) {
  .act-management__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4.5rem 1.25rem 5rem;
  }

  .act-management__visual {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
  }

  .act-management__content {
    padding-left: 0;
  }
}

@media (max-width: 540px) {
  .act-management__inner {
    padding: 3.5rem 1rem 4rem;
  }
}

/* ── Travel Advisory Services (Our Services) ── */

.travel-advisory {
  position: relative;
  z-index: 2;
  background: #FDF6EE;
  overflow-x: clip;
}

.travel-advisory__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 5.5rem;
}

.travel-advisory__header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.travel-advisory__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FD0C04;
}

.travel-advisory__number {
  flex-shrink: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1;
  color: #FD0C04;
}

.travel-advisory__title {
  margin-bottom: 1.15rem;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.travel-advisory__title-accent {
  color: #FD0C04;
}

.travel-advisory__intro {
  max-width: 52rem;
  margin-bottom: 2rem;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.72;
  color: #1a1a1a;
}

.travel-advisory__divider {
  height: 1px;
  margin-bottom: 2.25rem;
  background: #FD0C04;
}

.travel-advisory__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.travel-advisory__feature {
  position: relative;
  align-self: center;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.travel-advisory__feature-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 766 / 593;
  object-fit: cover;
  object-position: center;
}

.travel-advisory__feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.25rem;
  padding: 2rem 1.85rem;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.travel-advisory__feature-text {
  max-width: 22rem;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.65;
  color: #fff;
}

.travel-advisory__feature-cta {
  align-self: flex-start;
  padding: 0.65rem 1.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: #FD0C04;
  border: 1.5px solid #FD0C04;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.travel-advisory__feature-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253, 12, 4, 0.28);
  background: #fff;
  color: #FD0C04;
}

.travel-advisory__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  min-height: 100%;
}

.travel-advisory__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  min-height: 9.5rem;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.travel-advisory__card--wide {
  grid-column: 1 / -1;
}

.travel-advisory__card--align-start {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.travel-advisory__card--row {
  flex-direction: row;
  justify-content: flex-start;
  gap: 1.15rem;
  min-height: 6.5rem;
  padding: 1.65rem 2rem;
  text-align: left;
}

.travel-advisory__card--white {
  background: #fff;
  color: #1a1a1a;
}

.travel-advisory__card--red {
  background: #FD0C04;
  color: #fff;
}

.travel-advisory__card--dark {
  background: #141414;
  color: #fff;
}

.travel-advisory__card-icon {
  display: block;
  width: auto;
  height: auto;
  max-height: 36px;
  object-fit: contain;
}

.travel-advisory__card-icon--light {
  filter: brightness(0) invert(1);
}

.travel-advisory__card-icon--dark {
  filter: brightness(0);
}

.travel-advisory__card-icon--red {
  max-height: 17px;
}

.travel-advisory__card-title {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.travel-advisory__card--row .travel-advisory__card-title {
  max-width: none;
}

.travel-advisory__card--row .travel-advisory__card-icon {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .travel-advisory__inner {
    padding: 4.5rem 1.25rem 5rem;
  }

  .travel-advisory__layout {
    grid-template-columns: 1fr;
  }

  .travel-advisory__feature-photo {
    aspect-ratio: 766 / 593;
  }
}

@media (max-width: 540px) {
  .travel-advisory__inner {
    padding: 3.5rem 1rem 4rem;
  }

  .travel-advisory__cards {
    grid-template-columns: 1fr;
  }

  .travel-advisory__card--wide {
    grid-column: auto;
  }

  .travel-advisory__card--row {
    flex-direction: row;
  }
}

/* ── Ticketing (Our Services) ── */

.ticketing {
  position: relative;
  z-index: 2;
  background: #fff;
  overflow-x: clip;
}

.ticketing__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 5.5rem;
}

.ticketing__divider {
  width: 1px;
  background: #dcdcdc;
}

.ticketing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 36rem;
  overflow: hidden;
  isolation: isolate;
}

.ticketing__card--visa {
  background: #f3f8fb;
}

.ticketing__card--air {
  background: #fff;
}

.ticketing__bg {
  position: absolute;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.ticketing__card--visa .ticketing__bg {
  top: 50%;
  left: 50%;
  width: 88%;
  height: 88%;
  max-width: 36rem;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center center;
}

.ticketing__card--air .ticketing__bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.ticketing__card--visa::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.72) 32%,
    rgba(255, 255, 255, 0.25) 52%,
    transparent 68%
  );
}

.ticketing__card--air::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 255, 255, 0.96) 45%,
    rgba(255, 255, 255, 0.55) 62%,
    rgba(255, 255, 255, 0.12) 78%,
    transparent 95%
  );
}

.ticketing__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 36rem;
  padding: 2.75rem 2.5rem 2.5rem;
  box-sizing: border-box;
}

.ticketing__texts {
  flex: 1;
  width: 100%;
  max-width: 34rem;
}

.ticketing__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 1.25rem;
}

.ticketing__heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.ticketing__card-icon {
  flex-shrink: 0;
  width: auto;
  height: 1.25rem;
  max-height: 1.25rem;
  display: block;
  object-fit: contain;
}

.ticketing__card-icon--shield {
  height: 1.35rem;
  max-height: 1.35rem;
}

.ticketing__title {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.03em;
  color: #1a1a1a;
}

.ticketing__title-accent {
  color: #FD0C04;
}

.ticketing__number {
  flex-shrink: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1;
  color: #FD0C04;
}

.ticketing__text {
  max-width: 100%;
  margin: 0;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.72;
  color: #1a1a1a;
}

.ticketing__text + .ticketing__text {
  margin-top: 0.85rem;
}

.ticketing__cta {
  display: inline-block;
  margin-top: auto;
  padding: 0.65rem 1.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: #FD0C04;
  border: 1.5px solid #FD0C04;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(253, 12, 4, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ticketing__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253, 12, 4, 0.28);
  background: #fff;
  color: #FD0C04;
}

@media (max-width: 900px) {
  .ticketing__inner {
    grid-template-columns: 1fr;
    padding: 4rem 1.25rem 4.5rem;
  }

  .ticketing__divider {
    display: none;
  }

  .ticketing__card + .ticketing__card {
    border-top: 1px solid #dcdcdc;
  }

  .ticketing__content,
  .ticketing__card {
    min-height: 32rem;
  }
}

@media (max-width: 540px) {
  .ticketing__inner {
    padding: 3.5rem 1rem 3.5rem;
  }

  .ticketing__content {
    min-height: 30rem;
    padding: 2rem 1.35rem 1.75rem;
  }

  .ticketing__card {
    min-height: 30rem;
  }
}

/* ── Crafted Experience (About Us) ── */

.crafted-experience {
  position: relative;
  z-index: 2;
  background: #FDF6EE;
  overflow-x: clip;
}

.crafted-experience__plane {
  position: absolute;
  width: auto;
  pointer-events: none;
  z-index: 0;
}

.crafted-experience__plane--up {
  left: -1.5rem;
  top: 1.5rem;
  height: 380px;
}

.crafted-experience__plane--down {
  right: -2.5rem;
  bottom: 1.5rem;
  height: 380px;
}

.crafted-experience__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 5.5rem;
}

.crafted-experience__visual {
  position: relative;
  padding-bottom: 3rem;
}

.crafted-experience__photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
}

.crafted-experience__quote {
  position: absolute;
  right: -1.25rem;
  bottom: -1.75rem;
  width: min(100%, 290px);
  margin: 0;
  padding: 1.65rem 1.5rem 1.5rem;
  background: #FD0C04;
  border: none;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(253, 12, 4, 0.28);
}

.crafted-experience__quote-text {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.55;
  color: #fff;
}

.crafted-experience__quote-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.crafted-experience__content {
  max-width: 540px;
}

.crafted-experience__badge {
  display: inline-block;
  margin-bottom: 1.35rem;
  padding: 0.45rem 1.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #FD0C04;
  background: #f9e8e4;
  border-radius: 999px;
}

.crafted-experience__title {
  margin-bottom: 1.5rem;
  font-size: clamp(1.95rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.crafted-experience__title-accent {
  display: block;
  color: #FD0C04;
}

.crafted-experience__text {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.85;
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .crafted-experience__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.25rem 4.5rem;
  }

  .crafted-experience__content {
    max-width: none;
  }

  .crafted-experience__quote {
    right: 1rem;
    bottom: -1.5rem;
    width: min(calc(100% - 2rem), 290px);
  }

  .crafted-experience__plane--up,
  .crafted-experience__plane--down {
    height: 280px;
    opacity: 0.55;
  }
}

@media (max-width: 540px) {
  .crafted-experience__inner {
    padding: 3.5rem 1rem 4rem;
  }

  .crafted-experience__visual {
    padding-bottom: 0;
  }

  .crafted-experience__quote {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -2rem;
  }

  .crafted-experience__plane--up,
  .crafted-experience__plane--down {
    display: none;
  }
}

/* ── Management Team (About Us) ── */

.management-team {
  position: relative;
  z-index: 2;
  background: #FDF6EE;
  overflow-x: clip;
}

.management-team__plane {
  position: absolute;
  width: auto;
  pointer-events: none;
  z-index: 0;
}

.management-team__plane--up {
  left: -1.5rem;
  top: 1.5rem;
  height: 380px;
}

.management-team__plane--down {
  right: -2.5rem;
  bottom: 1.5rem;
  height: 380px;
}

.management-team__intro {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 5rem 2rem 2.75rem;
  text-align: center;
}

.management-team__label {
  display: block;
  margin-bottom: 1.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #FD0C04;
}

.management-team__title {
  font-size: clamp(1.95rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.management-team__title-accent {
  display: block;
  color: #FD0C04;
}

.management-team__card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.25rem 5.5rem 7.5rem;
}

.management-team__bio {
  position: relative;
  z-index: 1;
  padding: 2.35rem 3.25rem 2.35rem 2.35rem;
  background: #fff;
  border-left: 5px solid #FD0C04;
  border-bottom: 5px solid #FD0C04;
  border-radius: 0 0 0 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.management-team__bio-text {
  max-width: 820px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.85;
  color: #1a1a1a;
}

.management-team__portrait {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: min(100%, 370px);
  margin: -2.5rem 0 0 -4.25rem;
  background: #FDF6EE;
}

.management-team__name {
  position: absolute;
  top: 1.1rem;
  left: -0.85rem;
  z-index: 3;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: #FD0C04;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(253, 12, 4, 0.25);
}

.management-team__photo {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

@media (max-width: 900px) {
  .management-team__intro {
    padding: 4rem 1.25rem 2.25rem;
  }

  .management-team__card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.25rem 4.5rem;
  }

  .management-team__bio {
    padding: 2rem 1.75rem;
  }

  .management-team__bio-text {
    max-width: none;
  }

  .management-team__portrait {
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .management-team__plane--up,
  .management-team__plane--down {
    height: 280px;
    opacity: 0.55;
  }
}

@media (max-width: 540px) {
  .management-team__intro {
    padding: 3.5rem 1rem 2rem;
  }

  .management-team__card {
    padding: 0 1rem 4rem;
  }

  .management-team__name {
    left: 0.5rem;
    font-size: 0.66rem;
  }

  .management-team__plane--up,
  .management-team__plane--down {
    display: none;
  }
}

/* ── Who We Are (About Us) ── */

.who-we-are {
  position: relative;
  z-index: 2;
  background: #fff;
  overflow-x: clip;
}

.who-we-are__bg {
  position: absolute;
  inset: 0;
  background: url("../img/ourStoryBg.png") center center / min(135%, 1520px) auto no-repeat;
  opacity: 0.45;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.who-we-are__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0;
  max-width: 1380px;
  margin: 0 auto;
  padding: 5.5rem 2rem 6rem;
}

.who-we-are__card {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 2.85rem 5.75rem 2.85rem 2.65rem;
  background: #FDF6EE;
  border-left: 5px solid #FD0C04;
  border-radius: 0 0 0 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.who-we-are__label {
  display: block;
  margin-bottom: 1.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #FD0C04;
}

.who-we-are__title {
  margin-bottom: 1.5rem;
  font-size: clamp(1.95rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.who-we-are__title-accent {
  color: #FD0C04;
}

.who-we-are__text {
  margin-bottom: 1.35rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.85;
  color: #1a1a1a;
}

.who-we-are__text:last-child {
  margin-bottom: 0;
}

.who-we-are__visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: min(100%, 580px);
  margin: 3.25rem 0 0 -5rem;
}

.who-we-are__photo {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4.6;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .who-we-are__bg {
    background-size: min(172%, 920px) auto;
    opacity: 0.38;
  }

  .who-we-are__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4.5rem 1.25rem 5rem;
  }

  .who-we-are__card {
    max-width: none;
    padding: 2rem 1.75rem;
  }

  .who-we-are__visual {
    width: min(100%, 620px);
    margin: 0 auto;
  }
}

@media (max-width: 540px) {
  .who-we-are__inner {
    padding: 3.5rem 1rem 4rem;
  }
}

/* ── Our Purpose (About Us) ── */

.our-purpose {
  position: relative;
  z-index: 2;
  background: #141414;
  overflow-x: clip;
}

.our-purpose__plane {
  position: absolute;
  width: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  filter: brightness(0) invert(1);
}

.our-purpose__plane--up {
  left: -1.5rem;
  top: 1.25rem;
  height: 400px;
}

.our-purpose__plane--down {
  right: -2.5rem;
  bottom: 1.25rem;
  height: 400px;
}

.our-purpose__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 3.5rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 5.5rem 2rem 6rem;
}

.our-purpose__title {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.28;
  color: #fff;
}

.our-purpose__title-accent {
  color: #FD0C04;
}

.our-purpose__quote-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.our-purpose__quote-line {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3px;
  background: #FD0C04;
}

.our-purpose__quote {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: #FD0C04;
}

.our-purpose__card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  overflow: visible;
}

.our-purpose__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 3.5rem;
  margin-bottom: 1.75rem;
}

.our-purpose__badge {
  display: inline-block;
  padding: 0.5rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FD0C04;
  background: #fff;
  border-radius: 999px;
}

.our-purpose__icon-box {
  position: absolute;
  top: -1.85rem;
  right: 1.15rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #FD0C04;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(253, 12, 4, 0.35);
}

.our-purpose__icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.our-purpose__card-text {
  margin: 0 0 1.75rem;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.our-purpose__divider {
  height: 1px;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.14);
}

.our-purpose__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.our-purpose__feature-title {
  position: relative;
  margin: 0 0 0.45rem;
  padding-left: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.our-purpose__feature-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  background: #FD0C04;
}

.our-purpose__feature-text {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .our-purpose__inner {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    padding: 4.5rem 1.25rem 5rem;
  }

  .our-purpose__card {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

  .our-purpose__plane--up {
    left: -0.75rem;
    top: 1rem;
    height: 280px;
    opacity: 0.38;
  }

  .our-purpose__plane--down {
    right: -1rem;
    bottom: 1rem;
    height: 280px;
    opacity: 0.38;
  }
}

@media (max-width: 540px) {
  .our-purpose__inner {
    padding: 3.5rem 1rem 4rem;
  }

  .our-purpose__features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .our-purpose__quote-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* ── Our Story ── */

.our-story {
  position: relative;
  z-index: 2;
  background: #fff;
  scroll-margin-top: 100px;
  overflow-x: clip;
}

.our-story__logos {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  align-items: center;
  gap: 3.35rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 2rem;
  overflow-x: hidden;
}

.our-story__logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 84px;
  margin: 0 auto;
  object-fit: contain;
}

.our-story__body {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 4rem 5rem;
  overflow-x: clip;
}

.our-story__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.our-story__badge {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.45rem 1.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #FD0C04;
  background: #f9e8e4;
  border-radius: 999px;
}

.our-story__text {
  margin-bottom: 1.75rem;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.85;
  color: #1a1a1a;
}

.our-story__text:last-child {
  margin-bottom: 0;
}

.our-story__gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.75rem;
}

.our-story__photo {
  flex-shrink: 0;
  width: 210px;
  height: 286px;
  object-fit: cover;
  border-radius: 14px;
}

.our-story__highlight {
  color: #FD0C04;
  font-weight: 600;
}

.our-story__plane {
  position: absolute;
  width: auto;
  pointer-events: none;
  z-index: 0;
}

.our-story__plane--up {
  left: -1.5rem;
  top: 1rem;
  height: 420px;
}

.our-story__plane--down {
  right: -3rem;
  bottom: 2rem;
  height: 420px;
}

/* ── Our Benefits ── */

.our-benefits {
  background: #FDF6EE;
  padding: 4.5rem 0 0;
  overflow-x: clip;
}

.our-benefits__intro {
  max-width: 920px;
  margin: 0 auto 3.5rem;
  padding-inline: 2rem;
  text-align: center;
}

.our-benefits__label {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #FD0C04;
}

.our-benefits__title {
  margin-bottom: 1.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.our-benefits__title-accent {
  color: #FD0C04;
}

.our-benefits__desc {
  max-width: 860px;
  margin: 0 auto 2rem;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.85;
  color: #1a1a1a;
}

.our-benefits__cta {
  display: inline-block;
  padding: 0.6rem 1.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a1a1a;
  background: transparent;
  border: 1.5px solid #FD0C04;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.our-benefits__cta:hover {
  background: #FD0C04;
  color: #fff;
  transform: translateY(-2px);
}

.our-benefits__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: 2rem;
}

.our-benefits__card {
  padding: 1.75rem 1.5rem 2rem;
  background: #fff;
  border: 1px solid #eee8e2;
  border-radius: 16px;
}

.our-benefits__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  object-fit: contain;
}

.our-benefits__card-title {
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
}

.our-benefits__card-text {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
}

.our-benefits__services {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 4.5rem 0 0;
  padding: 0;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.our-benefits__services-cream {
  position: relative;
  padding: 4rem 2rem 1.15rem;
  background: #FDF6EE;
  overflow: hidden;
}

.our-benefits__services-cream::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/ourStoryBg.png") center 7.5rem / min(100%, 1600px) auto no-repeat;
  filter: invert(1) grayscale(1) brightness(0.9);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.our-benefits__services-white {
  position: relative;
  padding: 1.15rem 2rem 5rem;
  background: #ffffff;
}

.our-benefits__plane {
  position: absolute;
  width: auto;
  pointer-events: none;
  z-index: 1;
}

.our-benefits__plane--up {
  left: 4.5rem;
  top: 6rem;
  height: 400px;
}

.our-benefits__plane--down {
  right: -2.5rem;
  top: 1rem;
  bottom: auto;
  height: 400px;
}

.our-benefits__services-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.our-benefits__desc--services {
  margin-bottom: 2.75rem;
}

.our-benefits__service-grid--top {
  margin-bottom: 0;
}

.our-benefits__service-grid--bottom {
  margin-top: 0;
}

.our-benefits__service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  max-width: 1040px;
  margin: 0 auto;
}

.our-benefits__service-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 320px;
}

.our-benefits__service-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.our-benefits__service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.15) 45%, transparent 70%);
}

.our-benefits__service-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  text-align: center;
}

/* .our-benefits__service-text {
  display: none;
}
a.our-benefits__service-btn {
    display: none;
} */


.our-benefits__service-card--featured:hover .our-benefits__service-text,
.our-benefits__service-card--featured:hover .our-benefits__service-btn {
  display: block;
}

.our-benefits__service-card--featured .our-benefits__service-overlay {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.5rem;
  background: rgba(15, 25, 45, 0.55);
  text-align: center;
}

.our-benefits__service-card--featured .our-benefits__service-title {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  text-align: center;
}

.our-benefits__service-card--featured .our-benefits__service-text {
  max-width: 92%;
  margin-bottom: 1.15rem;
  text-align: center;
}

.our-benefits__service-text {
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
}

.our-benefits__service-btn {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #FD0C04;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.our-benefits__service-btn:hover {
  transform: translateY(-2px);
}

/* ── Our Packages ── */

.our-packages {
  position: relative;
  background: #fff;
  padding: 5rem 2rem 6rem;
  overflow: hidden;
}

.our-packages__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.our-packages__plane {
  position: absolute;
  width: auto;
  pointer-events: none;
  z-index: 1;
}

.our-packages__plane--down {
  right: -2rem;
  bottom: 1rem;
  height: 320px;
}

.our-packages__label-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.our-packages__plane-icon {
  width: 72px;
  height: 44px;
  max-width: none;
  object-fit: cover;
  object-position: top left;
  flex-shrink: 0;
}

.our-packages__header {
  display: flex;
  /* grid-template-columns: 1fr 1fr; */
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.our-packages__label {
  display: inline-block;
  margin-bottom: 0;
  padding: 0.45rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FD0C04;
  background: #f9e8e4;
  border-radius: 999px;
}

.our-packages__title {
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.our-packages__title-accent {
  color: #FD0C04;
}

.our-packages__desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  color: #1a1a1a;
}

.our-packages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.our-packages__card {
  display: flex;
  flex-direction: column;
}

.our-packages__image-wrap {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 18px;
  overflow: hidden;
}

.our-packages__image {
  width: 100%;
  height: auto;
  aspect-ratio: 400 / 331;
  object-fit: cover;
  display: block;
}

.our-packages__rating {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #1a1a1a;
  background: #fff;
  border-radius: 999px;
}

.our-packages__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.our-packages__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.our-packages__duration {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a1a;
}

.our-packages__location {
  font-size: 0.88rem;
  font-weight: 500;
  color: #333;
}

.our-packages__btn {
  flex-shrink: 0;
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  background: #FD0C04;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.our-packages__btn:hover {
  background: #e00b03;
  transform: translateY(-2px);
}

/* ── Why Choose Us + Gallery Parallax ── */

.why-choose-parallax-stack {
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.why-choose-parallax-zone {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  grid-template-rows: auto auto;
  gap: 1.25rem 3.5rem;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 2rem 0;
  background: #fff;
  min-height: 100vh;
  min-height: 100svh;
  overflow: visible;
}

.why-choose-parallax-zone__scroll {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}

.why-choose-parallax-zone__tail {
  grid-column: 1 / -1;
  grid-row: 2;
  height: 16vh;
  pointer-events: none;
}

.why-choose-parallax-zone__pinned {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  z-index: 6;
}

.why-choose-parallax-zone__pin-slot {
  display: none;
  width: 100%;
}

.why-choose-parallax-zone__pinned.is-fixed .why-choose-parallax-zone__pin-slot {
  display: block;
}

.why-choose-parallax-zone__pinned.is-fixed .why-choose-us__visual {
  position: fixed;
  top: 7.5rem;
  z-index: 6;
}

.why-choose-us {
  position: relative;
  background: transparent;
  padding: 0;
}

.why-choose-us__label-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.why-choose-us__label {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FD0C04;
  background: #f9e8e4;
  border-radius: 999px;
}

.why-choose-us__plane-icon {
  width: 72px;
  height: 44px;
  max-width: none;
  object-fit: cover;
  object-position: top left;
  flex-shrink: 0;
}

.why-choose-us__title {
  margin-bottom: 2.25rem;
  font-size: clamp(1.85rem, 3.6vw, 2.35rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.why-choose-us__title-accent {
  color: #FD0C04;
}

.why-choose-us__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 0;
}

.why-choose-us__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-choose-us__icon-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border: 2.5px solid;
  border-radius: 50%;
  background: #fff;
}

.why-choose-us__icon-ring--1,
.why-choose-us__icon-ring--3 {
  border-color: #FFFCED;
  background: #FFFCED;
}

.why-choose-us__icon-ring--2,
.why-choose-us__icon-ring--4 {
  border-color: #FFFCED;
  background: #fff;
}

.why-choose-us__item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  max-width: none;
  object-fit: contain;
}

.why-choose-us__item-title {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FD0C04;
}

.why-choose-us__item-text {
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.75;
  color: #333;
}

.why-choose-us__visual {
  position: relative;
  align-self: start;
}

.why-choose-us__plane {
  position: absolute;
  width: auto;
  pointer-events: none;
  z-index: 0;
}

.why-choose-us__plane--down {
  top: -1.5rem;
  right: -1rem;
  height: 280px;
}

.why-choose-us__image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

.why-choose-us__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  border-radius: 18px;
}

.why-choose-us__image-plane {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 42px;
  height: auto;
  max-width: none;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* ── Our Gallery ── */

.our-gallery {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  margin-top: 0;
  background: #FDF6EE;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.05);
}

.our-gallery__inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.our-gallery__header {
  text-align: center;
  max-width: 1240px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
  will-change: transform;
}

.our-gallery__label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #FD0C04;
}

.our-gallery__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 1.35rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.our-gallery__title-line {
  display: block;
}

.our-gallery--page {
  padding-top: 5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
  overflow: visible;
  box-shadow: none;
  min-height: auto;
}

.our-gallery--page .our-gallery__header {
  padding-top: 2.75rem;
  margin-bottom: 2rem;
}

.our-gallery--page .our-gallery__grid {
  margin-top: -2.25rem;
}

.our-gallery--page + .gallery-mosaic {
  margin-top: -3.5rem;
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.our-gallery__title-accent {
  color: #FD0C04;
}

.our-gallery__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #1a1a1a;
  transition: color 0.2s ease;
}

.our-gallery__cta:hover {
  color: #FD0C04;
}

.our-gallery__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 0.95rem;
  line-height: 1;
  color: #fff;
  background: #FD0C04;
  border-radius: 50%;
}

.our-gallery__grid {
  will-change: transform;
}

.our-gallery--home .our-gallery__inner {
  max-width: 1240px;
  padding: 0 2rem;
}

.our-gallery--home .our-gallery__title {
  display: block;
}

.our-gallery--home .our-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 420px 380px;
  gap: 0.45rem;
}

.our-gallery--home .our-gallery__item {
  overflow: hidden;
  margin: 0;
  min-height: 0;
  border-radius: 10px;
  background: #FDF6EE;
}

.our-gallery--home .our-gallery__item--1 {
  grid-column: 1 / 3;
  grid-row: 1;
}

.our-gallery--home .our-gallery__item--2 {
  grid-column: 3 / 4;
  grid-row: 1;
}

.our-gallery--home .our-gallery__item--3 {
  grid-column: 1 / 2;
  grid-row: 2;
}

.our-gallery--home .our-gallery__item--4 {
  grid-column: 2 / 3;
  grid-row: 2;
}

.our-gallery--home .our-gallery__item--5 {
  grid-column: 3 / 4;
  grid-row: 2;
}

.our-gallery--home .our-gallery__item img {
  display: block;
  width: 100%;
  height: 112%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.our-gallery--home .our-gallery__item--1 img {
  object-position: center 35%;
}

.our-gallery--home .our-gallery__item--2 img {
  object-position: center top;
}

.our-gallery--page .our-gallery__grid {
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  gap: 0.2rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.our-gallery--page .our-gallery__item--1 {
  flex: 1.12 1 0;
}

.our-gallery--page .our-gallery__item--5 {
  flex: 1.12 1 0;
}

.our-gallery--page .our-gallery__item {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  overflow: visible;
  background: transparent;
}

.our-gallery--page .our-gallery__item--3 {
  flex: 0.88 1 0;
  transform: translateY(-12.25rem);
}

.our-gallery--page .our-gallery__item--2,
.our-gallery--page .our-gallery__item--4 {
  transform: translateY(-8.75rem);
}

.our-gallery--page .our-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  will-change: transform;
}

/* ── Gallery Mosaic ── */

.gallery-mosaic {
  position: relative;
  z-index: 2;
  background: #FDF6EE;
  padding: 2.5rem 2.75rem 4.5rem;
  overflow: visible;
}

.gallery-mosaic__inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.gallery-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 0.45rem;
  width: 100%;
  margin: 0 auto;
}

.gallery-mosaic__item {
  margin: 0;
  overflow: visible;
  min-width: 0;
  height: auto;
  line-height: 0;
}

.gallery-mosaic__item--wide {
  grid-column: span 2;
}

.gallery-mosaic__item--narrow {
  grid-column: span 1;
}

.gallery-mosaic__item img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 6px;
}

/* ── Responsive ── */

@media (max-width: 1100px) {
  .header {
    padding: 1.25rem 1.5rem 0;
  }

  .header__nav-link {
    padding: 0.35rem 0.25rem;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .header__contact--desktop {
    padding: 0.65rem 1.1rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 900px) {
  .header {
    padding: 1rem 1rem 0;
  }

  .header__inner {
    position: relative;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.65rem;
    border-radius: 999px;
    padding: 0.5rem 0.65rem 0.5rem 1rem;
  }

  .header__logo {
    flex-direction: row;
    gap: 0.65rem;
    text-align: left;
  }

  .header__logo-icon {
    height: 38px;
  }

  .header__logo-tagline {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .header__nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    z-index: 10;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .header--menu-open .header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header__nav-link {
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
    text-align: center;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .header__nav-link:hover,
  .header__nav-link--active {
    background: rgba(253, 12, 4, 0.08);
  }

  .header__contact--desktop {
    display: none;
  }

  .header__contact--mobile {
    display: inline-block;
    margin-top: 0.35rem;
    text-align: center;
  }

  .our-story__plane--up,
  .our-story__plane--down {
    display: none;
  }

  .our-benefits__plane--up,
  .our-benefits__plane--down {
    display: none;
  }

  .our-benefits__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .our-benefits__service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .our-packages__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-parallax-zone {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2.5rem;
    min-height: auto;
    padding: 3.5rem 1.25rem 0;
  }

  .why-choose-parallax-zone__scroll {
    grid-column: 1;
    grid-row: auto;
  }

  .why-choose-parallax-zone__pinned,
  .why-choose-parallax-zone__pinned.is-fixed .why-choose-us__visual {
    position: static;
    grid-column: 1;
    grid-row: auto;
    top: auto;
    left: auto;
    width: auto;
  }

  .why-choose-parallax-zone__pin-slot {
    display: none !important;
  }

  .why-choose-parallax-zone__tail {
    display: none;
  }

  .why-choose-us__plane--down {
    display: none;
  }

  .our-gallery {
    padding: 3.5rem 0 4rem;
    box-shadow: none;
    transform: none !important;
  }

  .our-gallery__header {
    padding: 0 1.25rem;
  }

  .our-gallery--home .our-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 300px 300px;
  }

  .our-gallery--home .our-gallery__item--1 {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .our-gallery--home .our-gallery__item--2 {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .our-gallery--home .our-gallery__item--3 {
    grid-column: 1 / 2;
    grid-row: 3;
  }

  .our-gallery--home .our-gallery__item--4 {
    grid-column: 2 / 3;
    grid-row: 3;
  }

  .our-gallery--home .our-gallery__item--5 {
    display: none;
  }

  .our-gallery--page .our-gallery__grid {
    gap: 0.25rem;
    max-width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
  }

  .our-gallery--page .our-gallery__item,
  .our-gallery--page .our-gallery__item--1,
  .our-gallery--page .our-gallery__item--2,
  .our-gallery--page .our-gallery__item--3,
  .our-gallery--page .our-gallery__item--4,
  .our-gallery--page .our-gallery__item--5 {
    flex: 0 0 38%;
  }

  .our-gallery--page {
    padding-top: 4.75rem;
    padding-bottom: 1rem;
    margin-bottom: 0;
    overflow: visible;
    min-height: auto;
  }

  .our-gallery--page .our-gallery__header {
    padding-top: 2.25rem;
    margin-bottom: 1.75rem;
  }

  .our-gallery--page .our-gallery__grid {
    margin-top: -1.75rem;
  }

  .our-gallery--page + .gallery-mosaic {
    margin-top: -2rem;
    padding-top: 0;
  }

  .gallery-mosaic {
    padding: 2rem 1.5rem 3.5rem;
  }

  .gallery-mosaic__inner {
    max-width: 100%;
  }

  .gallery-mosaic__item--wide {
    grid-column: span 3;
  }

  .gallery-mosaic__item--narrow {
    grid-column: span 1;
  }
}

@media (max-width: 540px) {
  .header {
    padding: 0.75rem 0.75rem 0;
  }

  .header__inner {
    padding: 0.45rem 0.55rem 0.45rem 0.85rem;
  }

  .header__logo-icon {
    height: 34px;
  }

  .header__logo-name {
    font-size: 0.88rem;
  }

  .header__toggle {
    width: 38px;
    height: 38px;
  }

  .header__nav-link {
    padding: 0.75rem 0.85rem;
    font-size: 0.88rem;
  }

  .header__contact--mobile {
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__content {
    padding: 7rem 1.25rem 3rem;
  }

  .our-story__logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.75rem 2.35rem;
    padding: 2.25rem 1.25rem;
    overflow-x: hidden;
  }

  .our-story__logo {
    max-height: 64px;
  }

  .our-story__body {
    padding: 0.5rem 1.25rem 3.5rem;
  }

  .our-story__gallery {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
  }

  .our-story__photo {
    width: 180px;
    height: 245px;
  }

  .our-story__plane--up,
  .our-story__plane--down {
    display: none;
  }

  .our-story__text {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .our-benefits {
    padding: 3.5rem 0 0;
  }

  .our-benefits__intro,
  .our-benefits__cards {
    padding-inline: 1.25rem;
  }

  .our-benefits__cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .our-benefits__desc {
    font-size: 1.02rem;
  }

  .our-benefits__services {
    margin: 3rem 0 0;
  }

  .our-benefits__services-cream {
    padding: 3rem 1.25rem 1rem;
  }

  .our-benefits__services-white {
    padding: 1rem 1.25rem 4rem;
  }

  .our-benefits__plane--up,
  .our-benefits__plane--down {
    display: none;
  }

  .our-benefits__service-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .our-benefits__service-card {
    min-height: 280px;
  }

  .our-benefits__service-card img {
    min-height: 280px;
  }

  .our-packages {
    padding: 3.5rem 1.25rem 4rem;
  }

  .our-packages__plane--down {
    display: none;
  }

  .our-packages__header {
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .our-packages__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choose-us {
    padding: 0;
  }

  .why-choose-parallax-zone {
    padding: 3rem 1.25rem 0;
  }

  .why-choose-us__title {
    margin-bottom: 1.75rem;
    font-size: clamp(1.55rem, 5vw, 1.85rem);
  }

  .why-choose-us__item-title {
    font-size: 0.88rem;
  }

  .why-choose-us__item-text {
    font-size: 0.98rem;
  }

  .why-choose-us__items {
    gap: 1.35rem;
  }

  .why-choose-us__icon-ring {
    width: 48px;
    height: 48px;
  }

  .why-choose-us__item-icon {
    width: 24px;
    height: 24px;
  }

  .why-choose-us__image-plane {
    width: 34px;
  }

  .our-gallery--home .our-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 300px);
  }

  .our-gallery--home .our-gallery__item--1,
  .our-gallery--home .our-gallery__item--2,
  .our-gallery--home .our-gallery__item--3,
  .our-gallery--home .our-gallery__item--4,
  .our-gallery--home .our-gallery__item--5 {
    grid-column: 1;
    display: block;
  }

  .our-gallery--home .our-gallery__item--1 { grid-row: 1; }
  .our-gallery--home .our-gallery__item--2 { grid-row: 2; }
  .our-gallery--home .our-gallery__item--3 { grid-row: 3; }
  .our-gallery--home .our-gallery__item--4 { grid-row: 4; }
  .our-gallery--home .our-gallery__item--5 { grid-row: 5; }

  .our-gallery--page .our-gallery__grid {
    flex-direction: column;
    align-items: center;
    overflow-x: visible;
  }

  .our-gallery--page .our-gallery__item,
  .our-gallery--page .our-gallery__item--1,
  .our-gallery--page .our-gallery__item--2,
  .our-gallery--page .our-gallery__item--3,
  .our-gallery--page .our-gallery__item--4,
  .our-gallery--page .our-gallery__item--5 {
    flex: 0 0 auto;
    width: min(100%, 22rem);
    transform: none;
  }

  .our-gallery--page {
    padding-top: 4.25rem;
    padding-bottom: 1rem;
    margin-bottom: 0;
    overflow: visible;
  }

  .our-gallery--page .our-gallery__header {
    padding-top: 2rem;
    margin-bottom: 1.5rem;
  }

  .our-gallery--page .our-gallery__grid {
    margin-top: 0;
  }

  .our-gallery--page + .gallery-mosaic {
    margin-top: 0;
    padding-top: 0;
  }

  .gallery-mosaic {
    padding: 1.75rem 1rem 3rem;
  }

  .gallery-mosaic__grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .gallery-mosaic__item--wide,
  .gallery-mosaic__item--narrow {
    grid-column: span 1;
    aspect-ratio: auto;
  }

  .gallery-mosaic__item img {
    height: auto;
  }
}

/* ── Our Testimonials ── */

.our-testimonials {
  position: relative;
  background: #fff;
  padding: 5rem 2rem 6rem;
}

.our-testimonials__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.our-testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}

.our-testimonials__label {
  display: inline-block;
  margin-bottom: 1.15rem;
  padding: 0.45rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FD0C04;
  background: #f9e8e4;
  border-radius: 999px;
}

.our-testimonials__title {
  font-size: clamp(1.85rem, 3.6vw, 2.35rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.our-testimonials__title-accent {
  color: #FD0C04;
}

.our-testimonials__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.5rem;
  align-items: stretch;
}

.our-testimonials__feature {
  position: relative;
  margin: 0;
  min-height: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.our-testimonials__feature-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.our-testimonials__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.our-testimonials__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.our-testimonials__play:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.05);
}

.our-testimonials__play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #1a1a1a;
}

.our-testimonials__feature-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 1.75rem 1.5rem 1.85rem;
}

.our-testimonials__feature-title {
  margin-bottom: 0.55rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.our-testimonials__feature-text {
  max-width: 26rem;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.our-testimonials__cards {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.our-testimonials__card {
  position: relative;
  flex: 1;
  padding: 1.75rem 1.85rem 1.55rem;
  background-color: #FDF6EE;
  border-radius: 14px;
  overflow: hidden;
}

.our-testimonials__card::before,
.our-testimonials__card::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  background: url("../img/ourTestimonialComma.png") no-repeat center / contain;
  pointer-events: none;
  opacity: 0.55;
}

.our-testimonials__card::before {
  right: 4.25rem;
  bottom: 0.65rem;
}

.our-testimonials__card::after {
  right: 1rem;
  bottom: 0.65rem;
}

.our-testimonials__quote {
  position: relative;
  z-index: 1;
  margin-bottom: 1.35rem;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.75;
  color: #333;
}

.our-testimonials__author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.our-testimonials__name {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FD0C04;
}

.our-testimonials__rating {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .our-testimonials {
    padding: 3.5rem 1.25rem 4rem;
  }

  .our-testimonials__header {
    margin-bottom: 2.25rem;
  }

  .our-testimonials__layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .our-testimonials__feature-image {
    min-height: 420px;
  }

  .our-testimonials__card::before,
  .our-testimonials__card::after {
    width: 58px;
    height: 58px;
  }

  .our-testimonials__card::before {
    right: 3.35rem;
    bottom: 0.55rem;
  }

  .our-testimonials__card::after {
    right: 0.75rem;
    bottom: 0.55rem;
  }
}

@media (max-width: 540px) {
  .our-testimonials__title {
    font-size: clamp(1.55rem, 5vw, 1.85rem);
  }

  .our-testimonials__feature-image {
    min-height: 360px;
  }

  .our-testimonials__feature-caption {
    padding: 1.35rem 1.15rem 1.5rem;
  }

  .our-testimonials__quote {
    font-size: 1.02rem;
  }
}

/* ── Discover Special ── */

.discover-special {
  position: relative;
  display: flex;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 520px;
  overflow: hidden;
}

.discover-special__bg {
  position: absolute;
  inset: 0;
  background: url("../img/discoverSpecialBg.png") center / cover no-repeat;
}

.discover-special__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 42%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.discover-special__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4.5rem 2rem 4.5rem 1.25rem;
}

.discover-special__content {
  position: relative;
  max-width: 620px;
  margin-left: 0;
  padding-top: 9rem;
}

.discover-special__plane {
  position: absolute;
  top: 4rem;
  left: -3.25rem;
  width: auto;
  height: clamp(220px, 24vw, 295px);
  max-width: none;
  pointer-events: none;
  opacity: 0.95;
}

.discover-special__title {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 2rem;
  font-size: clamp(1.75rem, 3.8vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #fff;
}

.discover-special__title-line--muted {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.discover-special__features {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.discover-special__feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: 150px;
}

.discover-special__feature-icon {
  display: block;
  width: 72px;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.discover-special__feature-label {
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.discover-special__cta {
  display: inline-block;
  padding: 0.65rem 1.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #FD0C04;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.discover-special__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: #FD0C04;
  color: #fff;
}

@media (max-width: 900px) {
  .discover-special {
    min-height: 480px;
  }

  .discover-special__inner {
    padding: 3.5rem 1.25rem;
  }

  .discover-special__content {
    margin-left: 0;
    padding-top: 7.25rem;
  }

  .discover-special__plane {
    top: 2.35rem;
    left: -1.85rem;
    height: 180px;
  }

  .discover-special__features {
    gap: 1.5rem;
  }

  .discover-special__feature {
    max-width: none;
    flex: 1;
  }

  .discover-special__feature-icon {
    width: 60px;
  }

  .discover-special__feature-label {
    font-size: 0.82rem;
  }
}

@media (max-width: 640px) {
  .discover-special {
    min-height: auto;
  }

  .discover-special__title {
    margin-bottom: 1.75rem;
    font-size: clamp(1.5rem, 6.5vw, 1.95rem);
  }

  .discover-special__content {
    padding-top: 6.5rem;
  }

  .discover-special__plane {
    top: 1.75rem;
    left: -1.35rem;
    height: 155px;
  }

  .discover-special__features {
    flex-direction: column;
    gap: 1.35rem;
    margin-bottom: 2rem;
  }

  .discover-special__feature {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    max-width: none;
  }

  .discover-special__feature-icon {
    width: 54px;
    flex-shrink: 0;
  }
}

/* ── Contact Us ── */

.contact-us {
  position: relative;
  z-index: 2;
  background: #fff;
  overflow-x: clip;
  padding: 8rem 0 5.5rem;
}

.contact-us__form-wrap {
  position: relative;
  padding: 1rem 0 1rem 0.5rem;
}

.contact-us__plane {
  position: absolute;
  left: -4.25rem;
  top: -1.75rem;
  width: auto;
  height: clamp(190px, 23vw, 285px);
  max-width: none;
  opacity: 0.55;
  filter: grayscale(1);
  pointer-events: none;
}

.contact-us__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2.5rem;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem 0 0.35rem;
}

.contact-us__badge {
  display: inline-block;
  margin-bottom: 1.15rem;
  padding: 0.45rem 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FD0C04;
  background: #f9e8e4;
  border-radius: 999px;
}

.contact-us__title {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
}

.contact-us__title-accent {
  color: #FD0C04;
}

.contact-us__form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  max-width: 34rem;
}

.contact-us__field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-us__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a1a1a;
}

.contact-us__input,
.contact-us__select,
.contact-us__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 400;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-us__input::placeholder,
.contact-us__textarea::placeholder {
  color: #9a9a9a;
}

.contact-us__input:focus,
.contact-us__select:focus,
.contact-us__textarea:focus {
  border-color: #FD0C04;
  box-shadow: 0 0 0 3px rgba(253, 12, 4, 0.08);
}

.contact-us__select-wrap {
  position: relative;
}

.contact-us__select {
  appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
  color: #9a9a9a;
}

.contact-us__select:valid {
  color: #1a1a1a;
}

.contact-us__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.contact-us__textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.contact-us__submit {
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.65rem 1.85rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: #FD0C04;
  background: #fff;
  border: 1.5px solid #FD0C04;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-us__submit:hover {
  transform: translateY(-2px);
  background: #FD0C04;
  color: #fff;
  box-shadow: 0 8px 24px rgba(253, 12, 4, 0.22);
}

.contact-us__visual {
  position: relative;
  min-height: 38rem;
  border-radius: 18px;
  overflow: hidden;
}

.contact-us__photo {
  width: 100%;
  height: 100%;
  min-height: 38rem;
  object-fit: cover;
  object-position: center center;
}

.contact-us__cards {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-us__card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.contact-us__card-icon {
  flex-shrink: 0;
  width: auto;
  height: 20px;
  margin-top: 0.15rem;
  object-fit: contain;
}

.contact-us__card-body {
  min-width: 0;
}

.contact-us__card-title {
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}

.contact-us__card-text {
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.55;
  color: #555;
}

.contact-us__card-text a {
  color: inherit;
  transition: color 0.2s ease;
}

.contact-us__card-text a:hover {
  color: #FD0C04;
}

.contact-us__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: #555;
  transition: color 0.2s ease;
}

.contact-us__whatsapp:hover {
  color: #25D366;
}

.contact-us__whatsapp-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #25D366;
}

@media (max-width: 1024px) {
  .contact-us__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-us__form {
    max-width: none;
  }

  .contact-us__visual {
    min-height: 34rem;
  }

  .contact-us__photo {
    min-height: 34rem;
  }
}

@media (max-width: 640px) {
  .contact-us {
    padding: 7rem 0 4rem;
  }

  .contact-us__form-wrap {
    padding-left: 0.5rem;
  }

  .contact-us__plane {
    height: 160px;
    left: -2.75rem;
    top: -1.1rem;
  }

  .contact-us__inner {
    padding: 0 1.25rem;
  }

  .contact-us__cards {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    margin-top: -4rem;
    padding: 0 1rem 1rem;
  }

  .contact-us__visual {
    min-height: 22rem;
    display: flex;
    flex-direction: column;
  }

  .contact-us__photo {
    min-height: 22rem;
  }
}

/* ── Footer ── */

.footer {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
  padding-bottom: 1.25rem;
}

.footer__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4.75rem 2rem 9.5rem 0.35rem;
}

.footer__left {
  margin-left: -0.85rem;
}

.footer__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.25rem;
  text-align: center;
}

.footer__logo-icon {
  display: block;
  width: auto;
  height: 72px;
  max-width: none;
  margin-bottom: 0.65rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__nav ul#menu-footer-menu {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 40px;
}
.footer__nav ul#menu-footer-menu li {
    list-style: none;
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.footer__brand-name {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #FD0C04;
}

.footer__brand-tagline {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.footer__contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
}

.footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  transition: opacity 0.2s ease;
}

.footer__contact-item:hover {
  opacity: 0.85;
}

.footer__contact-item--address {
  align-items: flex-start;
  max-width: 34rem;
}

.footer__contact-item--address .footer__contact-icon-wrap {
  margin-top: 0.1rem;
}

.footer__contact-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #fff;
}

.footer__contact-icon {
  width: 18px;
  height: 18px;
  max-width: none;
  object-fit: contain;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer__nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 1.35rem 1.65rem;
  margin-bottom: 2rem;
}

.footer__nav-link {
  font-size: 1.08rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer__nav-link:hover {
  color: #FD0C04;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.footer__social-link {
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__social-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer__social-icon {
  display: block;
  width: 42px;
  height: 42px;
  max-width: none;
  object-fit: contain;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem 1.75rem;
  margin-bottom: 1rem;
}

.footer__legal-link {
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  transition: color 0.2s ease;
}

.footer__legal-link:hover {
  color: #FD0C04;
}

.footer__copyright {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

.footer__watermark {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 1.25rem 8.25rem 0.35rem;
  }

  .footer__left {
    margin-left: -0.25rem;
  }

  .footer__left {
    order: 1;
  }

  .footer__right {
    order: 2;
    align-items: flex-start;
    text-align: left;
  }

  .footer__nav,
  .footer__legal {
    justify-content: flex-start;
  }

  .footer__contact-row {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 540px) {
  .footer__brand-name {
    font-size: 1.2rem;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }

  .footer__nav-link {
    font-size: 0.95rem;
  }

  .footer__contact-item {
    font-size: 0.86rem;
  }

  .footer__watermark {
    bottom: -0.25rem;
  }
}

.our-story__logos {
      overflow: hidden;
      max-width: none;
      margin: 0;
      padding: 3rem 0;
      mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    }
 
    .our-story__logos-track {
      display: flex;
      width: max-content;
      animation: our-story-logos-scroll 25s linear infinite;
    }
 
    .our-story__logos-set {
      display: flex;
      align-items: center;
      gap: 3.35rem;
      padding-inline: 1.675rem;
      flex-shrink: 0;
    }
 
    .our-story__logos .our-story__logo {
      display: block;
      width: auto;
      height: 84px;
      max-width: 150px;
      margin: 0;
      object-fit: contain;
      flex-shrink: 0;
    }
 
    @keyframes our-story-logos-scroll {
      from {
        transform: translateX(0);
      }
 
      to {
        transform: translateX(-50%);
      }
    }
 
    @media (max-width: 540px) {
      .our-story__logos {
        padding: 2.25rem 0;
      }
 
      .our-story__logos-set {
        gap: 2.35rem;
        padding-inline: 1.175rem;
      }
 
      .our-story__logos .our-story__logo {
        height: 64px;
        max-width: 120px;
      }
    }
 
    @media (prefers-reduced-motion: reduce) {
      .our-story__logos {
        mask-image: none;
        -webkit-mask-image: none;
        overflow-x: auto;
        padding-inline: 2rem;
      }
 
      .our-story__logos-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1320px;
        margin: 0 auto;
        gap: 2rem;
      }
 
      .our-story__logos-set {
        flex-wrap: wrap;
        justify-content: center;
        padding-inline: 0;
      }
 
      .our-story__logos-set + .our-story__logos-set {
        display: none;
      }
    }

 .our-benefits__services {
      position: relative;
      width: 100%;
      max-width: none;
      margin: 4.5rem 0 0;
      padding: 0;
      background: #fff;
      text-align: center;
      overflow: hidden;
    }
 
    .our-benefits__services-cream {
      position: relative;
      padding: 4rem 2rem 1.15rem;
      background: #FDF6EE;
      overflow: hidden;
    }
 
    .our-benefits__services-cream::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("assets/ourStoryBg.png") center 7.5rem / min(100%, 1600px) auto no-repeat;
      filter: invert(1) grayscale(1) brightness(0.9);
      opacity: 0.22;
      pointer-events: none;
      z-index: 0;
    }
 
    .our-benefits__services-white {
      position: relative;
      padding: 1.15rem 2rem 5rem;
      background: #ffffff;
    }
 
    .our-benefits__services .our-benefits__plane {
      position: absolute;
      width: auto;
      pointer-events: none;
      z-index: 1;
    }
 
    .our-benefits__services .our-benefits__plane--up {
      left: 4.5rem;
      top: 6rem;
      height: 400px;
    }
 
    .our-benefits__services .our-benefits__plane--down {
      right: -2.5rem;
      top: 1rem;
      bottom: auto;
      height: 400px;
    }
 
    .our-benefits__services-inner {
      position: relative;
      z-index: 2;
      max-width: 1180px;
      margin: 0 auto;
    }
 
    .our-benefits__desc--services {
      margin-bottom: 2.75rem;
    }
 
    .our-benefits__service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.15rem;
      max-width: 1040px;
      margin: 0 auto;
    }
 
    .our-benefits__service-grid--top {
      margin-bottom: 0;
    }
 
    .our-benefits__service-grid--bottom {
      margin-top: 0;
    }
 
    .our-benefits__service-card {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      min-height: 320px;
      cursor: pointer;
    }
 
    .our-benefits__service-card img {
      width: 100%;
      height: 100%;
      min-height: 320px;
      object-fit: cover;
      display: block;
    }
 
    .our-benefits__service-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.15) 45%, transparent 70%);
      transition: background 0.45s ease;
      pointer-events: none;
    }
 
    .our-benefits__service-content {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 1.25rem;
      text-align: center;
      transform: translateY(0);
      transition: bottom 0.45s ease, transform 0.45s ease;
    }
 
    .our-benefits__service-title {
      margin: 0;
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.35;
      color: #fff;
      text-align: center;
    }
 
    .our-benefits__service-text {
      max-height: 0;
      margin: 0;
      overflow: hidden;
      opacity: 0;
      font-size: 0.82rem;
      font-weight: 500;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.92);
      text-align: center;
      transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.45s ease;
    }
 
    .our-benefits__service-btn {
      display: inline-block;
      max-height: 0;
      margin: 0;
      padding: 0 1.1rem;
      overflow: hidden;
      opacity: 0;
      font-size: 0.78rem;
      font-weight: 500;
      line-height: 1;
      color: #1a1a1a;
      background: #fff;
      border: 1.5px solid #FD0C04;
      border-radius: 999px;
      pointer-events: auto;
      transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.45s ease, padding 0.45s ease, transform 0.2s ease;
    }
 
    @media (hover: hover) {
      .our-benefits__service-card:hover .our-benefits__service-overlay {
        background: rgba(15, 25, 45, 0.55);
      }
 
      .our-benefits__service-card:hover .our-benefits__service-content {
        bottom: 50%;
        transform: translateY(50%);
      }
 
      .our-benefits__service-card:hover .our-benefits__service-title {
        margin-bottom: 0.75rem;
        font-size: 1.15rem;
      }
 
      .our-benefits__service-card:hover .our-benefits__service-text {
        max-height: 10rem;
        margin-bottom: 1rem;
        opacity: 1;
      }
 
      .our-benefits__service-card:hover .our-benefits__service-btn {
        max-height: 3rem;
        padding: 0.45rem 1.1rem;
        opacity: 1;
      }
 
      .our-benefits__service-card:hover .our-benefits__service-btn:hover {
        transform: translateY(-2px);
      }
    }
 
    @media (max-width: 900px) {
      .our-benefits__service-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
 
    @media (max-width: 540px) {
      .our-benefits__services {
        margin: 3rem 0 0;
      }
 
      .our-benefits__services-cream {
        padding: 3rem 1.25rem 1rem;
      }
 
      .our-benefits__services-white {
        padding: 1rem 1.25rem 4rem;
      }
 
      .our-benefits__services .our-benefits__plane--up,
      .our-benefits__services .our-benefits__plane--down {
        display: none;
      }
 
      .our-benefits__service-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
 
      .our-benefits__service-card,
      .our-benefits__service-card img {
        min-height: 280px;
      }
    }