/* ==========================================
 * GLOBAL PREMIUM SCROLLBAR STYLING
 * ========================================== */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background: #3f72af;
  border-radius: 6px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #00579f;
  box-shadow: 0 0 8px rgba(0, 87, 159, 0.2);
}




* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden !important;
}

body {
  color: #111;
  background: #f5f5f5;
  font-family: "Inter", "Urbanist", Arial, sans-serif;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 163px;
  background: #f5f5f5;
}

.brand {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 230px;
  height: 163px;
  place-items: start center;
  padding-top: 10px;
  background: #f5f5f5;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 190px;
  max-height: 138px;
  object-fit: contain;
}

.topbar {
  position: absolute;
  left: 230px;
  right: 0;
  top: 0;
  height: 89px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 30px 10px 30px;
  background: #f5f5f5;
}

.contact-block {
  display: flex;
  align-items: center;
  min-width: 246px;
}

.contact-left {
  margin-right: 80px;
}

.contact-right {
  min-width: 270px;
}

.social {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 5px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}

.social i {
  display: block;
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.whatsapp {
  background: #24b45a;
}

.viber {
  background: #7a55a2;
  margin-right: 37px;
}

.contact-text {
  display: grid;
  gap: 5px;
  color: #62666d;
  font-size: 16px;
  line-height: 1.1;
  white-space: nowrap;
}

.contact-text strong {
  font-weight: 800;
}

.contact-text.company {
  gap: 4px;
  color: #0b0b0b;
}

.contact-text.company strong {
  color: #62666d;
}

.language {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 47px;
  margin-left: auto;
  padding: 0 17px 0 14px;
  border: 0;
  border-radius: 1px;
  background: #fff;
  color: #252525;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  font: 800 19px/1 "Urbanist", Arial, sans-serif;
}

.flag {
  display: block;
  width: 33px;
  height: 24px;
  object-fit: cover;
}

.chevron {
  position: relative;
  top: 1px;
  color: #777;
  font-size: 21px;
}

.plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 157px;
  height: 46px;
  margin-left: 16px;
  border-radius: 5px;
  background: #00579f;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
}

.navbar {
  position: absolute;
  left: 230px;
  right: 0;
  bottom: 0;
  height: 74px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 82px;
  padding-left: 40px;
  padding-right: 30px;
  background: #00579f;
}

.navbar a,
.navbar button {
  display: flex;
  align-items: center;
  height: 74px;
  margin-top: 0;
  margin-right: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-size: 18.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  font-family: inherit;
  transition: color 0.25s ease;
}

.navbar > a:hover,
.navbar > .nav-item > a:hover,
.navbar > .nav-item > button:hover {
  color: #ffc226;
}

.navbar > a.active,
.navbar > .nav-item > a.active,
.navbar > .nav-item > button.active {
  color: #ffc226;
  position: relative;
}

@media (min-width: 1051px) {
  .navbar > a,
  .navbar > .nav-item > a,
  .navbar > .nav-item > button {
    position: relative;
  }

  .navbar > a::after,
  .navbar > .nav-item > a::after,
  .navbar > .nav-item > button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3.5px;
    background: #ffc226;
    border-radius: 4px 4px 0 0;
    transition: width 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .navbar > a:hover::after,
  .navbar > .nav-item > a:hover::after,
  .navbar > .nav-item > button:hover::after,
  .navbar > a.active::after,
  .navbar > .nav-item > a.active::after,
  .navbar > .nav-item > button.active::after {
    width: 100%;
    left: 0;
  }
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 74px;
}

.has-mega-menu {
  position: static;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  display: grid;
  width: max-content;
  min-width: 220px;
  padding: 17px 0;
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.mega-menu {
  position: absolute;
  left: -206px;
  top: 100%;
  z-index: 30;
  display: grid;
  align-items: start;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: calc(100% + 197px);
  min-height: calc(100vh - 187px);
  padding: 22px 24px 24px;
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.mega-column {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 100%;
  padding: 0 16px;
}

.mega-column:first-child {
  padding-left: 4px;
}

.mega-column:not(:first-child) {
  border-left: 1px solid #edf1f5;
}

.mega-column-wide {
  display: block;
  column-count: 2;
  column-gap: 24px;
}

.mega-column-wide h3 {
  break-after: avoid;
  column-span: all;
}

.mega-column h3 {
  margin: 0 0 10px;
  color: #00579f;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.mega-column h3:not(:first-child) {
  margin-top: 16px;
}

.dropdown-menu a {
  height: auto;
  min-height: 52px;
  padding: 0 16px;
  color: #272727;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.navbar .mega-menu a {
  display: block;
  height: auto;
  min-height: 0;
  padding: 4px 8px;
  border-radius: 4px;
  color: #252525;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
  white-space: normal;
}

.navbar .mega-column-wide a {
  break-inside: avoid;
  margin-bottom: 8px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus,
.mega-menu a:hover,
.mega-menu a:focus {
  background: #f3f7fb;
  color: #00579f;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-mega-menu:hover .mega-menu,
.has-mega-menu:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu:focus-within .mega-menu {
  transform: translateY(0);
}

.down {
  display: inline-block;
  position: relative;
  top: 1px;
  margin-left: 7px;
  font-size: 11px;
  font-weight: 900;
  transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.25s ease;
}

.navbar .has-dropdown:hover .down,
.navbar .has-mega-menu:hover .down {
  transform: rotate(180deg) translateY(1px);
  color: #ffc226;
}

.hero {
  position: relative;
  height: calc(100vh - 163px);
  min-height: 477px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #101826;
}

.hero-media,
.hero-placeholder,
.hero-video {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
  pointer-events: none;
}

.hero-placeholder {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transition: opacity 0.8s ease;
}

.hero-video {
  left: 50%;
  top: 50%;
  z-index: 0;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.8s ease;
}

.hero-video iframe,
#hero-youtube {
  width: 100%;
  height: 100%;
}

.hero-video iframe {
  border: 0;
}

.hero.video-loaded .hero-placeholder {
  opacity: 0;
}

.hero.video-loaded .hero-video {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.16) 36%, rgba(0, 0, 0, 0.05) 66%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.hero h1 {
  position: relative;
  z-index: 3;
  margin: 0 0 12px;
  color: #ffc226;
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  text-shadow:
    0 3px 8px rgba(0, 0, 0, 0.78),
    0 10px 28px rgba(0, 0, 0, 0.55);
}

.about-section {
  overflow: hidden;
  background: #f5f5f5;
  padding: 24px 0 0;
}

.about-wrap {
  display: grid;
  grid-template-columns: 47.5% 52.5%;
  align-items: center;
  width: 100%;
  max-width: 1366px;
  min-height: 705px;
  margin: 0 auto;
}

.about-art {
  position: relative;
  min-height: 705px;
}

.about-blob {
  position: absolute;
  left: 50px;
  top: 175px;
  width: 540px;
  height: 388px;
  border-radius: 52% 48% 50% 50%;
  background: #fbf7f0;
}

.about-main-img {
  position: absolute;
  left: 51px;
  top: 29px;
  z-index: 1;
  width: 538px;
  height: auto;
  animation: floatAboutTraveler 2.2s ease-in-out infinite alternate;
}

.about-shape {
  position: absolute;
  z-index: 2;
  width: auto;
  height: auto;
  pointer-events: none;
}

.shape-left {
  left: 0;
  top: 348px;
}

.shape-right {
  right: 36px;
  bottom: 83px;
}

.about-copy {
  max-width: 660px;
  padding: 8px 74px 0 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #14233b;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.about-copy h2 {
  margin: 0 0 10px;
  color: #17243a;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.15;
}

.about-copy p:not(.eyebrow) {
  margin: 0 0 24px;
  color: #4d5561;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.52;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 222px;
  height: 60px;
  margin-top: 12px;
  border-radius: 8px;
  background: linear-gradient(90deg, #4b00f3 0%, #8b00ff 100%);
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
}

.apt-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.apt-everest-treks {
  overflow-x: hidden;
  padding: 70px 0;
  background: #f5f5f5;
  font-family: "Montserrat", "Urbanist", Arial, sans-serif;
}

.apt-everest-treks h2,
.apt-section-title h2 {
  position: relative;
  margin: 0;
  color: #1a2639;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.apt-everest-treks h2 {
  padding-bottom: 48px;
}

.apt-section-title {
  margin-bottom: 56px;
  text-align: center;
}

.apt-section-title h2::after {
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 80px;
  height: 3px;
  background: #f9a826;
  content: "";
  transform: translateX(-50%);
}

.apt-everest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.apt-everest-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 520px;
  border-radius: 20px;
  background: #fafaf8;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s cubic-bezier(.23, 1, .32, 1), box-shadow 0.6s cubic-bezier(.23, 1, .32, 1);
}

.apt-everest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.15);
}

.apt-everest-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #e8e6e0;
}

.apt-everest-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .45) 100%);
  content: "";
  opacity: 0.75;
  transition: opacity 0.6s ease;
}

.apt-everest-card:hover .apt-everest-image::after {
  opacity: 1;
}

.apt-everest-image img,
.apt-trek-card > img,
.apt-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apt-everest-image img {
  filter: grayscale(15%) contrast(1.05);
  transition: transform 1.2s cubic-bezier(.23, 1, .32, 1), filter 0.6s ease;
}

.apt-everest-card:hover .apt-everest-image img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.08);
}

.apt-everest-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 35px 36px;
  background: linear-gradient(to top, rgba(10, 10, 10, .95), rgba(10, 10, 10, .82), transparent);
}

.apt-everest-content h3 {
  max-width: 65%;
  margin: 0;
  color: #fafaf8;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.apt-everest-content span {
  flex: 0 0 auto;
  padding: 14px 28px;
  border: 1px solid rgba(250, 250, 248, .45);
  color: #fafaf8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.apt-region-treks,
.apt-gallery-section {
  padding: 58px 0;
  background: #f5f5f5;
  font-family: "Montserrat", "Urbanist", Arial, sans-serif;
}

.apt-region-alt {
  background: #f5f5f5;
}

.apt-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.apt-trek-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  transition: transform 0.4s cubic-bezier(.165, .84, .44, 1), box-shadow 0.4s cubic-bezier(.165, .84, .44, 1);
}

.apt-trek-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
}

.apt-trek-card > img {
  height: 280px;
  transition: transform 0.4s cubic-bezier(.165, .84, .44, 1);
}

.apt-trek-card:hover > img {
  transform: scale(1.08);
}

.apt-trek-card div {
  padding: 25px;
}

.apt-trek-card h3 {
  margin: 0 0 18px;
  color: #1a2639;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.apt-trek-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 45px;
  padding: 12px 24px;
  border-radius: 50px;
  background: #3f72af;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 5px 20px rgba(63, 114, 175, .3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.apt-trek-card:hover span {
  background: #1a2639;
  box-shadow: 0 7px 25px rgba(26, 38, 57, .3);
}

.apt-section-action {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

.apt-section-action a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 190px;
  min-height: 52px;
  padding: 14px 26px 14px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 3px;
  background:
    linear-gradient(135deg, #00579f 0%, #3f72af 52%, #7b16ff 100%);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  box-shadow:
    0 14px 30px rgba(0, 87, 159, .22),
    inset 0 1px 0 rgba(255, 255, 255, .28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apt-section-action a::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  content: "";
  transform: translateX(-115%);
  transition: transform 0.6s ease;
}

.apt-section-action a::after {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 5px;
  background: rgba(255, 255, 255, .18);
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
  transition: transform 0.3s ease, background 0.3s ease;
}

.apt-section-action a:hover {
  box-shadow:
    0 18px 42px rgba(0, 87, 159, .3),
    inset 0 1px 0 rgba(255, 255, 255, .32);
  transform: translateY(-3px);
}

.apt-section-action a:hover::before {
  transform: translateX(115%);
}

.apt-section-action a:hover::after {
  background: rgba(255, 255, 255, .28);
  transform: translateX(4px);
}

.apt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.apt-gallery-grid img {
  height: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
  transition: transform 0.3s ease;
}

.apt-gallery-grid img:hover {
  transform: scale(1.03);
}

.promo-section {
  position: relative;
  min-height: 725px;
  margin-top: 74px;
  overflow: visible;
  background: #fbf6ef url("assets/promo-bg.webp") center center / cover no-repeat;
}

.promo-wrap {
  position: relative;
  max-width: 1366px;
  min-height: 725px;
  margin: 0 auto;
}

.promo-copy {
  position: absolute;
  left: 60px;
  top: 225px;
  z-index: 2;
  width: 485px;
}

.promo-copy h2 {
  margin: 0 0 18px;
  color: #20224b;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.18;
}

.promo-copy p {
  margin: 0;
  color: #343a46;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.6;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 55px;
  margin-top: 33px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4b00f3 0%, #8b00ff 100%);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.promo-person {
  position: absolute;
  left: 50%;
  top: 8px;
  z-index: 1;
  width: 516px;
  height: auto;
  transform: translateX(-50%);
  animation: floatPromo 1.8s ease-in-out infinite alternate;
}

.promo-offer {
  position: absolute;
  right: 70px;
  top: 212px;
  z-index: 2;
  width: 300px;
}

.promo-percent {
  display: grid;
  grid-template-columns: auto auto;
  align-items: start;
  width: max-content;
  color: #050505;
}

.promo-percent .number {
  grid-row: 1 / span 2;
  font-size: 176px;
  font-weight: 900;
  line-height: 0.73;
  letter-spacing: 0;
}

.promo-percent .percent {
  margin: 27px 0 0 7px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.promo-percent .off {
  margin: 5px 0 0 8px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.promo-offer ul {
  display: grid;
  gap: 15px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.promo-offer li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #292d35;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.promo-offer i {
  color: #6d12ff;
  font-size: 19px;
}

.contact-page {
  position: relative;
  min-height: calc(100vh - 163px);
  padding: 86px 40px;
  background:
    linear-gradient(90deg, rgba(13, 25, 31, .88), rgba(13, 25, 31, .6)),
    url("assets/hero-unsplash.jpg") center 60% / cover no-repeat;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(420px, 540px) minmax(440px, 560px);
  max-width: 1100px;
  min-height: 620px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.contact-info-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 62px 58px 28px;
  background: linear-gradient(160deg, rgba(0, 87, 159, .98) 0%, rgba(23, 56, 103, .98) 52%, rgba(35, 116, 132, .96) 100%);
  color: #fff;
}

.contact-kicker {
  margin: 0 0 14px;
  color: #c49c5d;
  font-family: "Montserrat", "Urbanist", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.contact-info-panel h1,
.contact-form-panel h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-info-panel h1 {
  max-width: none;
  font-size: 35px;
  line-height: 1.15;
  white-space: nowrap;
}

.contact-details {
  display: grid;
  gap: 34px;
  margin-top: 44px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 18px;
  align-items: start;
}

.contact-icon {
  display: grid;
  place-items: center;
  color: #c49c5d;
  font-size: 20px;
}

.contact-detail h2 {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, .68);
  font-family: "Montserrat", "Urbanist", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.8px;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-detail p {
  margin: 0;
  color: #f5f5f5;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-detail:first-child p {
  white-space: nowrap;
}

.contact-socials {
  display: flex;
  gap: 24px;
  margin-top: 42px;
  padding-top: 0;
}

.contact-socials a {
  color: rgba(255, 255, 255, .72);
  font-size: 19px;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.contact-socials a:hover {
  color: #c49c5d;
  transform: translateY(-2px);
}

.contact-form-panel {
  padding: 64px 60px 26px;
  background: #fff;
}

.contact-form-panel h2 {
  color: #1c1c1c;
  font-size: 38px;
  line-height: 1.2;
}

.contact-form {
  display: grid;
  gap: 28px;
  margin-top: 30px;
}

.contact-form label {
  display: grid;
  gap: 12px;
}

.contact-form span {
  color: #343434;
  font-family: "Montserrat", "Urbanist", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #e7e7e7;
  border-radius: 0;
  background: transparent;
  color: #1d1d1d;
  font: 600 17px/1.4 "Urbanist", Arial, sans-serif;
  outline: 0;
  transition: border-color .25s ease;
}

.contact-form input {
  height: 42px;
}

.contact-form textarea {
  min-height: 86px;
  resize: vertical;
}

.contact-form input::placeholder {
  color: #b6b6b6;
  font-weight: 600;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c49c5d;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  margin-top: 6px;
  border: 0;
  border-radius: 0;
  background: #b99458;
  color: #fff;
  cursor: pointer;
  font-family: "Montserrat", "Urbanist", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease;
}

.contact-form button:hover {
  background: #00579f;
  transform: translateY(-2px);
}

@keyframes floatPromo {
  from {
    transform: translateX(-50%) translateY(-8px);
  }

  to {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes floatAboutTraveler {
  from {
    transform: translateY(-8px);
  }

  to {
    transform: translateY(12px);
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background: #173867;
  color: #fff;
  font-weight: 800;
}

.footer-main {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  max-width: 1366px;
  min-height: 310px;
  margin: 0 auto;
  padding: 48px 50px 20px;
}

.footer-brand img {
  display: block;
  width: 157px;
  height: 142px;
  object-fit: contain;
  background: #fff;
}

.footer-brand h3 {
  margin: 19px 0 41px;
  font-size: 19px;
  line-height: 1.2;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-social a,
.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
}

.footer-social i {
  display: inline-block;
  width: 13px;
  text-align: center;
  font-size: 16px;
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 55px;
  padding-top: 9px;
}

.footer-links div {
  display: grid;
  gap: 24px;
  align-content: start;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  line-height: 1.1;
  white-space: nowrap;
}

.footer-links i {
  color: #8417ff;
  font-size: 17px;
}

.footer-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 660px 1fr;
  align-items: start;
  max-width: 1366px;
  min-height: auto;
  margin: 0 auto;
  padding: 30px 50px 30px 50px;
  border-top: 1px solid rgba(255, 137, 0, 0.45);
}

.assoc-logos {
  display: flex;
  align-items: center;
  gap: 28px;
}

.assoc-logos img {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.footer-contact {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.footer-contact p,
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-size: 21px;
  line-height: 1.2;
  white-space: nowrap;
  font-family: "Inter", "Urbanist", Arial, sans-serif;
}

.footer-contact span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #7414ff;
  color: #fff;
  font-size: 14px;
}

.footer-contact i,
.footer-links i,
.mobile-menu-links i,
.chevron,
.down {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.mobile-menu-footer {
  display: none;
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  margin: 30px 0 0;
  font-size: 19px;
  white-space: nowrap;
  color: #fff;
}

.chat {
  position: fixed;
  right: 36px;
  bottom: 27px;
  z-index: 5;
  width: 55px;
  height: 55px;
  border: 0;
  border-radius: 50%;
  background: #126bd5;
  box-shadow: 0 4px 11px rgba(0, 0, 0, 0.2);
}

.chat::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 15px;
  width: 25px;
  height: 20px;
  border-radius: 4px 4px 4px 1px;
  background: #fff;
}

.chat::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 33px;
  border-width: 0 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

.chat span,
.chat span::before {
  position: absolute;
  z-index: 1;
  left: 22px;
  width: 14px;
  height: 2px;
  background: #126bd5;
  content: "";
}

.chat span {
  top: 23px;
}

.chat span::before {
  left: 0;
  top: 6px;
  width: 10px;
}

@media (max-width: 1400px) {
  .topbar {
    gap: 20px;
    padding-right: 30px;
  }

  .navbar {
    gap: 52px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar a {
    font-size: 17.5px;
  }

  .navbar .mega-menu a {
    height: auto;
    min-height: 0;
    padding: 4px 0;
    font-size: 13.5px;
    line-height: 1.25;
  }

  .plan {
    width: 145px;
    font-size: 16px;
  }
}

@media (max-width: 1050px) {
  .site-header {
    height: auto;
  }

  .brand,
  .topbar {
    position: static;
  }

  .brand {
    width: 100%;
    height: 118px;
    padding-top: 12px;
  }

  .brand img {
    width: 152px;
    max-height: 98px;
  }

  .topbar {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 16px 16px;
    gap: 14px;
  }

  .contact-left {
    margin-right: 0;
  }

  .contact-block {
    min-width: auto;
  }

  .contact-right {
    min-width: auto;
  }

  .contact-text {
    font-size: 14px;
  }

  .language {
    height: 42px;
    font-size: 16px;
  }

  .plan {
    width: auto;
    min-width: 138px;
    height: 42px;
    margin-left: 0;
    padding: 0 16px;
    font-size: 15px;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 28px);
    height: 48px;
    margin: 0 14px 14px;
    border: 0;
    border-radius: 5px;
    background: #00579f;
    color: #fff;
    cursor: pointer;
    font: 800 17px/1 "Urbanist", Arial, sans-serif;
  }

  .navbar {
    position: static;
    display: none;
    width: calc(100% - 28px);
    height: auto;
    min-height: auto;
    margin: 0 14px 14px;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 5px;
    background: #00579f;
    padding: 8px;
    gap: 0;
    align-content: start;
  }

  .mobile-nav-open .navbar {
    display: grid;
    max-height: calc(100svh - 84px);
  }

  .navbar > a,
  .navbar > .nav-item {
    display: none;
  }

  .navbar > a {
    display: flex;
  }

  .navbar > .nav-item {
    display: grid;
  }

  .mobile-menu-footer {
    display: none;
  }

  .mobile-menu-brand img {
    display: block;
    width: 128px;
    height: 116px;
    object-fit: contain;
    background: #f5f5f5;
  }

  .mobile-menu-brand h3 {
    margin: 18px 0 25px;
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
  }

  .mobile-menu-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
  }

  .navbar .mobile-menu-social a,
  .navbar .mobile-menu-social a:last-child {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: auto;
    min-height: auto;
    padding: 0;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-menu-social i {
    width: 13px;
    text-align: center;
    font-size: 13px;
  }

  .mobile-menu-links {
    display: none;
  }

  .navbar .mobile-menu-links a,
  .navbar .mobile-menu-links a:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    width: max-content;
    max-width: 100%;
    min-height: auto;
    padding: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
    white-space: normal;
  }

  .mobile-menu-links i {
    flex: 0 0 auto;
    color: #8417ff;
    font-size: 13px;
    transform: rotate(45deg);
  }

  .mobile-menu-links .fa-arrow-up-right::before {
    content: "\f062";
  }

  .navbar a,
  .navbar button,
  .navbar a:last-child {
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    height: auto;
    margin: 0;
    padding: 0 12px;
    border-radius: 4px;
    font-size: 17px;
  }

  .nav-item {
    display: grid;
    width: 100%;
    height: auto;
    margin: 0;
  }

  .has-mega-menu {
    position: relative;
  }

  .nav-item .nav-link {
    margin: 0;
  }

  .dropdown-menu,
  .mega-menu {
    position: static;
    display: none;
    width: 100%;
    min-height: 0;
    margin: 4px 0 8px;
    padding: 10px;
    border: 0;
    border-radius: 5px;
    background: #fff;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mega-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px 12px;
  }

  .has-dropdown.is-open .dropdown-menu,
  .has-dropdown.is-open .mega-menu,
  .has-dropdown:focus-within .dropdown-menu,
  .has-dropdown:focus-within .mega-menu {
    display: grid;
  }

  .has-dropdown:not(.is-open):focus-within .dropdown-menu,
  .has-dropdown:not(.is-open):focus-within .mega-menu,
  .has-dropdown:not(.is-open):hover .dropdown-menu,
  .has-dropdown:not(.is-open):hover .mega-menu,
  .has-mega-menu:not(.is-open):hover .mega-menu {
    display: none;
  }

  .mega-column,
  .mega-column:first-child {
    min-height: auto;
    padding: 0 12px 14px;
    border-left: 0;
  }

  .mega-column:nth-child(even) {
    border-left: 1px solid #edf1f5;
  }

  .mega-column h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    margin-bottom: 8px;
    padding: 12px 10px;
    border-radius: 4px;
    background: #f3f7fb;
    cursor: pointer;
    font-size: 14px;
  }

  .mega-column h3::after {
    content: "\f078";
    color: #00579f;
    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 900;
  }

  .mega-column h3.is-open::after {
    transform: rotate(180deg);
  }

  .dropdown-menu a,
  .dropdown-menu a:last-child,
  .mega-menu a,
  .mega-menu a:last-child {
    min-height: 42px;
    margin: 0;
    padding: 0 10px;
    font-size: 15px;
  }

  .navbar .mega-menu a,
  .navbar .mega-menu a:last-child {
    display: none;
    min-height: 0;
    padding: 8px 14px;
    font-size: 14px;
    line-height: 1.3;
  }

  .navbar .mega-menu a.is-visible,
  .navbar .mega-menu a.is-visible:last-child {
    display: block;
  }

  .hero {
    height: 480px;
    min-height: 480px;
  }

  .hero h1 {
    padding: 0 18px;
    font-size: 46px;
  }

  .apt-everest-grid,
  .apt-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apt-everest-card {
    min-height: 440px;
  }

  .contact-page {
    min-height: auto;
    padding: 56px 22px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 44px 34px;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: relative;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 74px;
    background: #fff;
  }

  .brand {
    grid-column: 1;
    justify-content: start;
    width: auto;
    height: 74px;
    padding: 9px 0 8px 17px;
    background: transparent;
    place-items: center start;
  }

  .brand img {
    width: 108px;
    max-height: 58px;
    padding: 0;
    background: transparent;
    filter: none;
  }

  .topbar {
    display: none;
  }

  .mobile-menu-toggle {
    grid-column: 2;
    width: 30px;
    height: 22px;
    margin: 0 10px 0 0;
    border: 1px solid #ff6b2a;
    border-radius: 2px;
    background: #fff;
    color: #ff6b2a;
    box-shadow: none;
    backdrop-filter: none;
    font-size: 14px;
    line-height: 1;
  }

  .mobile-menu-toggle span {
    display: none;
  }

  .mobile-menu-toggle i {
    font-size: 14px;
  }

  .navbar {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 74px;
    grid-column: 1 / -1;
    width: auto;
    margin: 0;
    padding: 0;
    background: #173867;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
  }

  .mobile-nav-open .navbar {
    max-height: calc(100svh - 86px);
    height: max-content;
    min-height: 0;
  }

  .hero {
    height: calc(100svh - 74px);
    min-height: 560px;
    place-items: start center;
    background: #0d1a24;
  }

  .hero-placeholder {
    opacity: 1 !important;
    object-position: center center;
    filter: saturate(1.12) contrast(1.05) brightness(1.08);
  }

  .hero-video {
    display: none;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(4, 16, 27, .08) 0%, rgba(4, 16, 27, .16) 34%, rgba(4, 16, 27, .28) 62%, rgba(4, 16, 27, .08) 100%),
      radial-gradient(circle at 50% 36%, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .22) 52%, rgba(0, 0, 0, .08) 100%);
  }

  .hero h1 {
    width: min(100%, 330px);
    margin-top: 25svh;
    padding: 0 18px;
    color: #ffc226;
    font-size: 34px;
    line-height: .96;
    text-shadow:
      0 2px 4px rgba(0, 0, 0, .75),
      0 10px 24px rgba(0, 0, 0, .42);
  }

  .mobile-menu-footer {
    min-height: auto;
    padding: 26px 26px 18px;
    align-content: start;
    gap: 18px;
  }

  .mobile-menu-brand img {
    width: 100px;
    height: 90px;
  }

  .mobile-menu-brand h3 {
    margin: 15px 0 25px;
    font-size: 12px;
  }

  .mobile-menu-social {
    gap: 19px;
  }

  .navbar .mobile-menu-social a,
  .navbar .mobile-menu-social a:last-child {
    font-size: 10px;
  }

  .mobile-menu-links {
    gap: 17px;
  }

  .navbar .mobile-menu-links a,
  .navbar .mobile-menu-links a:last-child {
    font-size: 15px;
  }

  .site-footer {
    overflow: hidden;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    padding: 32px 32px 28px;
  }

  .footer-brand img {
    width: 102px;
    height: 92px;
  }

  .footer-brand h3 {
    margin: 15px 0 25px;
    font-size: 13px;
  }

  .footer-social {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-social a {
    font-size: 10px;
  }

  .footer-social i {
    font-size: 13px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    padding-top: 0;
  }

  .footer-links div {
    display: contents;
  }

  .footer-links a {
    width: 100%;
    max-width: none;
    gap: 7px;
    font-size: 14px;
    line-height: 1.2;
    white-space: normal;
  }

  .footer-links i {
    flex: 0 0 auto;
    font-size: 12px;
    transform: rotate(45deg);
  }

  .footer-links .fa-arrow-up-right::before {
    content: "\f062";
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 20px 32px 20px;
  }

  .assoc-logos {
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .assoc-logos img {
    width: 52px;
    height: 52px;
  }

  .footer-contact {
    gap: 12px;
    margin-top: 0;
  }

  .footer-contact p,
  .footer-contact a {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer-contact span {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .copyright {
    position: static;
    max-width: calc(100% - 62px);
    margin: 0 auto;
    transform: none;
    font-size: 13px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
  }

  .chat {
    right: 17px;
    bottom: 17px;
    width: 48px;
    height: 48px;
  }

  .chat::before {
    left: 14px;
    top: 13px;
    width: 22px;
    height: 18px;
  }

  .chat::after {
    left: 28px;
    top: 30px;
  }

  .chat span {
    left: 20px;
    top: 21px;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .mega-column,
  .mega-column:first-child,
  .mega-column:not(:first-child) {
    padding: 0;
    border-left: 0;
  }

  .mega-column h3:not(:first-child) {
    margin-top: 12px;
  }

  .contact-block {
    justify-content: center;
    min-width: 100%;
  }

  .language {
    justify-content: center;
    flex: 1 1 120px;
    margin-left: 0;
  }

  .plan {
    flex: 1 1 160px;
    margin-left: 0;
  }

  .navbar a,
  .navbar button,
  .navbar a:last-child {
    min-height: 44px;
    font-size: 16px;
  }

  .dropdown-menu,
  .mega-menu {
    padding: 10px;
  }

  .navbar .mega-menu a,
  .navbar .mega-menu a:last-child {
    padding: 7px 8px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .about-section {
    padding: 0;
  }

  .about-wrap {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .about-copy {
    order: 1;
    width: 100%;
    max-width: none;
    padding: 44px 24px 12px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 30px;
    text-align: center;
  }

  .about-copy h2 {
    max-width: 330px;
    margin: 0 auto 16px;
    font-size: 34px;
    line-height: 1.08;
    text-align: center;
  }

  .about-copy p:not(.eyebrow) {
    max-width: 330px;
    margin: 0 auto 18px;
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
  }

  .booking-btn {
    display: flex;
    width: min(100%, 220px);
    height: 52px;
    margin: 24px auto 0;
    font-size: 16px;
  }

  .about-art {
    order: 2;
    width: 100%;
    min-height: 430px;
    margin-top: 8px;
    overflow: hidden;
  }

  .about-blob {
    left: 50%;
    top: 92px;
    width: 330px;
    height: 270px;
    transform: translateX(-50%);
  }

  .about-main-img {
    left: 50%;
    top: 0;
    width: min(100%, 390px);
    max-width: none;
    animation: none;
    transform: translateX(-50%);
  }

  .about-shape {
    transform: scale(.78);
  }

  .shape-left {
    left: 4px;
    top: 235px;
  }

  .shape-right {
    right: 14px;
    bottom: 44px;
  }

  .promo-section {
    min-height: 640px;
    margin-top: 50px;
    overflow: hidden;
    background-position: 58% top;
  }

  .promo-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .82) 0%, rgba(255, 255, 255, .34) 48%, rgba(255, 247, 238, .72) 100%),
      linear-gradient(90deg, rgba(255, 247, 238, .92) 0%, rgba(255, 247, 238, .54) 60%, rgba(255, 247, 238, .18) 100%);
    pointer-events: none;
  }

  .promo-wrap {
    display: flex;
    z-index: 2;
    min-height: 640px;
    padding: 42px 26px 44px;
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-copy,
  .promo-offer {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
  }

  .promo-copy {
    z-index: 2;
  }

  .promo-copy h2 {
    margin-bottom: 14px;
    color: #20224b;
    font-size: 28px;
    line-height: 1.2;
  }

  .promo-copy p {
    max-width: 300px;
    color: #303744;
    font-size: 15px;
    line-height: 1.7;
  }

  .promo-btn {
    width: 160px;
    height: 46px;
    margin-top: 28px;
    box-shadow: 0 12px 24px rgba(105, 0, 255, .24);
    font-size: 14px;
  }

  .promo-person {
    display: none;
  }

  .promo-offer {
    z-index: 2;
    margin-top: 42px;
  }

  .promo-percent .number {
    font-size: 116px;
    line-height: 0.72;
  }

  .promo-percent .percent {
    margin: 13px 0 0 6px;
    font-size: 34px;
  }

  .promo-percent .off {
    margin: 2px 0 0 7px;
    font-size: 32px;
  }

  .promo-offer ul {
    gap: 15px;
    margin-top: 16px;
  }

  .promo-offer li {
    align-items: flex-start;
    gap: 12px;
    max-width: 290px;
    font-size: 16px;
    line-height: 1.45;
    white-space: normal;
  }

  .promo-offer i {
    margin-top: 3px;
    font-size: 15px;
  }

  .apt-container {
    padding: 0 20px;
  }

  .apt-everest-treks,
  .apt-region-treks,
  .apt-gallery-section {
    padding: 50px 0;
  }

  .apt-everest-treks h2,
  .apt-section-title h2 {
    font-size: 32px;
  }

  .apt-everest-grid,
  .apt-card-grid,
  .apt-gallery-grid {
    grid-template-columns: 1fr;
  }

  .apt-everest-grid {
    gap: 35px;
  }

  .apt-everest-card {
    min-height: 400px;
  }

  .apt-everest-content {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 25px;
  }

  .apt-everest-content h3 {
    max-width: 100%;
    font-size: 22px;
  }

  .apt-everest-content span {
    width: 100%;
    text-align: center;
  }

  .apt-trek-card h3 {
    font-size: 22px;
  }

  .apt-trek-card span {
    width: 100%;
  }

  .contact-page {
    padding: 34px 14px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 34px 24px;
  }

  .contact-kicker {
    letter-spacing: 5px;
  }

  .contact-info-panel h1,
  .contact-form-panel h2 {
    font-size: 32px;
  }

  .contact-info-panel h1,
  .contact-detail:first-child p {
    white-space: normal;
  }

  .contact-detail p {
    font-size: 16px;
  }

  .contact-form button {
    letter-spacing: 2.5px;
  }
}

/* Custom Rich Text Content Formatting Styles (Frontend) */
.page-content img,
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-content table,
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.page-content td,
.page-content th,
.post-content td,
.post-content th {
  border: 1px solid #e2e8f0;
  padding: 10px 12px;
  text-align: left;
}

.page-content th,
.post-content th {
  background: #f8fafc;
  font-weight: 600;
  color: #334155;
}

.page-content blockquote,
.post-content blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #475569;
  font-style: italic;
  background: #f8fafc;
  padding: 10px 15px;
  border-radius: 0 8px 8px 0;
}

