@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Montserrat:wght@500;600;700;800&display=swap');

:root {
  --color-gold: #FBC864;
  --color-gold-dark: #A97E40;
  --color-dark: #121212;
  --color-gray: #333333;
  --color-bg-beige: #fdfbf7;
  --color-success: #25D366;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-gold: 0 8px 24px rgba(207, 168, 110, 0.05);
}

body {
  font-family: var(--font-body);
  color: var(--color-gray);
  line-height: 1.58;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-font {
  font-family: var(--font-heading);
  color: var(--color-dark);
}

h1 {
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 600;
}

.text-gold-dark {
  color: var(--color-gold-dark) !important;
}

.btn-primary-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #fff !important;
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  min-height: 44px;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 8px;
}

.btn-primary-gold:hover,
.btn-primary-gold:active {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(169, 126, 64, 0.3);
  color: #fff;
}

.btn-outline-gold {
  position: relative;
  z-index: 1;
  background: transparent;
  color: var(--color-gold-dark) !important;
  border: none;
  box-shadow: inset 0 0 0 1px var(--color-gold-dark);
  border-radius: 999px;
  padding: 12px 32px;
  min-height: 44px;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 8px;
}

.btn .ph,
.btn .ph-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1.12em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.btn:hover .ph-arrow-right,
.btn:active .ph-arrow-right {
  transform: translateX(3px);
}

.btn-outline-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-outline-gold:hover,
.btn-outline-gold:active {
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(169, 126, 64, 0.3);
}

.btn-outline-gold:hover::before,
.btn-outline-gold:active::before {
  opacity: 1;
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(207, 168, 110, 0.15);
}

.header-nav {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 12px 0;
}

.header-nav .btn-primary-gold {
  min-height: 38px;
  padding: 8px 24px;
  font-size: 0.9rem;
}

.dropdown-menu {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 8px 0;
}

.dropdown-item {
  font-weight: 500;
  color: var(--color-dark);
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(251, 200, 100, 0.15);
  color: var(--color-gold-dark);
}

.navbar-brand img {
  height: 40px;
  object-fit: contain;
}

.nav-link {
  color: var(--color-dark) !important;
  font-weight: 500;
  padding: 10px 20px !important;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link.active {
  color: var(--color-gold-dark) !important;
}

.nav-link:hover {
  color: var(--color-gold-dark) !important;
}

.lang-switch .nav-link {
  font-size: 0.9rem;
  padding: 10px 6px !important;
}

#mainNav .has-second-menu {
  position: relative;
}

#mainNav .nav-link-with-submenu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#mainNav .secondMenu {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#mainNav .secondMenu .is-generated-placeholder {
  display: none !important;
}

#mainNav .secondMenu>a {
  color: var(--color-dark);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

#mainNav .secondMenu>a:hover,
#mainNav .secondMenu>a:focus-visible {
  color: var(--color-gold-dark);
}

#mainNav .submenu-toggle {
  border: 0;
  background: transparent;
  color: var(--color-dark);
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

#mainNav .submenu-toggle::before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}

#mainNav .has-second-menu.is-open>.submenu-toggle,
#mainNav .has-second-menu:hover>.submenu-toggle,
#mainNav .has-second-menu:focus-within>.submenu-toggle {
  color: var(--color-gold-dark);
}

#mainNav .has-second-menu.is-open>.submenu-toggle::before,
#mainNav .has-second-menu:hover>.submenu-toggle::before,
#mainNav .has-second-menu:focus-within>.submenu-toggle::before {
  transform: rotate(-135deg) translate(-1px, -1px);
}

@media (min-width: 992px) {
  #mainNav .has-second-menu>.nav-link-with-submenu::after {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease;
  }

  #mainNav .has-second-menu.is-open>.nav-link-with-submenu::after,
  #mainNav .has-second-menu:hover>.nav-link-with-submenu::after,
  #mainNav .has-second-menu:focus-within>.nav-link-with-submenu::after {
    transform: rotate(-135deg) translate(-2px, 0);
  }

  #mainNav .has-second-menu>.submenu-toggle {
    display: none;
  }

  #mainNav .secondMenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    width: max-content;
    max-width: min(320px, calc(100vw - 32px));
    padding: 14px !important;
    border: 1px solid rgba(207, 168, 110, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 44px rgba(18, 18, 18, 0.08);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1000;
  }

  #mainNav .has-second-menu.is-open>.secondMenu,
  #mainNav .has-second-menu:hover>.secondMenu,
  #mainNav .has-second-menu:focus-within>.secondMenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  #mainNav .secondMenu>a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
  }

  #mainNav .secondMenu>a:not(.is-generated-placeholder)::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(169, 126, 64, 0.25);
    flex: 0 0 auto;
  }

  #mainNav .secondMenu>a:hover,
  #mainNav .secondMenu>a:focus-visible {
    background: rgba(251, 200, 100, 0.14);
    transform: translateX(2px);
    outline: none;
  }
}

@media (max-width: 991px) {
  #mainNav.has-generated-submenus {
    margin-top: 16px;
    padding: 18px 0 8px;
    border-top: 1px solid rgba(18, 18, 18, 0.08);
  }

  #mainNav.has-generated-submenus .navbar-nav.mx-auto {
    width: 100%;
  }

  #mainNav .has-second-menu {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: start;
  }

  #mainNav .has-second-menu>.nav-link-with-submenu {
    min-width: 0;
  }

  #mainNav .has-second-menu>.submenu-toggle {
    width: 44px;
    height: 44px;
    margin-top: 2px;
    border-radius: 50%;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #mainNav .has-second-menu>.submenu-toggle:hover,
  #mainNav .has-second-menu>.submenu-toggle:focus-visible,
  #mainNav .has-second-menu.is-open>.submenu-toggle {
    background: rgba(251, 200, 100, 0.16);
    outline: none;
  }

  #mainNav .has-second-menu>.secondMenu {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    max-width: none;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 16px !important;
    border: 0;
    border-left: 1px solid rgba(169, 126, 64, 0.18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: max-height 0.32s ease, margin-top 0.32s ease, padding-top 0.32s ease, padding-bottom 0.32s ease;
  }

  #mainNav .has-second-menu.is-open>.secondMenu {
    max-height: var(--submenu-height, 480px);
    margin-top: 6px;
    padding-top: 4px !important;
    padding-bottom: 6px !important;
  }

  #mainNav .secondMenu>a {
    display: block;
    padding: 9px 0;
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slider-bg .swiper-slide {
  background-size: cover;
  background-position: center;
}

.hero-slider-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(253, 251, 247, 1) 0%, rgba(253, 251, 247, 0.85) 45%, rgba(253, 251, 247, 0) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-content>.section-subtitle,
.hero-content>h1,
.hero-content>.hero-subtitle,
.page-hero-content>.section-subtitle,
.page-hero-content>h1,
.page-hero-content>.hero-subtitle,
.about-page-banner-content>.section-subtitle,
.about-page-banner-content>h1,
.about-page-banner-content>.hero-subtitle {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(12px);
  animation: heroTextReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity, filter;
}

.hero-content>.section-subtitle,
.page-hero-content>.section-subtitle,
.about-page-banner-content>.section-subtitle {
  animation-delay: 0.08s;
}

.hero-content>h1,
.page-hero-content>h1,
.about-page-banner-content>h1 {
  animation-delay: 0.22s;
}

.hero-content>.hero-subtitle,
.page-hero-content>.hero-subtitle,
.about-page-banner-content>.hero-subtitle {
  animation-delay: 0.38s;
}

@keyframes heroTextReveal {
  0% {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(12px);
  }

  60% {
    opacity: 1;
    transform: translateY(-4px);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-gray);
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.hero-slider-controls {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(169, 126, 64, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 14px 35px rgba(18, 18, 18, 0.08);
  transform: translateX(-50%);
}

.hero-slider-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(169, 126, 64, 0.18);
}

.hero-slider-btn:hover,
.hero-slider-btn:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  box-shadow: 0 10px 20px rgba(169, 126, 64, 0.24);
  transform: translateY(-2px);
}

.hero-pagination {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto !important;
  min-width: 76px;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  flex: 0 0 auto;
  justify-content: center;
}

.hero-slider-controls>.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
  margin: 0 !important;
}

.trust-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 40px;
}

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

.trust-badge-icon {
  width: 50px;
  height: 50px;
  background: rgba(251, 200, 100, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  font-size: 1.5rem;
}

.trust-badge-text-wrap {
  display: flex;
  flex-direction: column;
}

.trust-badge-text {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-dark);
  font-size: 1.1rem;
  line-height: 1.2;
}

.trust-badge-sub {
  font-size: 0.85rem;
  color: var(--color-gray);
}

.section-padding {
  padding: 100px 0;
}

.section-subtitle {
  color: var(--color-gold-dark);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 0.9rem;
  display: block;
}

@media (prefers-reduced-motion: reduce) {

  .hero-content>.section-subtitle,
  .hero-content>h1,
  .hero-content>.hero-subtitle,
  .page-hero-content>.section-subtitle,
  .page-hero-content>h1,
  .page-hero-content>.hero-subtitle,
  .about-page-banner-content>.section-subtitle,
  .about-page-banner-content>h1,
  .about-page-banner-content>.hero-subtitle {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

.treatment-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  aspect-ratio: 4/3;
}

.treatment-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.glass-card:hover .treatment-img-wrap img {
  transform: scale(1.05);
}

.glass-card:hover .treatment-btn {
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(169, 126, 64, 0.3);
}

.glass-card:hover .treatment-btn::before {
  opacity: 1;
}

.treatment-body {
  padding: 24px;
}

.treatment-tag {
  background: rgba(251, 200, 100, 0.15);
  color: var(--color-gold-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.treatment-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.treatment-desc {
  font-size: 0.95rem;
  color: var(--color-gray);
  margin-bottom: 20px;
}

#treatments {
  background-color: #F9FAFB;
}

.treatments-carousel-wrap {
  position: relative;
  /* 为两边超出版面的按钮预留显示空间 */
  padding: 0 10px;
}

.custom-swiper-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50%;
  color: var(--color-gold-dark);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  /* 调整按钮到垂直居中于顶部的图片位置（而非整个卡片高度） */
  top: 43%;
  margin-top: -25px;
  z-index: 10;
}

.custom-swiper-btn::after {
  font-size: 1.1rem !important;
  font-weight: 300 !important;
  /* 字体改细体现高雅精致感 */
}

/* 一半溢出卡片外 */
.custom-swiper-btn.swiper-button-prev {
  left: -7px;
}

.custom-swiper-btn.swiper-button-next {
  right: -7px;
}

.custom-swiper-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}

.custom-swiper-btn:hover {
  color: #fff;
  transform: scale(1.08);
  /* 轻微放大 */
  box-shadow: 0 10px 20px rgba(169, 126, 64, 0.3);
}

.custom-swiper-btn:hover::before {
  opacity: 1;
}

.why-icon {
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-icon img {
  width: 50%;
  max-width: 120px;
  height: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.08));
}

.glass-card:hover .why-icon img {
  transform: translateY(-5px) scale(1.05);
  filter: drop-shadow(0 15px 20px rgba(207, 168, 110, 0.15));
}

.doc-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/14;
  cursor: pointer;
  background:url(docbg.png) no-repeat center center;
  background-size: cover;
}

.doc-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: start;
  padding-top: 25px;
  justify-content: center;
}

.doc-img-wrap img {
  width: 90%;

  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.doc-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0.5) 65%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px 24px 20px;
  /* 沉落文字到极底部 */
  z-index: 2;
}

.doc-info-content {
  width: 100%;
  transform: translateY(35px);
  /* 初始下沉隐藏按钮 */
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-align: center;
}

.doc-name {
  color: var(--color-dark);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.doc-specialty {
  color: var(--color-gold-dark);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.doc-btn-wrap {
  opacity: 0;
  visibility: hidden;
  margin-top: 15px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.doc-action-btn {
  position: relative;
  z-index: 1;
  border: none;
  box-shadow: inset 0 0 0 1px var(--color-gold-dark);
  color: var(--color-gold-dark);
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  padding: 9px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.doc-action-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.doc-action-btn:hover,
.doc-card:hover .doc-action-btn {
  background: transparent;
  color: #fff;
  box-shadow: 0 10px 10px rgba(169, 126, 64, 0.3);
}

.doc-action-btn:hover::before,
.doc-card:hover .doc-action-btn::before {
  opacity: 1;
}

/* Hover effects */
.doc-card:hover .doc-img-wrap img {
  transform: scale(1.05);
}

.doc-card:hover .doc-info-content {
  transform: translateY(0);
}

.doc-card:hover .doc-btn-wrap {
  opacity: 1;
  visibility: visible;
}



.result-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.result-img-wrap {
  position: relative;
  aspect-ratio: 1;
}

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

.result-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.review-card {
  padding: 30px;
}

.review-stars {
  color: #FFB800;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex: 0 0 50px;
  background: var(--avatar-bg, linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1;
}

#reviews-section {
  background-color: #F8F9FA;
  background-image: url('reviews.png');
  background-size: cover;
  background-position: center;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  background: rgba(251, 200, 100, 0.15);
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(253, 251, 247, 0.88) 58%, rgba(251, 200, 100, 0.12) 100%);
  border: 1px solid rgba(207, 168, 110, 0.22);
  color: var(--color-dark);
  border-radius: 28px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(18, 18, 18, 0.06);
}

.final-cta h2,
.final-cta .section-subtitle {
  position: relative;
  z-index: 2;
}

.final-cta .section-subtitle {
  color: var(--color-gold-dark);
}


.final-cta::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 64%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(169, 126, 64, 0.22), transparent);
  z-index: 1;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 44px;
  align-items: center;
  padding: 76px clamp(28px, 5vw, 72px);
}

.final-cta-copy {
  max-width: 820px;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
}

.final-cta-text {
  max-width: 680px;
  margin: 0 0 30px;
  color: var(--color-gray);
  font-size: 1.05rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.final-cta-whatsapp:hover,
.final-cta-whatsapp:active {
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.26);
}

.final-cta-details {
  display: grid;
  gap: 18px;
}

.final-cta-detail {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(169, 126, 64, 0.16);
}

.final-cta-detail:last-child {
  border-bottom: 0;
}

.final-cta-detail .ph {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--color-gold-dark);
  background: rgba(251, 200, 100, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.final-cta-detail span {
  display: block;
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.final-cta-detail strong {
  display: block;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  line-height: 1.35;
}

.contact-section {
  scroll-margin-top: 110px;
}

.contact-cta {
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 200, 100, 0.24), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(169, 126, 64, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 251, 247, 0.9) 58%, rgba(251, 200, 100, 0.14) 100%);
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(169, 126, 64, 0.12);
  border-radius: 22px;
  pointer-events: none;
  z-index: 1;
}

.contact-cta::after {
  left: 54%;
}

.contact-cta-inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: stretch;
  gap: 42px;
  padding: clamp(30px, 4.8vw, 62px);
}

.contact-cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-grid {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.final-cta-detail.contact-info-card,
.final-cta-detail.contact-info-card:last-child {
  align-items: flex-start;
  padding: 16px;
  border: 1px solid rgba(169, 126, 64, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 32px rgba(18, 18, 18, 0.035);
}

.contact-info-card strong {
  font-size: 0.92rem;
}

.contact-cta-actions {
  margin-top: 4px;
}

.contact-map-card {
  position: relative;
  min-height: 520px;
  padding: 12px;
  border: 1px solid rgba(169, 126, 64, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 56px rgba(18, 18, 18, 0.1);
  overflow: hidden;
}

.contact-map-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  pointer-events: none;
  z-index: 2;
}

.contact-map-frame {
  position: relative;
  height: 100%;
  min-height: 496px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(251, 200, 100, 0.12);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 496px;
  border: 0;
  display: block;
  filter: saturate(0.88) contrast(1.02);
}

.contact-map-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: var(--color-dark);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 14px 34px rgba(18, 18, 18, 0.1);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
}

.contact-map-note .ph {
  color: var(--color-gold-dark);
  font-size: 1.2rem;
  flex: 0 0 auto;
}

body.contact-page {
  background: linear-gradient(180deg, #fbfbfd 0%, #ffffff 34%, #fbfbfd 100%);
}

.contact-main {
  padding-top: 0;
}

#contact-form {
  scroll-margin-top: 120px;
}

.contact-page-banner-bg {
  background-image: url('contact-hero.png');
  background-position: center center;
}

.contact-page-banner-overlay {
  background: linear-gradient(90deg, rgba(253, 251, 247, 0.96) 0%, rgba(253, 251, 247, 0.78) 42%, rgba(253, 251, 247, 0.16) 100%);
}

.contact-intro,
.contact-form-section {
  background: #fff;
}

.contact-map-section {
  background: #f5f5f7;
}

.contact-stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.contact-intro-actions {
  margin-top: 34px;
}

.contact-map-copy {
  margin-bottom: 34px;
}

.contact-map-fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #e9e4dc;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-map-fullbleed iframe {
  display: block;
  width: 100%;
  height: min(78vh, 820px);
  min-height: 520px;
  border: 0;
  filter: saturate(0.92) contrast(1.01);
}

.contact-form-shell {
  display: flex;
  justify-content: center;
}

.contact-form-card {
  width: 100%;
  max-width: 1280px;
  padding: clamp(32px, 4vw, 56px);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 251, 253, 0.98) 100%);
  border: 1px solid rgba(18, 18, 18, 0.05);
  box-shadow: 0 28px 80px rgba(18, 18, 18, 0.08);
}

.contact-form-head {
  max-width: 720px;
  margin: 0 auto 44px;
}

.contact-form-title {
  margin: 10px 0 18px;
}

.contact-form-copy {
  margin: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
}

.contact-field {
  min-width: 0;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 22px;
  background: #f4f5f7;
  color: var(--color-dark);
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: inset 0 0 0 1px rgba(18, 18, 18, 0.03);
  transition: box-shadow 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.contact-field input,
.contact-field select {
  min-height: 74px;
  padding: 0 26px;
}

.contact-field textarea {
  min-height: 210px;
  padding: 22px 26px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(18, 18, 18, 0.48);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  background: #f7f7f8;
  box-shadow: 0 0 0 2px rgba(207, 168, 110, 0.18);
}

.contact-phone-group {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 14px;
}

.contact-phone-group select {
  background-image: linear-gradient(45deg, transparent 50%, var(--color-dark) 50%), linear-gradient(135deg, var(--color-dark) 50%, transparent 50%);
  background-position: calc(100% - 26px) calc(50% - 3px), calc(100% - 18px) calc(50% - 3px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  appearance: none;
  -webkit-appearance: none;
}

.contact-submit-btn {
  width: 100%;
  min-height: 82px;
  border: 0;
  border-radius: 999px;
  background: #23272b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 22px 40px rgba(35, 39, 43, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-submit-btn .ph {
  color: #25D366;
  font-size: 1.5rem;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 46px rgba(35, 39, 43, 0.2);
}

.contact-form-note {
  margin: 20px 0 0;
  color: rgba(18, 18, 18, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.96rem;
}

.contact-form-note .ph {
  color: var(--color-gold-dark);
  font-size: 1.1rem;
}

.footer-modern {
  background: var(--color-bg-beige);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(207, 168, 110, 0.2);
  position: relative;
  overflow: hidden;
}


.footer-modern .footer-link {
  color: var(--color-gray);
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0;
}

.footer-modern .footer-link:hover {
  color: var(--color-gold-dark) !important;
}

.footer-modern .footer-main-links .footer-link {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.back-to-top-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.back-to-top-link:hover .back-to-top-icon {
  background: var(--color-dark);
  color: #fff;
  transform: translateY(-4px);
}

.footer-divider {
  border-color: rgba(33, 37, 41, 0.15);
  opacity: 1;
}

.social-icon {
  display: inline-flex;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: var(--color-gold-dark) !important;
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--color-success);
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 98;
  padding: 12px 20px;
  padding-bottom: env(safe-area-inset-bottom, 12px);
}

.mobile-bottom-bar .btn {
  flex: 1;
  font-size: 0.95rem;
}

/* Swiper Pagination Global Styling */
.swiper-pagination-bullet {
  background-color: var(--color-gold) !important;
  opacity: 0.4 !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 999px !important;
}

#why-choose {
  background: url(liner-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-main {
  padding-top: 92px;
}

.about-hero {
  position: relative;
  padding: 42px 0 26px;
  background:
    radial-gradient(circle at top right, rgba(251, 200, 100, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(253, 251, 247, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
}

.about-hero-shell {
  padding: clamp(36px, 6vw, 72px);
  border-radius: 36px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 251, 247, 0.96) 100%);
  border: 1px solid rgba(207, 168, 110, 0.16);
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.05);
}

.about-hero-kicker {
  margin-bottom: 18px;
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero-title {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--color-dark);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.about-hero-text {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--color-gray);
  font-size: 1.08rem;
  line-height: 1.9;
}

.about-hero-actions,
.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.about-hero-aside {
  padding-left: clamp(0px, 2vw, 24px);
}

.about-fact-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(169, 126, 64, 0.14);
}

.about-fact-item {
  display: grid;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(169, 126, 64, 0.14);
}

.about-fact-label {
  display: inline-block;
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-fact-item strong {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.6;
}

.about-footprint {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(169, 126, 64, 0.14);
}

.about-footprint span {
  position: relative;
  padding-right: 18px;
  color: rgba(18, 18, 18, 0.68);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-footprint span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(169, 126, 64, 0.5);
  transform: translateY(-50%);
}

.about-footprint span:last-child {
  padding-right: 0;
}

.about-footprint span:last-child::after {
  display: none;
}

.about-section-head {
  margin-bottom: 42px;
}

.about-section-title {
  margin-bottom: 0;
  color: var(--color-dark);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.about-section-text,
.about-story-body {
  color: var(--color-gray);
  font-size: 1.03rem;
  line-height: 1.92;
}

.about-story-body+.about-story-body {
  margin-top: 18px;
}

.about-brand-story {
  background: #fff;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(169, 126, 64, 0.14);
}

.about-metric {
  min-width: 0;
}

.about-metric-value {
  display: block;
  margin-bottom: 8px;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-metric-label {
  margin-bottom: 0;
  color: rgba(18, 18, 18, 0.7);
  font-size: 0.94rem;
  line-height: 1.75;
}

.about-environment {
  background:
    linear-gradient(180deg, rgba(253, 251, 247, 0.82) 0%, rgba(255, 255, 255, 1) 100%);
}

.environment-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.environment-gallery-item {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(18, 18, 18, 0.06);
}

.environment-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.environment-gallery-item:hover img {
  transform: scale(1.04);
}

.environment-gallery-item-large {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 620px;
}

.environment-gallery-item:not(.environment-gallery-item-large):not(.environment-gallery-item-wide) {
  grid-column: span 3;
  min-height: 300px;
}

.environment-gallery-item-wide {
  grid-column: span 6;
  min-height: 302px;
}

.about-certifications {
  background: #fff;
}

.credential-ledger {
  border-top: 1px solid rgba(169, 126, 64, 0.14);
}

.credential-ledger-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(169, 126, 64, 0.14);
}

.credential-ledger-main {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
}

.credential-ledger-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(251, 200, 100, 0.14);
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.credential-ledger-item h5 {
  margin-bottom: 8px;
  color: var(--color-dark);
  font-size: 1.08rem;
  font-weight: 700;
}

.credential-ledger-item p {
  margin-bottom: 0;
  color: var(--color-gray);
  font-size: 0.98rem;
  line-height: 1.8;
}

.credential-ledger-proof {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(253, 251, 247, 0.95);
  border: 1px solid rgba(207, 168, 110, 0.16);
  color: rgba(18, 18, 18, 0.58);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-cta-section {
  padding: 0 0 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(253, 251, 247, 0.84) 100%);
}

.about-cta-shell {
  padding: clamp(28px, 5vw, 44px);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 251, 247, 0.95) 100%);
  border: 1px solid rgba(207, 168, 110, 0.16);
  box-shadow: 0 18px 50px rgba(18, 18, 18, 0.05);
}

.about-cta-title {
  margin-bottom: 0;
  color: var(--color-dark);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

body.about-page {
  background:
    radial-gradient(circle at top left, rgba(251, 200, 100, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(253, 251, 247, 0.72) 0%, rgba(255, 255, 255, 1) 18%, rgba(253, 251, 247, 0.65) 100%);
}

.about-page .hero-section {
  min-height: 72vh;
}

.about-page .hero-content {
  max-width: 600px;
}

.about-story-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(251, 200, 100, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(251, 200, 100, 0.1), transparent 30%),
    url('liner-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-story-shell {
  position: relative;
  padding: clamp(56px, 7vw, 92px) clamp(28px, 6vw, 92px);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(253, 251, 247, 0.94) 100%);
  border: 1px solid rgba(207, 168, 110, 0.16);
  box-shadow: 0 30px 80px rgba(18, 18, 18, 0.05);
}

.story-note-label,
.partner-panel-label {
  display: block;
  margin-bottom: 10px;
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.story-description,
.story-principle-inline p,
.timeline-card p,
.facility-point p,
.credential-card p {
  margin-bottom: 0;
  color: var(--color-gray);
  font-size: 0.96rem;
}

.story-copy {
  max-width: 640px;
}

.story-copy-minimal {
  max-width: 860px;
}

.story-kicker {
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-divider {
  width: min(100%, 1080px);
  height: 1px;
  margin: 34px auto 42px;
  background: linear-gradient(90deg, rgba(169, 126, 64, 0), rgba(169, 126, 64, 0.26), rgba(169, 126, 64, 0));
}

.story-editorial-row {
  margin-bottom: 38px;
}

.story-editorial-quote {
  max-width: 300px;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.story-body {
  max-width: 760px;
}

.story-lead {
  margin-bottom: 22px;
  color: var(--color-dark);
  font-size: 1.18rem;
  line-height: 1.92;
}

.story-description {
  max-width: 720px;
  line-height: 1.9;
}

.story-principles-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 30px;
  border-top: 1px solid rgba(169, 126, 64, 0.12);
}

.story-principle-inline {
  min-width: 0;
}

.story-principle-index {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(169, 126, 64, 0.7);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.story-principle-inline h5,
.timeline-card h5,
.credential-card h5 {
  margin-bottom: 10px;
  color: var(--color-dark);
  font-size: 1.06rem;
  font-weight: 700;
}

.credential-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(251, 200, 100, 0.16);
  color: var(--color-gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.about-timeline-section {
  background: linear-gradient(180deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
}

.timeline-intro {
  color: var(--color-gray);
  line-height: 1.8;
}

.timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 3%;
  right: 3%;
  height: 1px;
  background: linear-gradient(90deg, rgba(169, 126, 64, 0), rgba(169, 126, 64, 0.22), rgba(169, 126, 64, 0));
}

.timeline-card {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(207, 168, 110, 0.18);
  box-shadow: var(--shadow-gold);
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  box-shadow: 0 0 0 8px rgba(251, 200, 100, 0.14);
}

.timeline-year {
  display: inline-block;
  margin: 18px 0 14px;
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.about-facility-section {
  background: rgba(255, 255, 255, 0.92);
}

.facility-shell {
  padding: clamp(30px, 4vw, 48px);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(253, 251, 247, 0.8) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid rgba(207, 168, 110, 0.14);
}

.facility-lead {
  margin-bottom: 0;
  color: var(--color-gray);
  font-size: 1.05rem;
  line-height: 1.82;
}

.facility-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.facility-point {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(169, 126, 64, 0.14);
}

.facility-point:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.facility-point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.facility-gallery-item {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.facility-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.facility-gallery-item:hover img {
  transform: scale(1.04);
}

.facility-gallery-item-large {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 560px;
}

.facility-gallery-item:not(.facility-gallery-item-large):not(.facility-gallery-item-wide) {
  grid-column: span 5;
  min-height: 270px;
}

.facility-gallery-item-wide {
  grid-column: span 5;
  min-height: 270px;
}

.about-credentials-section {
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
}

.credential-intro {
  max-width: 680px;
}

.credential-card {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(207, 168, 110, 0.18);
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
}

.credential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(207, 168, 110, 0.14);
}

.credential-number {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(169, 126, 64, 0.54);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.credential-icon {
  margin-bottom: 20px;
}

.partner-panel {
  padding: 32px clamp(24px, 4vw, 42px);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(253, 251, 247, 0.92) 100%);
  border: 1px solid rgba(207, 168, 110, 0.18);
  box-shadow: var(--shadow-gold);
}

.partner-panel-title {
  margin-bottom: 0;
  color: var(--color-dark);
  font-size: 1.3rem;
  line-height: 1.45;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.partner-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(207, 168, 110, 0.12);
  color: rgba(18, 18, 18, 0.66);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .nav-link {
    padding: 10px 8px !important;
    font-size: 0.9rem;
  }

  .lang-switch .nav-link {
    padding: 10px 4px !important;
  }

  .btn-primary-gold.d-lg-inline-flex {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .about-hero-title {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
  }

  .environment-gallery-item-large {
    min-height: 560px;
  }

  .facility-gallery-item-large {
    min-height: 500px;
  }
}

@media (max-width: 991px) {
  .hero-slider-bg::after {
    background: linear-gradient(180deg, rgba(253, 251, 247, 0.95) 0%, rgba(253, 251, 247, 0.85) 50%, rgba(253, 251, 247, 0.3) 100%);
  }

  .final-cta::after {
    display: none;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-cta-details {
    padding-top: 10px;
    border-top: 1px solid rgba(169, 126, 64, 0.16);
  }

  .contact-map-card {
    min-height: 430px;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 406px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .about-main {
    padding-top: 88px;
  }

  .about-hero-shell {
    padding: 34px 28px;
    border-radius: 28px;
  }

  .about-hero-aside {
    padding-left: 0;
  }

  .about-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .environment-gallery-item-large {
    grid-column: span 12;
    grid-row: auto;
    min-height: 420px;
  }

  .environment-gallery-item:not(.environment-gallery-item-large):not(.environment-gallery-item-wide) {
    grid-column: span 6;
    min-height: 240px;
  }

  .environment-gallery-item-wide {
    grid-column: span 12;
    min-height: 260px;
  }

  .credential-ledger-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .credential-ledger-proof {
    justify-self: start;
  }

  .about-story-shell,
  .facility-shell,
  .partner-panel {
    border-radius: 28px;
  }

  .about-story-shell {
    padding: 48px 34px;
  }

  .story-editorial-quote {
    max-width: none;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-grid::before {
    display: none;
  }

  .facility-gallery-item-large,
  .facility-gallery-item:not(.facility-gallery-item-large):not(.facility-gallery-item-wide),
  .facility-gallery-item-wide {
    grid-column: span 6;
    min-height: 260px;
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  h1 {
    line-height: 1.2;
  }

  .about-main {
    padding-top: 82px;
  }

  .about-hero {
    padding: 26px 0 12px;
  }

  .about-hero-shell {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .about-hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1.06;
  }

  .about-hero-text,
  .about-section-text,
  .about-story-body,
  .credential-ledger-item p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .about-hero-actions,
  .about-cta-actions {
    margin-top: 26px;
  }

  .about-hero-actions .btn,
  .about-cta-actions .btn {
    width: 100%;
  }

  .about-footprint {
    gap: 10px 14px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .about-footprint span {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .about-section-head {
    margin-bottom: 30px;
  }

  .about-section-title,
  .about-cta-title {
    font-size: clamp(1.75rem, 7vw, 2.3rem);
  }

  .about-metrics {
    grid-template-columns: 1fr;
    margin-top: 34px;
    padding-top: 22px;
  }

  .environment-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .environment-gallery-item,
  .environment-gallery-item-large,
  .environment-gallery-item-wide,
  .environment-gallery-item:not(.environment-gallery-item-large):not(.environment-gallery-item-wide) {
    grid-column: auto;
    min-height: 220px;
    border-radius: 22px;
  }

  .credential-ledger-main {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .credential-ledger-index {
    width: 46px;
    height: 46px;
    font-size: 0.76rem;
  }

  .credential-ledger-proof {
    min-height: 46px;
    padding: 10px 14px;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .about-cta-section {
    padding-bottom: 54px;
  }

  .about-cta-shell {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    align-items: flex-start;
  }

  .hero-slider-controls {
    bottom: 24px;
    gap: 10px;
    padding: 8px 10px;
  }

  .hero-slider-btn {
    width: 38px;
    height: 38px;
  }

  .hero-pagination {
    min-width: 62px;
  }

  .whatsapp-float {
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
  }

  .mobile-bottom-bar {
    display: flex;
    gap: 12px;
  }

  footer {
    padding-bottom: 100px;
  }

  .final-cta {
    border-radius: 12px;
  }

  .final-cta::before {
    inset: 10px;
    border-radius: 8px;
  }

  .final-cta-inner {
    padding: 42px 22px;
  }

  .contact-cta-inner {
    padding: 30px 18px;
  }

  .final-cta-actions .btn {
    width: 100%;
  }

  .final-cta-detail {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .final-cta-detail .ph {
    width: 40px;
    height: 40px;
  }

  .contact-map-card {
    min-height: 360px;
    padding: 8px;
    border-radius: 18px;
  }

  .contact-map-card::before {
    inset: 8px;
    border-radius: 14px;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 344px;
    border-radius: 14px;
  }

  .contact-map-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    align-items: flex-start;
    border-radius: 16px;
    font-size: 0.78rem;
  }

  .contact-stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-fullbleed iframe {
    min-height: 360px;
    height: 52vh;
  }

  .contact-form-card {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .contact-form-head {
    margin-bottom: 30px;
  }

  .contact-intro .stat-card strong {
    font-size: 1.08rem;
  }

  .contact-phone-group {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 10px;
  }

  .contact-field input,
  .contact-field select {
    min-height: 64px;
    padding: 0 20px;
  }

  .contact-field textarea {
    min-height: 180px;
    padding: 20px;
  }

  .contact-submit-btn {
    min-height: 72px;
    font-size: 1.1rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .about-page .hero-section {
    min-height: auto;
  }

  .about-story-shell,
  .facility-shell,
  .partner-panel,
  .timeline-card,
  .credential-card {
    border-radius: 22px;
  }

  .about-story-shell,
  .facility-shell {
    padding: 22px;
  }

  .partner-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .story-divider {
    margin: 28px auto 30px;
  }

  .story-editorial-row {
    margin-bottom: 28px;
  }

  .story-editorial-quote {
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .story-lead,
  .story-description {
    font-size: 1rem;
    line-height: 1.82;
  }

  .story-principles-inline {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 24px;
  }

  .credential-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 1.3rem;
  }

  .timeline-card {
    padding: 26px 20px 22px;
  }

  .timeline-card::before {
    left: 20px;
  }

  .facility-gallery {
    grid-template-columns: 1fr;
  }

  .facility-gallery-item-large,
  .facility-gallery-item:not(.facility-gallery-item-large):not(.facility-gallery-item-wide),
  .facility-gallery-item-wide {
    grid-column: auto;
    min-height: 240px;
  }

  .partner-grid span {
    min-height: 62px;
  }
}

/* About page refinement: cleaner Apple-like editorial layout */
.about-page {
  background: linear-gradient(180deg, #fbfbfd 0%, #ffffff 32%, #fbfbfd 100%);
}

.page-hero,
.about-page-banner {
  min-height: 62vh;
  height: auto !important;
  padding-top: 108px;
  padding-bottom: 72px;
  background: #f5f5f7;
}

.page-hero .hero-slider-bg,
.about-page-banner .hero-slider-bg {
  z-index: 0;
}

.page-hero .hero-slider-bg::after,
.about-page-banner .hero-slider-bg::after {
  display: none;
}

.page-hero-bg,
.about-page-banner-bg {
  background-size: cover;
  background-position: right center;
}

.about-page-banner-bg {
  background-image: url('about-hero.png');
}

.page-hero-overlay,
.about-page-banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(253, 251, 247, 0.94) 0%, rgba(253, 251, 247, 0.9) 28%, rgba(253, 251, 247, 0.0) 100%);
}

.page-hero-content,
.about-page-banner-content {
  max-width: 720px;
}

.page-hero .section-subtitle,
.about-page-banner .section-subtitle {
  margin-bottom: 16px;
}

.page-hero h1,
.about-page-banner h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-hero .hero-subtitle,
.about-page-banner .hero-subtitle {
  max-width: 620px;
  color: rgba(18, 18, 18, 0.72) !important;
  font-size: 1rem;
  line-height: 1.58;
}

.text-gradient-premium {
  background: linear-gradient(135deg, #111111 8%, #5f5f5f 30%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-apple-main {
  padding-top: 0;
}

.about-apple-intro,
.about-apple-presence,
.about-apple-certifications {
  background: #fff;
}

.about-apple-environment {
  background: #f5f5f7;
  overflow: hidden;
}

.section-copy,
.about-apple-copy {
  max-width: 960px;
}

.section-title,
.about-apple-title,
.split-section-title,
.about-apple-section-title {
  margin-bottom: 20px;
  color: var(--color-dark);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.section-title-sm,
.about-apple-title-sm {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.section-lead,
.about-apple-lead {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(18, 18, 18, 0.68);
  font-size: 1rem;
  line-height: 1.58;
}

.stats-grid,
.about-apple-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.contact-intro .stats-grid.contact-stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.contact-intro .stat-card strong {
  margin-bottom: 10px;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.contact-intro .stat-card span {
  font-size: 0.98rem;
  line-height: 1.68;
}

.stat-card,
.about-apple-stat {
  min-width: 0;
  padding: 28px 24px;
  border-radius: 28px;
  background: rgba(245, 245, 247, 0.9);
  border: 1px solid rgba(18, 18, 18, 0.05);
}

.stat-card strong,
.about-apple-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.stat-card span,
.about-apple-stat span {
  display: block;
  color: rgba(18, 18, 18, 0.64);
  font-size: 0.94rem;
  line-height: 1.7;
}

.split-section,
.about-apple-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
}

.split-section-title,
.about-apple-section-title {
  margin-bottom: 0;
}

.split-section-body p,
.about-apple-grid-body p {
  margin-bottom: 26px;
  color: rgba(18, 18, 18, 0.7);
  font-size: 1rem;
  line-height: 1.58;
}

.pill-list,
.about-apple-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list>*,
.about-apple-cities span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.9);
  color: rgba(18, 18, 18, 0.72);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-gallery-bleed,
.about-apple-gallery-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 54px;
  padding-inline: clamp(20px, 4vw, 48px);
}

.media-gallery-wrap,
.about-apple-gallery-swiper-wrap {
  position: relative;
}

.about-gallery-swiper {
  overflow: hidden;
}

.about-gallery-swiper .swiper-wrapper {
  align-items: stretch;
}

.about-gallery-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.media-gallery-slide,
.about-gallery-slide {
  --gallery-ratio: 1;
  width: clamp(300px, 26vw, 380px);
}

.media-gallery-slide.is-wide,
.about-gallery-slide-wide {
  --gallery-ratio: 1.6;
  width: clamp(420px, 44vw, 700px);
}

.media-gallery-slide.is-tall,
.about-gallery-slide-tall {
  --gallery-ratio: 0.8;
  width: clamp(260px, 23vw, 340px);
}

.media-gallery-card,
.about-apple-gallery-item {
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: 32px;
  background: #fff;
}

.about-gallery-media {
  overflow: hidden;
  height: 100%;
  background: #efeff1;
}

.media-gallery-card img,
.about-apple-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.media-gallery-card:hover img,
.about-apple-gallery-item:hover img {
  transform: scale(1.03);
}

.media-gallery-caption,
.about-gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 42px 22px 18px;
  background: linear-gradient(180deg, rgba(245, 245, 247, 0) 0%, rgba(245, 245, 247, 0.68) 46%, #f5f5f7 100%);
}

.media-gallery-caption strong,
.about-gallery-caption strong {
  display: block;
  margin-bottom: 0;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-gallery-pagination {
  position: static !important;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100% !important;
  margin-top: 24px;
  transform: none !important;
}

.credential-list,
.about-apple-credentials {
  max-width: 980px;
  margin: 56px auto 0;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.credential-item,
.about-apple-credential {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.credential-index,
.about-apple-credential-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 245, 247, 0.95);
  color: rgba(18, 18, 18, 0.52);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.credential-item h5,
.about-apple-credential h5 {
  margin-bottom: 8px;
  color: var(--color-dark);
  font-size: 1.12rem;
  font-weight: 700;
}

.credential-item p,
.about-apple-credential p {
  margin-bottom: 0;
  color: rgba(18, 18, 18, 0.68);
  font-size: 1rem;
  line-height: 1.58;
}

@media (max-width: 991px) {

  .page-hero,
  .about-page-banner {
    min-height: 52vh;
    padding-top: 104px;
    padding-bottom: 58px;
  }

  .page-hero h1,
  .about-page-banner h1 {
    font-size: clamp(2.5rem, 6vw, 3.6rem);
  }

  .stats-grid,
  .about-apple-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .about-apple-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .media-gallery-bleed,
  .about-apple-gallery-bleed {
    padding-inline: 24px;
  }

  .media-gallery-slide,
  .about-gallery-slide {
    width: min(48vw, 340px);
  }

  .media-gallery-slide.is-wide,
  .about-gallery-slide-wide {
    width: min(64vw, 520px);
  }

  .media-gallery-slide.is-tall,
  .about-gallery-slide-tall {
    width: min(34vw, 280px);
  }
}

@media (max-width: 768px) {

  .page-hero,
  .about-page-banner {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 28px;
    background: linear-gradient(180deg, #fbfbfd 0%, #ffffff 100%);
  }

  .page-hero .hero-slider-bg,
  .about-page-banner .hero-slider-bg {
    top: 96px;
    left: 16px;
    right: 16px;
    width: auto;
    height: 250px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(18, 18, 18, 0.12);
  }

  .page-hero .container.position-relative,
  .about-page-banner .container.position-relative {
    min-height: auto !important;
    align-items: flex-start !important;
  }

  .page-hero-overlay,
  .about-page-banner-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.28) 34%, rgba(255, 255, 255, 0.82) 74%, rgba(255, 255, 255, 0.96) 100%);
  }

  .page-hero-bg,
  .about-page-banner-bg {
    background-position: center center;
    transform: scale(1.04);
  }

  .page-hero-content,
  .about-page-banner-content {
    max-width: none;
    margin-top: 180px;
    padding: 22px 20px 6px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, #ffffff 100%);
    box-shadow: 0 18px 38px rgba(18, 18, 18, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .page-hero .section-subtitle,
  .about-page-banner .section-subtitle {
    margin-bottom: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .page-hero h1,
  .about-page-banner h1 {
    display: block;
    max-width: 100%;
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 8.4vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .page-hero .text-gradient-premium,
  .about-page-banner .text-gradient-premium {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: var(--color-dark);
  }

  .page-hero .hero-subtitle,
  .about-page-banner .hero-subtitle,
  .section-lead,
  .about-apple-lead,
  .split-section-body p,
  .about-apple-grid-body p,
  .credential-item p,
  .about-apple-credential p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .section-title,
  .about-apple-title,
  .split-section-title,
  .about-apple-section-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .stats-grid,
  .about-apple-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }

  .stat-card,
  .about-apple-stat {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .media-gallery-bleed,
  .about-apple-gallery-bleed {
    margin-top: 34px;
    padding-inline: 16px;
  }

  .media-gallery-slide,
  .media-gallery-slide.is-wide,
  .media-gallery-slide.is-tall,
  .about-gallery-slide,
  .about-gallery-slide-wide,
  .about-gallery-slide-tall {
    width: 82vw;
  }

  .media-gallery-card,
  .about-apple-gallery-item {
    border-radius: 24px;
  }

  .media-gallery-caption,
  .about-gallery-caption {
    padding: 34px 16px 14px;
  }

  .media-gallery-caption strong,
  .about-gallery-caption strong {
    font-size: 1rem;
  }

  .credential-list,
  .about-apple-credentials {
    margin-top: 34px;
  }

  .credential-item,
  .about-apple-credential {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .credential-index,
  .about-apple-credential-index {
    width: 46px;
    height: 46px;
    font-size: 0.76rem;
  }

  .pill-list>*,
  .about-apple-cities span {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.74rem;
  }
}

@media (max-width: 480px) {

  .page-hero .hero-slider-bg,
  .about-page-banner .hero-slider-bg {
    height: 220px;
    border-radius: 24px;
  }

  .page-hero-content,
  .about-page-banner-content {
    margin-top: 158px;
    padding: 20px 18px 4px;
    border-radius: 22px;
  }

  .page-hero h1,
  .about-page-banner h1 {
    font-size: clamp(1.82rem, 8.8vw, 2.35rem);
  }
}

body.services-page,
body.service-detail-page,
body.articles-page,
body.article-detail-page {
  background: linear-gradient(180deg, #fbfbfd 0%, #ffffff 34%, #fbfbfd 100%);
}

body.article-detail-page {
  background: #fff;
}

.services-main,
.service-detail-main,
.articles-main,
.article-detail-main {
  padding-top: 0;
}

.layanan-page-banner-bg {
  background-image: url('service-hero.png');
}

.dokter-page-banner-bg{
  background-image: url('dokter-hero.png');
}

.artikel-page-banner-bg {
  background-image: url('news-hero.png');
}

.service-detail-banner-bg {
  background-size: cover;
  background-position: right center;
}

.services-intro,
.articles-intro {
  background: #fff;
}

.services-intro,
.articles-intro {
  padding-bottom: 52px;
}

.services-treatment-section {
  background: #f5f5f7;
}

.services-treatment-section {
  padding-top: 8px;
  background: transparent;
}

.services-treatment-grid {
  row-gap: 2rem;
}

.articles-list-grid {
  row-gap: 2rem;
}

.articles-list-section {
  padding-top: 8px;
  background: transparent;
}

.articles-search-shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(253, 251, 247, 0.92) 100%);
  border: 1px solid rgba(207, 168, 110, 0.16);
  box-shadow: 0 18px 36px rgba(18, 18, 18, 0.04);
}

.articles-search-form {
  flex: 1 1 auto;
}

.articles-search-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.articles-search-control {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 10px 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.articles-search-control .ph {
  color: rgba(18, 18, 18, 0.42);
  font-size: 1.2rem;
}

.articles-search-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-dark);
  font-size: 1rem;
}

.articles-search-input::placeholder {
  color: rgba(18, 18, 18, 0.42);
}

.articles-search-clear {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(251, 200, 100, 0.16);
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.articles-search-clear:hover {
  background: rgba(251, 200, 100, 0.26);
}

.articles-search-status {
  flex: 0 0 auto;
  color: rgba(18, 18, 18, 0.58);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: right;
}

.articles-empty-state {
  margin-top: 20px;
}

.articles-empty-card {
  padding: 36px 32px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 245, 247, 0.94) 100%);
  border: 1px solid rgba(207, 168, 110, 0.16);
  box-shadow: 0 18px 36px rgba(18, 18, 18, 0.04);
}

.articles-empty-card h3 {
  color: var(--color-dark);
  font-size: 1.5rem;
  font-weight: 700;
}

.articles-empty-card p {
  color: rgba(18, 18, 18, 0.62);
  line-height: 1.75;
}

.article-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(18, 18, 18, 0.05);
}

.article-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.article-card:hover .article-card-thumb img {
  transform: scale(1.04);
}

.article-card-body {
  position: relative;
  z-index: 1;
}

.article-card-date {
  color: rgba(18, 18, 18, 0.5);
}

.article-card-title {
  line-height: 1.4;
  color: var(--color-dark);
}

.article-card-title a {
  color: inherit;
}

.article-card-link {
  color: var(--color-gold-dark);
}

.article-card-link:hover {
  color: var(--color-gold-dark);
}

.article-card-link .ph {
  transition: transform 0.3s ease;
}

.article-card:hover .article-card-link .ph {
  transform: translateX(4px);
}

.article-detail-main {
  padding-top: 118px;
  padding-bottom: 40px;
  background: #fff;
}

.article-detail-main .section-padding {
  padding: 40px 0;
}

.article-detail-content-section .container,
.article-detail-nav-section .container {
  --article-detail-max-width: 1040px;
}

.article-detail-header {
  margin-bottom: 30px;
}

.article-detail-back {
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(18, 18, 18, 0.72);
  font-weight: 600;
}

.article-detail-back:hover {
  color: var(--color-dark);
}

.article-detail-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(18, 18, 18, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(251, 200, 100, 0.14);
  box-shadow: inset 0 0 0 1px rgba(169, 126, 64, 0.14);
  color: var(--color-gold-dark);
}

.article-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(169, 126, 64, 0.5);
}

.article-detail-header h1 {
  margin-bottom: 0;
  color: var(--color-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.article-detail-prose {
  max-width: var(--article-detail-max-width);
  margin: 0 auto;
}

.article-detail-prose strong{
  color: #111111;
}

.article-detail-inline-cover {
  margin-bottom: 28px;
  border-radius: 24px;
  overflow: hidden;
}

.article-detail-inline-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.article-detail-lead {
  margin-bottom: 24px;
  color: rgba(18, 18, 18, 0.74);
  font-size: 1.08rem;
  line-height: 1.8;
}

.article-detail-prose h2 {
  margin: 28px 0 12px;
  color: var(--color-dark);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.article-detail-prose p,
.article-detail-prose li {
  color: rgba(18, 18, 18, 0.68);
  font-size: 0.98rem;
  line-height: 1.82;
}

.article-detail-prose ul {
  display: grid;
  gap: 8px;
  margin: 0 0 8px;
  padding-left: 1.15rem;
}

.article-detail-nav-section {
  padding-top: 0 !important;
}

.article-detail-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--article-detail-max-width);
  margin: 0 auto;
  padding-top: 10px;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.article-detail-nav-link {
  display: block;
  padding: 22px 0 0;
  color: var(--color-dark);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.article-detail-nav-link:hover {
  opacity: 0.72;
  transform: translateY(-2px);
}

.article-detail-nav-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(18, 18, 18, 0.5);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-detail-nav-link strong {
  display: block;
  color: var(--color-dark);
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 700;
}

.article-detail-nav-next {
  text-align: right;
}

.services-treatment-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(169, 126, 64, 0.12);
  box-shadow: 0 18px 42px rgba(18, 18, 18, 0.04);
}

.services-treatment-card .treatment-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.services-treatment-card .treatment-tag {
  align-self: flex-start;
}

.services-treatment-card .treatment-btn {
  margin-top: auto;
}

.service-detail-simple-main {
  position: relative;
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: #fdfbf7;
  background-image:
    linear-gradient(130deg, #fbfbfd 0%, rgba(253, 251, 247, 0) 8%),
    radial-gradient(circle at 10% 20%, rgba(251, 200, 100, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 45%, rgba(169, 126, 64, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 20% 75%, rgba(251, 200, 100, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 85% 95%, rgba(207, 168, 110, 0.06) 0%, transparent 45%);
  z-index: 1;
}

.service-detail-simple-main .section-padding {
  padding: 40px 0;
}

.service-simple-hero-copy {
  max-width: 640px;
}

.service-detail-banner {
  background:
    radial-gradient(circle at 78% 20%, rgba(251, 200, 100, 0.24), transparent 26%),
    linear-gradient(180deg, #fdfbf7 0%, #fbfbfd 100%);
}

.service-detail-banner .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(253, 251, 247, 0.96) 0%, rgba(253, 251, 247, 0.82) 36%, rgba(253, 251, 247, 0.18) 100%),
    radial-gradient(circle at 78% 24%, rgba(251, 200, 100, 0.22), transparent 30%);
}

.service-simple-hero-copy .section-subtitle {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(251, 200, 100, 0.14);
  box-shadow: inset 0 0 0 1px rgba(169, 126, 64, 0.14);
}

.service-simple-intro,
.service-simple-facts,
.service-comparison-section,
.service-simple-support {
  background: transparent;
  position: relative;
  z-index: 2;
}

.service-simple-shell,
.service-simple-support-shell {
  padding: clamp(30px, 5vw, 52px);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(253, 251, 247, 0.75) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(207, 168, 110, 0.18);
  box-shadow: 0 22px 50px rgba(18, 18, 18, 0.03);
  position: relative;
  overflow: hidden;
}

.service-simple-shell::before,
.service-simple-support-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(251, 200, 100, 0), rgba(251, 200, 100, 0.75), rgba(251, 200, 100, 0));
}

.service-comparison-shell {
  gap: 0;
}

.implant-comparison-wrap {
  position: relative;
  margin-top: 44px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(251, 200, 100, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 247, 0.94) 100%);
  border: 1px solid rgba(207, 168, 110, 0.14);
  box-shadow: 0 20px 48px rgba(18, 18, 18, 0.06);
}

.implant-comparison-slider {
  display: block;
  width: 100%;
  height: auto;
  --divider-width: 3px;
  --divider-color: rgba(255, 255, 255, 0.96);
  --default-handle-width: 56px;
  --default-handle-color: rgba(255, 255, 255, 0.94);
  --default-handle-opacity: 1;
  --default-handle-shadow: 0 10px 28px rgba(18, 18, 18, 0.14);
}

.implant-comparison-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #efeff1;
}



.implant-comparison-after {
  filter: saturate(1.02) contrast(1.02);
}

.implant-comparison-badge {
  position: absolute;
  top: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
}

.implant-comparison-badge-first {
  left: 18px;
}

.implant-comparison-badge-second {
  right: 18px;
}

.implant-comparison-note {
  margin-top: 18px;
  color: rgba(18, 18, 18, 0.52);
  font-size: 0.88rem;
  line-height: 1.7;
}

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

.service-simple-card,
.service-simple-note-card,
.service-simple-faq-card {
  --simple-card-radius: 28px;
  height: 100%;
  padding: 30px 28px;
  border-radius: var(--simple-card-radius);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(207, 168, 110, 0.2);
  box-shadow: 0 8px 24px rgba(207, 168, 110, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  z-index: 1;
}

.service-simple-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  isolation: isolate;
}

.service-simple-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(251, 200, 100, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(251, 200, 100, 0.03) 100%);
  opacity: 0.9;
  z-index: -1;
}

.service-simple-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-simple-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  box-shadow: inset 0 0 0 1px rgba(169, 126, 64, 0.12);
  color: #fff;
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.service-simple-card:hover,
.service-simple-note-card:hover,
.service-simple-faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(207, 168, 110, 0.12);
  border-color: rgba(207, 168, 110, 0.4);
}

.service-simple-label {
  display: block;
  margin-bottom: 14px;
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-simple-card h3 {
  margin-bottom: 0;
  color: var(--color-dark);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-simple-highlight {
  margin-bottom: 0;
  color: var(--color-dark) !important;
  font-family: var(--font-heading);
  font-size: 1.08rem !important;
  line-height: 1.5 !important;
  letter-spacing: -0.02em;
}

.service-simple-highlight strong {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-gold-dark);
  font-weight: 700;
}

.service-simple-pill-row,
.service-simple-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-simple-pill,
.service-simple-meta-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(251, 200, 100, 0.08);
  box-shadow: inset 0 0 0 1px rgba(169, 126, 64, 0.12);
  color: rgba(18, 18, 18, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-simple-meta-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.service-simple-meta-list span {
  min-height: 0;
  padding: 12px 14px;
  border-radius: 16px;
  justify-content: space-between;
  gap: 10px;
  background: rgba(245, 245, 247, 0.82);
}

.service-simple-meta-list strong {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 700;
}

.service-simple-card-pricing::after,
.service-simple-card-timeline::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 200, 100, 0.14) 0%, rgba(251, 200, 100, 0) 72%);
  z-index: -1;
}

.service-simple-note-card .section-title,
.service-simple-faq-card .section-title {
  margin-bottom: 18px;
}

.service-simple-card p,
.service-simple-list li,
.service-simple-accordion .accordion-body {
  margin-bottom: 0;
  color: rgba(18, 18, 18, 0.68);
  font-size: 0.98rem;
  line-height: 1.82;
}

.service-simple-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.service-simple-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(207, 168, 110, 0.14);
  border-radius: 22px;
  background: rgba(245, 245, 247, 0.78);
}

.service-simple-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.service-simple-accordion .accordion-button {
  padding: 20px 22px;
  background: transparent;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: none;
}

.service-simple-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(180deg, rgba(253, 251, 247, 0.98) 0%, rgba(251, 200, 100, 0.08) 100%);
  color: var(--color-dark);
}

.service-simple-accordion .accordion-button:not(.collapsed) {
  box-shadow: inset 0 -1px 0 rgba(169, 126, 64, 0.1);
}

.service-simple-accordion .accordion-button::after {
  width: 0.95rem;
  height: 0.95rem;
  background-size: 0.95rem;
}

.service-simple-accordion .accordion-body {
  padding: 0 22px 22px;
}

@media (max-width: 991px) {
  .service-simple-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .mobile-bottom-bar{
    display: none !important;
  }
  .service-simple-hero-copy .section-subtitle {
    min-height: 34px;
    padding: 7px 14px;
  }

  .implant-comparison-wrap {
    margin-top: 34px;
    border-radius: 22px;
  }

  .implant-comparison-badge {
    top: 14px;
    min-height: 30px;
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .implant-comparison-badge-first {
    left: 14px;
  }

  .implant-comparison-badge-second {
    right: 14px;
  }

  .service-simple-shell,
  .service-simple-support-shell,
  .service-simple-card,
  .service-simple-note-card,
  .service-simple-faq-card,
  .service-simple-accordion .accordion-item {
    border-radius: 22px;
  }

  .service-simple-card,
  .service-simple-note-card,
  .service-simple-faq-card {
    --simple-card-radius: 22px;
  }

  .service-simple-card-top {
    align-items: flex-start;
  }

  .service-simple-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .service-simple-shell,
  .service-simple-support-shell,
  .service-simple-card,
  .service-simple-note-card,
  .service-simple-faq-card {
    padding: 22px 20px;
  }


  .service-simple-accordion .accordion-button {
    padding: 18px 20px;
  }

  .service-simple-accordion .accordion-body {
    padding: 0 20px 20px;
  }

  .service-simple-highlight strong {
    font-size: 1.55rem;
  }

  .articles-search-shell {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px;
    border-radius: 24px;
  }

  .articles-search-status {
    text-align: left;
  }

  .articles-search-control {
    min-height: 58px;
    padding-left: 16px;
  }

  .article-detail-main {
    padding-top: 102px;
  }

  .article-detail-hero-meta {
    gap: 10px;
    font-size: 0.76rem;
  }

  .article-detail-nav {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .article-detail-nav-next {
    text-align: left;
  }
}

.pagination{
  margin-top: 2rem;
}

.active>.page-link, .page-link.active{
  background-color:var(--color-gold-dark);
  border: 1px solid var(--color-gold-dark);
}

.doctor-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(207, 168, 110, 0.3);
  border-radius: 0 !important;
}

.doctor-accordion .accordion-item:first-child {
  border-top: 1px solid rgba(207, 168, 110, 0.3);
}

.doctor-accordion .accordion-button {
  background: transparent !important;
  color: var(--color-dark);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 24px 0;
  box-shadow: none !important;
}

.doctor-accordion .accordion-button:not(.collapsed) {
  color: var(--color-gold-dark);
}

/* Custom SVG Plus Icon */
.doctor-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  background-size: 1.25rem;
  transition: transform 0.3s ease;
}

/* Custom SVG Minus Icon when expanded */
.doctor-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CFA86E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  transform: none;
  /* Keep horizontal */
}

.doctor-accordion .accordion-body {
  padding: 0 0 32px;
  color: var(--color-gray);
  line-height: 1.8;
  font-size: 1.05rem;
}

.doctor-hero-row {
  align-items: center;
}

.doctor-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 100%;
}

.doctor-hero-image {
  width: min(100%, 480px);
  max-height: 660px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 28px 40px rgba(18, 18, 18, 0.08));
}

@media (min-width: 992px) {
  .doctor-hero-copy-col {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .doctor-hero-image-col {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
}

@media (max-width: 991.98px) {
  .doctor-detail-hero .doctor-hero-row {
    position: relative;
  }

  .doctor-detail-hero .doctor-hero-copy-col {
    position: relative;
    z-index: 2;
  }

  .doctor-detail-hero .doctor-hero-image-col {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(150px, 42vw, 210px);
    z-index: 1;
    pointer-events: none;
  }

  .doctor-hero-visual {
    justify-content: center;
    margin-top: 12px;
  }

  .doctor-hero-image {
    width: min(100%, 340px);
    max-height: 460px;
  }

  .doctor-detail-hero .doctor-hero-visual {
    justify-content: flex-end;
    margin-top: 0;
  }

  .doctor-detail-hero .doctor-hero-image {
    width: 100%;
    max-height: 245px;
    object-position: center top;
    filter: drop-shadow(0 18px 24px rgba(18, 18, 18, 0.12));
  }

  .doctor-detail-hero .page-hero-content {
    margin-top: 200px;
    padding-top: 20px;
  }

  .doctor-detail-hero .page-hero-content h1 {
    max-width: calc(100% - 92px);
  }
}

#mainNav-dropmenu0_b >a:nth-of-type(1){
  display: none !important;
}

#mainNav-dropmenu1_b,#mainNav-dropmenu2_b{
  display: none !important;
}

.dropmenu1_b a::after,.dropmenu1_b button ,.dropmenu2_b a::after ,.dropmenu2_b button{
  display: none !important;
}
