* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #171717;
  background: #fff;
  line-height: 1.45;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.center {
  text-align: center;
}
.mt-24 {
  margin-top: 24px;
}
.card {
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(10, 25, 20, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.25s ease;
}
.btn-sm {
  padding: 8px 12px;
  font-size: 12px;
}
.manual-switch {
  white-space: nowrap;
}
.btn-dark {
  background: #2f6f63;
  color: #fff;
  box-shadow: 0 12px 24px rgba(47, 111, 99, 0.22);
}
.btn-light {
  background: #fff;
  color: #333;
  border-color: #e8e8e8;
}
.btn-pill {
  padding-inline: 24px;
}
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 16px 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.78),
    rgba(255, 255, 255, 0)
  );
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}
.topbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(10, 25, 20, 0.08);
  backdrop-filter: blur(14px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.menu {
  display: flex;
  gap: 30px;
  color: #5b5b5b;
  font-size: 14px;
}
.menu a {
  position: relative;
  color: #5b5b5b;
  font-weight: 500;
  transition: color 0.2s ease;
}
.menu a:hover {
  color: #2f6f63;
}
.menu a.active {
  color: #1f4f45;
  font-weight: 700;
}
.menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: #2f6f63;
}
.lang-dropdown {
  position: relative;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  min-width: 100%;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(10, 25, 20, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: none;
  z-index: 30;
}
.lang-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #2b2b2b;
  font-size: 14px;
}
.lang-menu a:hover {
  background: #f3f7f5;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(47, 111, 99, 0.12);
  color: #2f6f63;
  font-size: 18px;
}
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 20, 0.42);
  display: none;
  z-index: 60;
}
.mobile-drawer.open {
  display: block;
}
.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 340px);
  height: 100%;
  background: #fff;
  padding: 20px;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: #f3f5f4;
  color: #222;
  font-size: 18px;
}
.mobile-menu {
  display: grid;
  gap: 10px;
}
.mobile-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f7f8f7;
  color: #2b2b2b;
  font-weight: 600;
}
.mobile-menu a.active {
  background: rgba(47, 111, 99, 0.12);
  color: #1f4f45;
}
.mobile-lang {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-lang h4 {
  margin: 0 0 10px;
  font-size: 14px;
}
.mobile-lang .lang-menu {
  position: static;
  width: 100%;
  min-width: 0;
}
.mobile-lang .lang-menu a {
  padding-inline: 0;
}
.mobile-lang .lang-menu a + a {
  margin-top: 6px;
}
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #e9fbfd 0%,
    #d9f1ee 20%,
    #c7e5d0 43%,
    #f8f3d8 78%,
    #fff 100%
  );
}
.hero {
  min-height: 980px;
  padding-top: 92px;
}
.page-hero {
  min-height: 520px;
  padding-top: 112px;
}
.hero-bg,
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/index/2.jpg") center top/cover no-repeat;
  filter: saturate(1.05) contrast(1.02);
}
.hero-bg::after,
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(233, 251, 253, 0.78) 0%,
    rgba(217, 241, 238, 0.35) 18%,
    rgba(199, 229, 208, 0.12) 38%,
    rgba(255, 248, 225, 0) 58%,
    rgba(255, 255, 255, 0.88) 100%
  );
}
.hero-content,
.page-hero .container.center {
  position: relative;
  z-index: 1;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 120px;
}
.page-hero .container.center {
  text-align: center;
  padding: 24px 0 8px;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #7b7b7b;
  margin-bottom: 12px;
}
.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(50px, 6.2vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 500;
}
.hero p,
.page-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  color: #666;
  font-size: 15px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.partner-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 250px;
  padding: 34px 0;
  color: #787878;
  font-weight: 500;
  opacity: 0.95;
}
.section {
  padding: 86px 0;
}

/* 通用内页模块样式（guide / travel / video / contact / about） */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/index/2.jpg") center top/cover no-repeat;
  filter: saturate(1.05) contrast(1.02);
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(233, 251, 253, 0.78) 0%,
    rgba(217, 241, 238, 0.35) 18%,
    rgba(199, 229, 208, 0.12) 38%,
    rgba(255, 248, 225, 0) 58%,
    rgba(255, 255, 255, 0.92) 100%
  );
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.section-subtitle {
  margin: 14px auto 0;
  max-width: 760px;
  text-align: center;
  color: #666;
  font-size: 15px;
}

.gallery-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}
.gallery-item img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.video-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.video-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}
.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}
.video-card h3 {
  margin: 0;
  padding: 12px 14px 14px;
  font-size: 16px;
}

.contact-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.contact-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(206, 234, 233, 0.55), rgba(236, 247, 233, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.contact-item i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f6f63;
  background: rgba(255, 255, 255, 0.9);
}
.contact-details h3 {
  margin: 0 0 6px;
  font-size: 14px;
}
.contact-details p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.about-content-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.about-content-wrap > * {
  width: 100%;
}
.about-intro {
  padding: 26px;
  background: linear-gradient(135deg, rgba(206, 234, 233, 0.4), rgba(236, 247, 233, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.about-intro p {
  margin: 14px 0 0;
  color: #4f4f4f;
  line-height: 1.9;
  font-size: 15px;
}
.about-license {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.about-license h3 {
  margin: 0;
  font-size: 20px;
}
.license-tip {
  margin: 8px 0 14px;
  color: #7b7b7b;
  font-size: 14px;
}
.about-license img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.about-highlights {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.highlight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.highlight-item i {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #2f6f63;
  background: rgba(47, 111, 99, 0.08);
}
.highlight-item strong {
  display: block;
  font-size: 14px;
}
.highlight-item span {
  display: block;
  color: #666;
  font-size: 13px;
  margin-top: 4px;
}
.compare-grid,
.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}
.compare h2,
.features h2,
.story h2,
.experiences h2,
.testimonials h2,
.cta h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
}
.compare-side p,
.story p,
.cta p {
  color: #666;
  max-width: 430px;
}
.cta p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.stats {
  display: flex;
  justify-content: flex-end;
  gap: 64px;
  margin-top: 44px;
}
.stats strong {
  display: block;
  font-size: 54px;
  font-weight: 500;
}
.stats span {
  color: #7b7b7b;
  font-size: 14px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.feature-card {
  padding: 24px;
  min-height: 190px;
  background: linear-gradient(
    135deg,
    rgba(206, 234, 233, 0.92),
    rgba(236, 247, 233, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.75);
}
.feature-card i {
  font-size: 20px;
  color: #2f6f63;
}
.feature-card h3 {
  margin: 54px 0 10px;
  font-size: 18px;
}
.feature-card p,
.testimonial p {
  margin: 0;
  color: #555;
  font-size: 14px;
}
.story-grid {
  grid-template-columns: 0.95fr 1.05fr;
}
.story-panel {
  display: flex;
  justify-content: flex-end;
}
.experience-box {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(
    135deg,
    rgba(214, 231, 186, 0.92),
    rgba(171, 217, 214, 0.92)
  );
  width: min(100%, 520px);
}
.experience-box h3 {
  margin: 0 0 18px;
  font-size: 18px;
}
.experience-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
}
.experience-box li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2e2e2e;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}
.split {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tabs span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #6a6a6a;
  background: #f5f5f5;
}
.tabs .active {
  background: #2f6f63;
  color: #fff;
}
.travel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.travel-card {
  position: relative;
  min-height: 300px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
}
.travel-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.travel-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 14px 14px 0;
  font-size: 20px;
  line-height: 1.05;
}
.travel-card a {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  margin: 0 14px 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
}
.travel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(15, 20, 18, 0.05),
    rgba(15, 20, 18, 0.35)
  );
}
.testimonials {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(234, 246, 239, 0.96) 14%,
      rgba(223, 241, 216, 0.92) 36%,
      rgba(209, 235, 193, 0.86) 60%,
      rgba(235, 245, 242, 0.95) 100%
    ),
    radial-gradient(
      circle at 50% 28%,
      rgba(214, 242, 192, 0.68) 0%,
      rgba(194, 231, 178, 0.48) 18%,
      rgba(182, 222, 209, 0.34) 35%,
      rgba(175, 216, 236, 0.34) 58%,
      rgba(255, 255, 255, 0) 82%
    );
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 80%,
      rgba(255, 255, 255, 0.36),
      transparent 22%
    ),
    radial-gradient(
      circle at 83% 18%,
      rgba(255, 255, 255, 0.34),
      transparent 20%
    ),
    radial-gradient(
      circle at 52% 58%,
      rgba(255, 255, 255, 0.22),
      transparent 45%
    );
  pointer-events: none;
}
.testimonials::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.42) 54%,
    rgba(255, 255, 255, 0.92) 100%
  );
  pointer-events: none;
}
.testimonials-head {
  position: relative;
  z-index: 1;
}
.testimonials-kicker {
  justify-content: center;
  color: #6a6f6d;
}
.testimonials h2 {
  white-space: pre-line;
  color: #4a4a4a;
}
.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.testimonial {
  padding: 22px 22px 20px;
  background: linear-gradient(
    180deg,
    rgba(55, 104, 95, 0.95),
    rgba(88, 125, 123, 0.95)
  );
  color: #fff;
  min-height: 268px;
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(31, 63, 58, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial p {
  font-size: 18px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: #e6f1ff;
}
.person small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
}
.dots {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.testimonials-dots {
  position: relative;
  z-index: 1;
  margin-top: 26px;
}
.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(120, 160, 170, 0.7);
  display: inline-block;
}
.dots .active {
  background: rgba(120, 160, 170, 0.92);
}
.cta {
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0) 16%,
      rgba(255, 255, 255, 0) 84%,
      rgba(255, 255, 255, 0.96) 100%
    ),
    radial-gradient(
      circle at center,
      rgba(205, 240, 192, 0.65),
      transparent 45%
    ),
    linear-gradient(180deg, #fff 0, #fff 45%, #ecf6ea 100%);
}
.footer {
  position: relative;
  padding: 90px 0 26px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.86) 10%,
      rgba(255, 255, 255, 0.62) 20%,
      rgba(255, 255, 255, 0.28) 32%,
      rgba(255, 255, 255, 0) 46%
    ),
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.38) 0%,
      rgba(255, 255, 255, 0) 48%
    ),
    url("../images/index/1.webp") center center / cover no-repeat;
}
.footer-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.footer-top {
  display: block;
}
.footer-links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
.subscribe {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #2f6f63;
  color: #fff;
  width: min(100%, 340px);
}
.subscribe input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}
.subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.82);
}
.subscribe button {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #2f6f63;
  padding: 10px 14px;
  font-weight: 700;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
.footer-links > div {
  min-width: 0;
}
.footer-links h4 {
  margin: 0 0 14px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  margin-bottom: 0;
}
.manual-dropdown.open .manual-menu,
.manual-dropdown:hover .manual-menu,
.manual-dropdown:focus-within .manual-menu {
  display: block;
}
.footer-links a {
  display: block;
  color: #666;
  margin-bottom: 10px;
  font-size: 14px;
}
.quick-message-form .form-group {
  margin-bottom: 10px;
}
.quick-message-form input,
.quick-message-form textarea {
  width: 100%;
  border: 1px solid #cfe0f7;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
}
.quick-message-form textarea {
  resize: vertical;
}
.quick-message-form .iti {
  width: 100%;
  display: block;
}
.quick-message-form .iti__tel-input,
.quick-message-form .iti input[type='tel'] {
  width: 100% !important;
}
.phone-error-message {
  font-size: 12px;
  color: #d93025;
  margin-top: 2px;
  display: block;
}
.quick-message-form button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}
.btn.cta {
  background: #2f6f63;
  color: #fff;
  box-shadow: 0 12px 24px rgba(47, 111, 99, 0.22);
}
.btn.cta .btn-loading {
  display: none;
}
.btn.cta:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  box-shadow: none;
}
.btn.cta:hover:not(:disabled) {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.success-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
}
.success-content {
  width: min(340px, 90%);
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.success-icon {
  font-size: 40px;
  color: #2f6f63;
  line-height: 1;
}
.success-content h3 {
  margin: 12px 0 8px;
}
.success-content p {
  margin: 0;
  color: #666;
}
.close-btn {
  margin-top: 14px;
  border: 0;
  border-radius: 20px;
  background: #2f6f63;
  color: #fff;
  padding: 8px 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 720px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
@media (max-width: 1080px) {
  .feature-grid,
  .testimonial-grid,
  .travel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .compare-grid,
  .story-grid,
  .footer-top {
    grid-template-columns: 1fr;
    display: grid;
  }
  .stats {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 22px;
  }
  .partner-row {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 160px;
  }
  .split {
    align-items: flex-start;
    flex-direction: column;
  }
  .tabs {
    justify-content: flex-start;
  }
}
@media (max-width: 720px) {
  .desktop-lang,
  .topbar .menu {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero {
    min-height: 860px;
  }
  .hero-content {
    padding-top: 95px;
  }
  .partner-row {
    margin-top: 130px;
    gap: 14px;
    font-size: 12px;
  }
  .section {
    padding: 68px 0;
  }
  .feature-grid,
  .testimonial-grid,
  .travel-grid,
  .gallery-grid,
  .video-grid,
  .contact-content,
  .contact-items {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    aspect-ratio: auto;
    object-fit: contain;
    background: #f5f5f5;
  }
  .contact-content {
    gap: 20px;
  }
  .experience-box ul {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .stats strong {
    font-size: 40px;
  }
}
