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

:root {
  --bg: #eef4f2;
  --card: #fff;
  --text: #072723;
  --muted: #7d8a86;
  --primary: #0d6b5f;
  --primary-dark: #085348;
  --line: #e7ecea
}

html,
body {
  overflow-x: hidden
}

body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  padding: 0
}

.page-wrap {
  width: 100%;
  margin: 0 auto;
  background: #f8fbfa;
  border: 0;
  box-shadow: none
}

.container {
  width: min(1180px, 94%);
  margin: 0 auto
}

.header,
.hero,
.place,
.about,
.testimonials,
.cta {
  position: relative;
  z-index: 0
}

.header::before,
.hero::before,
.about::before,
.cta::before,
.place::before,
.testimonials::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 100vw;
  z-index: -1
}

.header::before,
.hero::before,
.about::before,
.cta::before {
  background: #f7fbfa
}

.place::before,
.testimonials::before {
  background: #ffffff
}

.header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 30;
  overflow: visible;
  transition: background-color .25s ease, box-shadow .25s ease
}

.header.is-sticky {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 94%);
  background: #fff;
  z-index: 200;
  border-radius: 0 0 12px 12px;
  animation: sticky-slide-down .28s ease
}

@keyframes sticky-slide-down {
  from {
    opacity: .86;
    transform: translate(-50%, -10px)
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0)
  }
}

.js-enabled .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px) scale(.985);
  transition: opacity .62s ease, transform .62s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform
}

.js-enabled .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.js-enabled .hero-left.reveal-on-scroll {
  transform: translateX(-24px);
  transition-duration: .7s
}

.js-enabled .hero-right.reveal-on-scroll {
  transform: translateX(24px);
  transition-duration: .7s
}

.js-enabled .hero-left.reveal-on-scroll.is-visible,
.js-enabled .hero-right.reveal-on-scroll.is-visible {
  transform: translateX(0)
}

@media (prefers-reduced-motion:reduce) {
  .js-enabled .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }
}

.logo {
  display: flex;
  align-items: center
}

.logo img {
  height: 60px;
  width: auto;
  display: block
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px
}

.nav a,
.fnav a {
  text-decoration: none;
  color: #0d1c1a;
  font-size: 14px
}

.nav a.active,
.nav a:hover {
  color: var(--primary);
  font-weight: 700
}

.section-head-text-btn,
.grid-text-btn,
.card-text-btn,
.email-text-btn {
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #12322d
}

.mobile-menu {
  display: none !important
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0d1c1a;
  font-size: 14px;
  cursor: pointer;
  padding: 2px 0
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: #17312c;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(7, 39, 35, .06)
}

.lang-current:hover {
  background: #f3f8f6
}

.lang-current .fa-chevron-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1
}

.lang-switch i {
  font-size: 11px;
  opacity: .8
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  min-width: 110px;
  padding: 6px;
  display: none;
  z-index: 99
}

.lang-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: #17312c;
  white-space: nowrap
}

.lang-menu a:hover {
  background: #f3f8f6
}

.lang-switch.open .lang-menu {
  display: block
}

@media (hover:hover) {
  .lang-switch:hover .lang-menu {
    display: block
  }
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 40px;
  padding: 18px 0 72px
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.hero-left h1 {
  font-size: 76px;
  line-height: .97;
  letter-spacing: -1.8px;
  margin-top: 0
}

.hero-left p {
  margin: 22px 0 24px;
  max-width: 430px;
  color: var(--muted);
  line-height: 1.65
}

.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  max-width: 420px
}

.search-box i {
  padding: 0 14px;
  color: #92a19d
}

.search-box.display-only {
  padding: 12px 0
}

.search-box.display-only span {
  font-size: 14px;
  color: #5d6c68
}

.rating {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px
}

.avatars {
  display: flex
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -8px;
  border: 2px solid #fff
}

.avatars img:first-child {
  margin-left: 0
}

.stars {
  color: #f2b21a;
  font-weight: 600;
  font-size: 14px
}

.rating small {
  color: var(--muted)
}

.hero-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 24px
}

.main-card {
  width: 100%;
  max-width: 560px;
  height: 560px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #c8dcde
}

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

.tag {
  position: absolute;
  top: 18px;
  left: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600
}

.tag img {
  width: 16px;
  height: 12px
}

.thumbs {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, .94);
  border-radius: 12px
}

.thumbs img {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  object-fit: cover
}

.place,
.about,
.testimonials {
  padding: 60px 0
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  color: #4f5f5b;
  font-size: 12px;
  background: #fff
}

.section-head,
.about-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 16px 0 20px
}

h2 {
  font-size: 68px;
  line-height: 1;
  letter-spacing: -1.4px
}

.place-intro {
  color: var(--muted);
  max-width: 560px;
  margin: -4px 0 16px;
  line-height: 1.6
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px
}

.tour-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.card-top h3 {
  font-size: 22px
}

.card-text-btn {
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
  cursor: pointer
}

.card-text-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(7, 39, 35, .18)
}

.card-text-btn:active {
  transform: translateY(0);
  box-shadow: none
}

.tour-card>p {
  color: #647571;
  margin: 4px 0 10px
}

.img-wrap img {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  object-fit: cover;
  display: block
}

.about-top.simple {
  margin-bottom: 8px
}

.about-intro {
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
  margin: 0 0 20px
}

.about-simple {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center
}

.about-simple img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px
}

.about-copy h3 {
  font-size: 44px;
  line-height: 1.05;
  margin-bottom: 12px
}

.about-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px
}

.about-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px
}

.about-mini-stats span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #4f5f5b;
  font-size: 13px
}

.about-mini-stats strong {
  color: #0f2c27
}

.testi-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 8px
}

.testi-left h2 {
  margin-top: 14px
}

blockquote {
  font-size: 28px;
  line-height: 1.35;
  max-width: 640px;
  margin: 16px 0 24px;
  letter-spacing: -.2px;
  color: #111827
}

.person {
  display: flex;
  gap: 12px;
  align-items: center
}

.person img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover
}

.person strong {
  font-size: 20px
}

.person span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 3px
}

.testi-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.testi-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 120px 120px 110px 110px;
  gap: 10px;
  align-items: stretch
}

.testi-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px
}

.testi-collage .p1 {
  grid-column: 2/4;
  grid-row: 1/3;
  aspect-ratio: 1/1;
  height: auto;
  align-self: end
}

.testi-collage .p2 {
  grid-column: 4/6;
  grid-row: 1/3
}

.testi-collage .p3 {
  grid-column: 1/3;
  grid-row: 3/4
}

.testi-collage .p5 {
  grid-column: 3/5;
  grid-row: 3/5
}

.testi-collage .p4 {
  grid-column: 5/7;
  grid-row: 3/4
}

.cta {
  margin: 56px auto 0;
  height: 430px;
  border-radius: 36px;
  overflow: hidden;
  position: relative
}

.overlay {
  height: 100%;
  padding: 64px 54px;
  position: relative;
  background: url('../images/index/16.webp') center right/cover no-repeat
}

.overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 43, 39, .9) 0%, rgba(5, 50, 45, .78) 28%, rgba(6, 58, 52, .52) 50%, rgba(8, 66, 59, .24) 68%, rgba(10, 74, 66, 0) 86%);
  z-index: 0
}

.overlay>* {
  position: relative;
  z-index: 1
}

.overlay h2 {
  font-size: 64px;
  line-height: 1.06;
  letter-spacing: -1px;
  color: #fff;
  max-width: 560px
}

.overlay p {
  max-width: 620px;
  color: #e6f1ef;
  line-height: 1.65;
  margin: 20px 0 28px;
  font-size: 18px
}

.cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
  cursor: pointer
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(4, 43, 39, .28)
}

.cta-btn:active {
  transform: translateY(0);
  box-shadow: none
}

.cta-btn.primary {
  background: var(--primary);
  color: #fff
}

.cta-btn.ghost {
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff
}

.footer {
  margin-top: 64px;
  background: var(--primary);
  color: #fff;
  padding: 34px 0 22px
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 20px;
  padding-bottom: 16px
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 12px
}

.footer-links,
.footer-contact {
  list-style: none;
  display: grid;
  gap: 8px
}

.footer-links a,
.footer-contact {
  color: #dbefeb
}

.footer-contact a {
  color: #fff
}

.form-group {
  margin-bottom: 10px
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit
}

.form-group textarea {
  resize: vertical
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #d6ece7
}

.btn {
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #0f4c43;
  font-weight: 700;
  width: 100%;
  padding: 10px 12px;
  cursor: pointer
}

.phone-error-message {
  font-size: 12px;
  color: #ffd2d2;
  display: block;
  margin-top: 4px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .35);
  padding-top: 14px;
  color: #dbefeb;
  text-align: center;
  font-size: 13px;
  line-height: 1.6
}

.quick-message-form .iti {
  width: 100%
}

.quick-message-form .iti input[type='tel'] {
  width: 100% !important
}

.quick-message-form .iti__country-list {
  background: #fff;
  color: #1f2d2a;
  border: 1px solid #d9e5e1;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12)
}

.quick-message-form .iti__country {
  color: #1f2d2a
}

.quick-message-form .iti__dial-code {
  color: #5d6c68
}

.quick-message-form .iti__country.iti__highlight {
  background: #eef5f2
}

.quick-message-form .iti__search-input {
  color: #1f2d2a;
  background: #fff
}

.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120
}

.success-content {
  width: min(340px, 90%);
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  color: #12322d
}

.success-btn {
  margin-top: 14px;
  border: 0;
  border-radius: 20px;
  background: var(--primary);
  color: #fff;
  padding: 8px 20px
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 220;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: 0 8px 22px rgba(7, 39, 35, .18);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, box-shadow .25s ease
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.back-to-top:hover {
  box-shadow: 0 10px 26px rgba(7, 39, 35, .24)
}

@media (max-width:1100px) {
  h2 {
    font-size: 50px
  }

  .hero-left h1 {
    font-size: 62px
  }

  blockquote {
    font-size: 40px
  }
}

@media (max-width:900px) {
  body {
    padding: 0
  }

  .header {
    height: auto;
    min-height: 76px;
    padding: 14px 0;
    position: relative
  }

  .nav-toggle {
    display: inline-flex
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(320px, 92vw);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .08);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    z-index: 120
  }

  .header.nav-open .nav {
    display: flex
  }

  .nav a {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 8px
  }

  .nav a:hover,
  .nav a.active {
    background: #f3f8f6
  }

  .lang-switch {
    font-size: 14px;
    margin-left: 0;
    width: 100%;
    justify-content: space-between
  }

  .lang-menu {
    right: 0;
    left: auto
  }

  .hero,
  .cards,
  .about-simple,
  .testi-grid,
  .footer-main {
    grid-template-columns: 1fr
  }

  .overlay h2 {
    font-size: 44px
  }

  .back-to-top {
    right: 16px;
    bottom: 16px
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px;
  color: #fff;
  background: url('../images/bg2.avif') center/cover no-repeat
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 107, 95, .86) 0%, rgba(13, 107, 95, .45) 40%, rgba(8, 83, 72, .45) 60%, rgba(8, 83, 72, .86) 100%)
}

.page-hero .container {
  position: relative;
  z-index: 1
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 8px
}

.inner-section {
  padding: 56px 0
}

.inner-section h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -.8px;
  color: #0f2c27;
  margin-bottom: 10px
}

.inner-section .section-sub {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px
}

.about-section .section-sub {
  max-width: 920px
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 22px
}

.about-story {
  padding: 24px
}

.about-story h3 {
  font-size: 28px;
  color: #0f2c27;
  margin-bottom: 10px
}

.about-story p {
  color: #5f706c;
  line-height: 1.85;
  margin-bottom: 12px
}

.about-license-inline {
  margin-top: 16px;
  padding: 18px;
  background: linear-gradient(180deg, #fff 0%, #f6fbf9 100%);
  border: 1px solid #e3ece9;
  border-radius: 14px
}

.about-license-inline h4 {
  font-size: 22px;
  color: #0f2c27;
  margin-bottom: 8px
}

.about-license-inline p {
  color: #5f706c;
  line-height: 1.7;
  margin-bottom: 12px
}

.about-story.panel .about-license-inline img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  border-radius: 12px;
  border: 1px solid #dfeae6;
  box-shadow: 0 8px 24px rgba(7, 39, 35, .1)
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.about-feature-grid .panel {
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(7, 39, 35, .06);
  background: #fff
}

.about-feature-grid .feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #e9f5f2;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px
}

.about-feature-grid .panel h3 {
  font-size: 20px;
  color: #0f2c27;
  margin-bottom: 8px
}

.about-feature-grid .panel p {
  color: #5f706c;
  line-height: 1.7
}

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

.guide-photo-grid {
  gap: 22px
}

.guide-photo {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 39, 35, .12);
  transition: transform .25s ease, box-shadow .25s ease
}

.guide-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(7, 39, 35, .16)
}

.guide-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block
}

.panel,
.contact-card,
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px
}

.video-card {
  background: #fff;
  border: 1px solid #e3ece9;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(7, 39, 35, .10);
  transition: transform .25s ease, box-shadow .25s ease
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(7, 39, 35, .14)
}

.panel img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block
}

.video-card video {
  width: 100%;
  aspect-ratio: 12/6;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  background: #000
}

.video-card h3 {
  font-size: 18px;
  color: #0f2c27;
  margin-top: 10px
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 10px
}

.contact-qr img {
  width: min(220px, 100%);
  border-radius: 12px;
  border: 1px solid var(--line)
}

.contact-section .section-sub {
  max-width: 760px
}

.contact-showcase {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.55fr .9fr;
  gap: 22px;
  align-items: stretch
}

.contact-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: 0 10px 30px rgba(7, 39, 35, .08)
}

.contact-main h3 {
  font-size: 30px;
  line-height: 1.2;
  color: #0f2c27;
  margin-bottom: 10px
}

.contact-main>p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 720px
}

.contact-list-modern {
  gap: 12px
}

.contact-list-modern li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e7efec;
  border-radius: 12px;
  background: #f8fcfb;
  color: #15332e;
  line-height: 1.65
}

.contact-list-modern li i {
  margin-top: 3px;
  color: var(--primary);
  width: 18px;
  text-align: center
}

.contact-list-modern a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600
}

.contact-list-modern a:hover {
  text-decoration: underline
}

.contact-side {
  display: flex
}

.contact-qr-card {
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f4faf8 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(7, 39, 35, .08)
}

.contact-qr-card h4 {
  font-size: 22px;
  color: #0f2c27;
  margin-bottom: 6px
}

.contact-qr-card p {
  color: #61726e;
  line-height: 1.6;
  margin-bottom: 14px
}

.contact-qr-card .contact-qr {
  margin-bottom: 14px
}

.contact-qr-card .card-text-btn {
  min-width: 132px
}

@media (max-width:900px) {
  .inner-section h2 {
    font-size: 34px
  }

  .inner-section .section-sub {
    font-size: 15px;
    margin-bottom: 18px
  }

  .gallery-grid,
  .video-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .contact-showcase {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .contact-main {
    padding: 20px
  }

  .contact-main h3 {
    font-size: 24px
  }

  .contact-qr-card {
    padding: 20px
  }
}

@media (max-width:900px) {
  .inner-section h2 {
    font-size: 34px
  }

  .inner-section .section-sub {
    font-size: 15px;
    margin-bottom: 18px
  }

  .gallery-grid,
  .video-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .about-story {
    padding: 20px
  }

  .about-story h3 {
    font-size: 24px
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }
}