:root {
  --bg: white;
  --header-bg: #f7efe5;
  --header-bg-strong: #f2e5d6;
  --accent: #b4882e;
  --accent-dark: #996f1b;
  --button-gradient: linear-gradient(135deg, #c49443 0%, #E0AA3E 55%, #B88A44 100%);
  --text: #2f2419;
  --muted: #6e5a49;
  --panel-bg: #fffaf4;
  --panel-border: rgba(162, 116, 72, 0.16);
  --shadow: 0 18px 45px rgba(72, 47, 24, 0.12);
  --shadow-soft: 0 10px 24px rgba(72, 47, 24, 0.08);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --font-style : Georgia, "Times New Roman", serif;
  --font-main: "Poppins", sans-serif;
  
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100%;
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  /* background: linear-gradient(180deg, var(--header-bg) 0%, #f9f2ea 100%); */
  /* background: linear-gradient(180deg, #f9ead6 0%, #f9ead6 100%); */
  background: linear-gradient(180deg, #fdf6ec 0%, #fdf6ec 100%);;

  border-bottom: 1px solid rgba(140, 97, 57, 0.12);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.45) inset;
  z-index: 1030;
}

.header-navbar {
  padding: 0;
}

.header-shell {
  min-height: 108px;
  gap: 1rem;
  width: 100%;
}

.nav-collapse-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  margin-right: 0.85rem;
}

.brand-logo {
  display: block;
  width: auto;
  height: 84px;
  object-fit: contain;
}

.header-toggler {
  border: 0;
  color: var(--accent-dark);
  padding: 0.35rem 0.5rem;
  box-shadow: none !important;
}

.header-toggler i {
  font-size: 2rem;
  line-height: 1;
}

.header-nav {
  flex: 1 1 auto;
  align-items: stretch;
  column-gap: 1.35rem;
  justify-content: center;
}

.header-cta-wrap {
  flex: 0 0 auto;
}

.header-link {
  position: relative;
  color: var(--text) !important;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.7rem 0.25rem !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.header-link::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  right: 0.25rem;
  bottom: 0.45rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  opacity: 0.9;
}

.header-link:hover::after,
.header-link:focus-visible::after,
.dropdown-mega:focus-within > .nav-row .header-link::after {
  transform: scaleX(1);
}

.header-link:focus-visible {
  outline: none;
}

.appointment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  background: var(--button-gradient);
  color: #fff;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(162, 116, 72, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
  animation: appointmentBreath 3.8s ease-in-out infinite;
}

.appointment-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.appointment-btn::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -140%;
  width: 55%;
  height: 140%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
}

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

.appointment-btn i {
  font-size: 1.05rem;
}

.appointment-btn:hover,
.appointment-btn:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(162, 116, 72, 0.28);
  background: var(--button-gradient);
}

.appointment-btn:hover::after,
.appointment-btn:focus-visible::after {
  opacity: 1;
  animation: appointmentShine 0.9s ease forwards;
}

@keyframes appointmentBreath {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 14px 28px rgba(162, 116, 72, 0.22);
  }

  50% {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(162, 116, 72, 0.26);
  }
}

@keyframes appointmentShine {
  0% {
    left: -140%;
  }

  100% {
    left: 145%;
  }
}

@media (min-width: 992px) {
  .header-navbar .navbar-toggler {
    display: none;
  }

  .header-navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .header-navbar .collapse:not(.show) {
    display: flex !important;
  }
}

@media (max-width: 991.98px) {
  .header-navbar .navbar-toggler {
    display: inline-flex;
  }

  .header-navbar .navbar-collapse {
    flex-basis: 100%;
  }

  .header-navbar .collapse:not(.show) {
    display: none !important;
  }
}

.dropdown-mega {
  position: relative;
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 0;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(162, 116, 72, 0.1);
  color: var(--text);
  transform: translateY(-1px);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(960px, calc(100vw - 2rem));
  transform: translate(-50%, 12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  padding-top: 0.6rem;
  z-index: 1040;
}

.mega-menu-inner {
  background: rgba(255, 250, 244, 0.98);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 0.9rem;
  backdrop-filter: blur(8px);
  align-items: start;
}

.dropdown-dentistry .mega-menu-inner {
  grid-template-columns: 1fr;
  width: 100%;
}

.dropdown-dentistry > .mega-menu {
  width: min(460px, calc(100vw - 2rem));
}

.mega-panel {
  background: #fff;
  border: 1px solid rgba(162, 116, 72, 0.12);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 0.9rem;
  box-shadow: var(--shadow-soft);
  min-height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.mega-panel h3 {
  margin: 0 0 0.7rem;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}

.mega-panel h3 a {
  text-decoration: none;
  color: var(--accent-dark);
}

.mega-panel h3 a:hover,
.mega-panel h3 a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.mega-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
  flex: 1 1 auto;
}

.mega-panel li a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.3rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.mega-panel li a::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(162, 116, 72, 0.6);
  margin-top: 0.55rem;
  flex: 0 0 auto;
}

.mega-panel li a:hover,
.mega-panel li a:focus-visible {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.dropdown-hair:hover > .mega-menu,
.dropdown-hair:focus-within > .mega-menu,
.dropdown-skin:hover > .mega-menu,
.dropdown-skin:focus-within > .mega-menu,
.dropdown-slim:hover > .mega-menu,
.dropdown-slim:focus-within > .mega-menu,
.dropdown-dentistry:hover > .mega-menu,
.dropdown-dentistry:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-mega:hover > .nav-row .header-link::after,
.dropdown-mega:focus-within > .nav-row .header-link::after {
  transform: scaleX(1);
}

@media (min-width: 992px) {
  .nav-collapse-inner {
    flex-direction: row;
    align-items: center;
    gap: 0.9rem;
  }

  .header-nav {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .header-cta-wrap {
    margin-left: auto;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .header-shell {
    min-height: 88px;
  }

  .brand-logo {
    height: 70px;
  }

  .collapse.navbar-collapse {
    padding: 0.25rem 0 1rem;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }

  .nav-collapse-inner {
    gap: 0.25rem;
  }

  .header-cta-wrap {
    width: 100%;
  }

  .header-nav {
    align-items: stretch;
    gap: 0.35rem !important;
  }

  .nav-item {
    width: 100%;
  }

  .header-link {
    padding: 0.8rem 0 !important;
    font-size: 1rem;
    white-space: normal;
  }

  .header-link::after {
    bottom: 0.35rem;
    left: 0;
    right: auto;
    width: 100%;
  }

  .appointment-btn {
    width: 100%;
    padding: 0.88rem 1rem;
  }

  .dropdown-mega {
    border-top: 1px solid rgba(140, 97, 57, 0.12);
    padding-top: 0.2rem;
  }

  .nav-row {
    justify-content: space-between;
  }

  .mega-menu {
    position: static;
    left: auto;
    right: auto;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding-top: 0;
    margin-top: 0.35rem;
    display: none;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
  }

  .dropdown-mega.is-open > .mega-menu {
    display: block;
  }

  .dropdown-hair:hover > .mega-menu,
  .dropdown-hair:focus-within > .mega-menu,
  .dropdown-skin:hover > .mega-menu,
  .dropdown-skin:focus-within > .mega-menu,
  .dropdown-slim:hover > .mega-menu,
  .dropdown-slim:focus-within > .mega-menu,
  .dropdown-dentistry:hover > .mega-menu,
  .dropdown-dentistry:focus-within > .mega-menu {
    transform: none;
  }

  .mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0.85rem;
    border-radius: 18px;
  }

  .mega-panel {
    padding: 0.9rem;
  }

  .mega-panel-single {
    min-height: auto;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .mega-menu-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

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

@media (max-width: 575.98px) {
  .header-shell {
    min-height: 76px;
  }

  .brand-logo {
    height: 60px;
  }

  .mega-menu-inner {
    padding: 0.7rem;
  }

  .mega-panel h3 {
    font-size: 0.95rem;
  }

  .mega-panel li a {
    font-size: 0.88rem;
  }
}

.hero-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(560px, 78vh, 860px);
  overflow: hidden;
  background: #f5ece0;
}

.hero-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  /* background:
    linear-gradient(180deg, rgba(60, 39, 22, 0.16) 0%, rgba(60, 39, 22, 0.42) 100%),
    linear-gradient(90deg, rgba(247, 239, 229, 0.18) 0%, rgba(247, 239, 229, 0.06) 50%, rgba(247, 239, 229, 0.18) 100%); */
    background: linear-gradient(180deg, rgb(60 39 22 / 6%) 0%, rgb(60 39 22 / 0%) 100%), 
    linear-gradient(90deg, rgba(247, 239, 229, 0.18) 0%, rgb(247 239 229 / 0%) 50%, rgba(247, 239, 229, 0.281) 100%);
}

.hero-banner-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(6rem, 10vw, 7.5rem);
}

.hero-banner .container {
  width: 100%;
  max-width: 960px;
}

.hero-search-wrap {
  width: min(100%, 760px);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding-inline: clamp(0.25rem, 2vw, 1rem);
}

.hero-copy {
  display: grid;
  gap: 0.35rem;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.hero-copy-kicker {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-copy-title {
  margin: 0;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.4rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(162, 116, 72, 0.18);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.search-input-wrap i {
  color: var(--accent-dark);
  font-size: 1.05rem;
  flex: 0 0 auto;
}

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

.search-input::placeholder {
  color: rgba(47, 36, 25, 0.5);
}

.search-results-card {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(162, 116, 72, 0.14);
  background: rgba(255, 255, 255, 0.86);
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.search-results-list--hero {
  margin-top: 0.1rem;
  padding: 0;
  background: transparent;
  box-shadow: none;
  width: 100%;
}

.search-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-results-count {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.search-results-list {
  display: grid;
  gap: 0.7rem;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(162, 116, 72, 0.1);
  background: #fff;
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 8px 18px rgba(72, 47, 24, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.search-result-item i {
  color: var(--accent-dark);
  flex: 0 0 auto;
}

.search-result-item:hover,
.search-result-item:focus-visible {
  color: var(--accent-dark);
  border-color: rgba(162, 116, 72, 0.22);
  box-shadow: 0 12px 26px rgba(72, 47, 24, 0.1);
  transform: translateY(-1px);
}

.search-no-results {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(162, 116, 72, 0.2);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(0.95rem, 2.2vw, 1.5rem);
  z-index: 1;
  pointer-events: none;
}

.hero-marquee-viewport {
  overflow: hidden;
  padding: 0.2rem 0;
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: heroMarquee var(--marquee-duration, 72s) linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.hero-marquee-track.is-ready {
  animation-play-state: running;
}

.hero-marquee-group {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
}

.hero-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(162, 116, 72, 0.16);
  background: rgb(255, 255, 255);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(72, 47, 24, 0.08);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-marquee-item i {
  color: var(--accent-dark);
  font-size: 1rem;
  line-height: 1;
}

@keyframes heroMarquee {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track {
    animation: none;
    animation-play-state: running;
  }
}

@media (max-width: 991.98px) {
  .hero-banner {
    min-height: clamp(480px, 64vh, 760px);
  }

  .hero-banner-content {
    align-items: center;
    padding: 1.75rem 0 5.5rem;
  }

  .hero-search-wrap {
    width: 100%;
    gap: 0.85rem;
  }

  .hero-copy-title {
    font-size: clamp(1.45rem, 4vw, 2.4rem);
  }

  .search-results-list {
    max-height: 280px;
  }

  .hero-marquee {
    bottom: 0.75rem;
  }

  .hero-marquee-item {
    padding: 0.68rem 0.9rem;
    font-size: 0.86rem;
  }

  .hero-marquee-group {
    gap: 0.75rem;
    padding-right: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .hero-banner {
    min-height: clamp(360px, 88vw, 460px);
  }

  .hero-banner-image {
    object-fit: cover;
    object-position: center center;
    transform: scale(1.04);
  }

  .hero-banner-content {
    padding: 1rem 0 5.2rem;
  }

  .hero-search-wrap {
    gap: 0.7rem;
    padding-inline: 0;
  }

  .hero-copy {
    gap: 0.2rem;
  }

  .hero-copy-kicker {
    font-size: 0.95rem;
  }

  .hero-copy-title {
    font-size: 1.5rem;
  }

  .search-input-wrap {
    padding: 0.78rem 0.9rem;
  }

  .search-result-item {
    padding: 0.78rem 0.85rem;
    font-size: 0.9rem;
  }

  .hero-marquee {
    bottom: 0.55rem;
  }

  .hero-marquee-group {
    gap: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero-marquee-item {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
}

.about-snapshot {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(circle at left center, rgba(162, 116, 72, 0.08) 0, rgba(162, 116, 72, 0.08) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, #fff 0%, #fffaf4 100%);
  overflow: hidden;
}

.about-features {
  position: relative;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf4 100%);
  overflow: hidden;
}

.about-mission {
  position: relative;
  padding: clamp(3rem, 5vw, 4.75rem) 0;
  background:
    linear-gradient(180deg, #fffaf4 0%, #fff 100%);
  overflow: hidden;
}

.about-mission::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(162, 116, 72, 0.16);
  box-shadow:
    0 0 0 24px rgba(162, 116, 72, 0.05),
    0 0 0 48px rgba(162, 116, 72, 0.02);
  pointer-events: none;
}

.about-mission-head {
  max-width: 820px;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.about-mission-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.12;
  font-weight: 600;
}

.about-mission-head p:last-child {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-mission-card {
  position: relative;
  padding: 1.45rem 1.4rem 1.5rem;
  border-radius: 26px;
  background: white;
  border: 1px solid var(--accent-dark);
  box-shadow: 0 18px 42px rgba(72, 47, 24, 0.08);
  overflow: hidden;
}

.about-mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  pointer-events: none;
}

.about-mission-card > * {
  position: relative;
  z-index: 1;
}

.about-mission-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(162, 116, 72, 0.14) 0%, rgba(162, 116, 72, 0.08) 100%);
  color: var(--accent-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.about-mission-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 700;
}

.about-mission-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-faq {
  position: relative;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: #fff;
}

.about-faq-head {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.about-faq-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.12;
  font-weight: 600;
}

.about-faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  --bs-accordion-border-width: 0;
  --bs-accordion-bg: #fff;
  --bs-accordion-btn-bg: #fff;
  --bs-accordion-active-bg: #fff;
  --bs-accordion-active-color: var(--accent-dark);
  --bs-accordion-btn-focus-border-color: rgba(162, 116, 72, 0.2);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(162, 116, 72, 0.14);
}

.about-faq-item {
  border: 1px solid rgba(162, 116, 72, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(72, 47, 24, 0.06);
}

.about-faq-item + .about-faq-item {
  margin-top: 0.85rem;
}

.about-faq .accordion-button {
  background: #fff;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  padding: 1.15rem 1.2rem;
  box-shadow: none;
  border: 0;
}

.about-faq .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--accent-dark);
  box-shadow: none;
  border-bottom: 0;
}

.about-faq .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(162, 116, 72, 0.14);
  border-color: transparent;
}

.about-faq .accordion-collapse,
.about-faq .accordion-body {
  border: 0;
}

.about-faq .accordion-body {
  background: #fff;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  padding: 0 1.2rem 1.15rem;
  border-top: 0;
}

.about-cta {
  position: relative;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: #fff;
}

.about-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.65fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid rgba(162, 116, 72, 0.28);
  border-radius: 28px;
  background: #fff;
  box-shadow:
    0 24px 60px rgba(72, 47, 24, 0.12),
    0 4px 14px rgba(162, 116, 72, 0.08);
}

.about-cta-copy {
  text-align: left;
}

.about-cta-kicker {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-cta-card h2 {
  margin: 0.8rem 0 0;
  color: var(--text);
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  font-weight: 600;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.3rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  background: var(--button-gradient);
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(162, 116, 72, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.about-cta-btn:hover,
.about-cta-btn:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(162, 116, 72, 0.28);
  filter: brightness(1.03);
}

.about-cta-media {
  width: min(220px, 100%);
  aspect-ratio: 1 / 1;
  justify-self: end;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(140, 97, 57, 0.45);
  box-shadow:
    0 22px 48px rgba(72, 47, 24, 0.18),
    0 0 0 6px rgba(162, 116, 72, 0.08);
  background: #fff;
}

.about-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-features-head {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.about-features-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.12;
  font-weight: 600;
}

.about-features-head p:last-child {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.section-tag--center {
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.section-tag--center::after {
  margin: 0 auto;
}

.about-features::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(162, 116, 72, 0.16);
  box-shadow:
    0 0 0 24px rgba(162, 116, 72, 0.05),
    0 0 0 48px rgba(162, 116, 72, 0.02);
  pointer-events: none;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-feature-card {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(72, 47, 24, 0.08);
  border: 1px solid rgba(162, 116, 72, 0.12);
  background: #fff;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.about-feature-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04) rotate(0deg);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.about-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(47, 36, 25, 0.1) 44%, rgba(47, 36, 25, 0.48) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-feature-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.2rem 1.15rem 1.15rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(47, 36, 25, 0.06) 0%, rgba(47, 36, 25, 0.58) 100%);
  backdrop-filter: blur(6px);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s ease, opacity 0.45s ease, background-color 0.45s ease;
}

.about-feature-copy h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-feature-copy p {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.about-feature-card:hover .about-feature-media img,
.about-feature-card:focus-within .about-feature-media img {
  transform: scale(1.12) rotate(8deg);
  filter: saturate(1.02) contrast(1.02);
}

.about-feature-card:hover .about-feature-copy,
.about-feature-card:focus-within .about-feature-copy {
  transform: translateY(12px);
  opacity: 0;
}

.about-feature-card:hover::before,
.about-feature-card:focus-within::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(47, 36, 25, 0.18) 42%, rgba(47, 36, 25, 0.84) 100%);
}

.about-hero {
  position: relative;
  min-height: clamp(220px, 28vw, 300px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(246, 229, 210, 0.88) 0%, rgba(251, 243, 235, 0.72) 40%, rgba(248, 231, 213, 0.34) 100%),
    url('img/about-us.webp') center right / cover no-repeat;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  left: -70px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 216, 157, 0.35);
  filter: blur(18px);
  pointer-events: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(90deg, rgba(255, 248, 240, 0.78) 0%, rgba(255, 248, 240, 0.48) 42%, rgba(255, 248, 240, 0.16) 100%);
  pointer-events: none;
}

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

.about-hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2.6rem 0;
}

.about-hero-copy h1 {
  margin: 0;
  color: #1f1813;
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.about-hero-copy p {
  margin: 0.9rem 0 0;
  color: rgba(47, 36, 25, 0.78);
  font-size: clamp(0.98rem, 1.55vw, 1.15rem);
  line-height: 1.6;
}

.contact-hero {
  position: relative;
  min-height: clamp(220px, 28vw, 300px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(246, 229, 210, 0.90) 0%, rgba(251, 243, 235, 0.76) 42%, rgba(248, 231, 213, 0.36) 100%),
    url('img/contact-us.webp') center right / cover no-repeat;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  left: -70px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 216, 157, 0.32);
  filter: blur(18px);
  pointer-events: none;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(90deg, rgba(255, 248, 240, 0.80) 0%, rgba(255, 248, 240, 0.52) 42%, rgba(255, 248, 240, 0.18) 100%);
  pointer-events: none;
}

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

.contact-hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2.6rem 0;
}

.contact-hero-copy h1 {
  margin: 0;
  color: #1f1813;
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.contact-hero-copy p {
  margin: 0.9rem 0 0;
  color: rgba(47, 36, 25, 0.78);
  font-size: clamp(0.98rem, 1.55vw, 1.15rem);
  line-height: 1.6;
}

.contact-section {
  padding: clamp(2.5rem, 4vw, 4rem) 0 clamp(3rem, 5vw, 5rem);
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}

.contact-overview-card,
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(162, 116, 72, 0.16);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(72, 47, 24, 0.08);
}

.contact-overview-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.9fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-overview-copy {
  min-width: 0;
}

.contact-overview-copy h2 {
  margin: 0;
  color: #121a2a;
  font-size: clamp(1.95rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-overview-lead {
  margin: 0.6rem 0 1.35rem;
  color: #5f6d7c;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-details-list {
  display: grid;
  gap: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-detail-icon {
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--button-gradient);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(162, 116, 72, 0.22);
}

.contact-detail-item strong {
  display: block;
  color: #182231;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
}

.contact-detail-item p {
  margin: 0.12rem 0 0;
  color: #5f6d7c;
  line-height: 1.45;
}

.contact-detail-item p a {
  color: inherit;
  text-decoration: none;
}

.contact-overview-media {
  align-self: stretch;
  justify-self: stretch;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(162, 116, 72, 0.16);
  background: linear-gradient(180deg, #fffdf9 0%, #fff8f0 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  min-height: 280px;
}

.contact-overview-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-form-card {
  margin-top: clamp(1.35rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-form-head {
  margin-bottom: 1.25rem;
}

.contact-form-head h2 {
  margin: 0.25rem 0 0;
  color: #121a2a;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
}

.contact-form .form-label {
  color: #182231;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(162, 116, 72, 0.16);
  background-color: #fff;
  box-shadow: none;
  color: #182231;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: rgba(162, 116, 72, 0.56);
  box-shadow: 0 0 0 0.2rem rgba(162, 116, 72, 0.14);
}

.contact-form .form-control::placeholder {
  color: rgba(95, 109, 124, 0.78);
}

.contact-form-actions {
  margin-top: 1.35rem;
}

.contact-submit-btn {
  min-width: 200px;
  border: 0;
  border-radius: 14px;
  padding: 0.95rem 1.5rem;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--button-gradient);
  box-shadow: 0 14px 28px rgba(162, 116, 72, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(162, 116, 72, 0.28);
  filter: brightness(1.03);
}

.service-detail-page {
  background: #fff;
}

.service-detail-hero {
  position: relative;
  min-height: clamp(360px, 48vw, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #fffaf4;
  background-image:
    linear-gradient(180deg, rgba(255, 250, 244, 0.78), rgba(255, 250, 244, 0.72)),
    var(--service-detail-hero-image, url("img/hairtreatment.webp"));
  background-position: center center, center center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.service-detail-hero--plain {
  min-height: clamp(280px, 34vw, 290px);
  background-image: linear-gradient(180deg, #fffaf4 0%, #fffdf9 100%);
  background-size: cover;
}

.service-detail-hero--plain::before {
  background:
    radial-gradient(circle at top left, rgba(255, 224, 184, 0.38), transparent 34%),
    linear-gradient(135deg, rgba(47, 36, 25, 0.04), rgba(47, 36, 25, 0.09));
}

.service-detail-hero--plain .service-detail-hero__inner {
  padding: clamp(2rem, 4vw, 3.3rem) 0;
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 224, 184, 0.55), transparent 34%),
    linear-gradient(135deg, rgba(47, 36, 25, 0.05), rgba(47, 36, 25, 0.16));
  pointer-events: none;
}

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

.service-detail-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.75rem, 5vw, 5rem) 0;
  text-align: center;
}

.service-detail-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.95rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.service-detail-hero__eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(162, 116, 72, 0.9), rgba(162, 116, 72, 0));
}

.service-detail-hero h1 {
  margin: 0;
  color: #121a2a;
  font-size: clamp(2.1rem, 4.1vw, 4.05rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.service-detail-hero p {
  margin: 1rem auto 0;
  max-width: 700px;
  color: rgba(47, 36, 25, 0.82);
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
  line-height: 1.7;
}

.service-detail-hero--split {
  min-height: auto;
}

.service-detail-hero--split::before {
  background:
    radial-gradient(circle at top left, rgba(255, 224, 184, 0.42), transparent 34%),
    linear-gradient(135deg, rgba(47, 36, 25, 0.04), rgba(47, 36, 25, 0.1));
}

.service-detail-hero--split .container {
  position: relative;
  z-index: 1;
}

.service-detail-hero__split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4.6rem) 0;
}

.service-detail-hero--split .service-detail-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.service-detail-hero--split .service-detail-hero__eyebrow {
  justify-content: flex-start;
  margin-bottom: 0.2rem;
}

.service-detail-hero--split h1 {
  text-align: left;
}

.service-detail-hero--split p {
  margin: 0;
  max-width: 620px;
  text-align: left;
}

.service-detail-hero__media {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(162, 116, 72, 0.16);
  background: rgba(255, 250, 244, 0.74);
  box-shadow: 0 22px 50px rgba(72, 47, 24, 0.16);
}

.service-detail-hero__media img {
  display: block;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.service-detail-section {
  padding: clamp(2.7rem, 5vw, 4.6rem) 0;
}

.service-detail-section--warm {
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}

.service-detail-section--halo-right {
  position: relative;
  overflow: hidden;
}

.service-detail-section--halo-right::before,
.service-detail-section--halo-right::after {
  content: "";
  position: absolute;
  right: -95px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.service-detail-section--halo-right::before {
  width: 250px;
  height: 250px;
  border: 1px solid rgba(162, 116, 72, 0.16);
  box-shadow:
    0 0 0 22px rgba(162, 116, 72, 0.05),
    0 0 0 46px rgba(162, 116, 72, 0.02);
}

.service-detail-section--halo-right::after {
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(255, 216, 157, 0.28) 0%, rgba(255, 216, 157, 0) 70%);
  filter: blur(2px);
}

.service-detail-section--halo-right .container {
  position: relative;
  z-index: 1;
}

.service-detail-section--halo-left {
  position: relative;
  overflow: hidden;
}

.service-detail-section--halo-left::before,
.service-detail-section--halo-left::after {
  content: "";
  position: absolute;
  left: -95px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.service-detail-section--halo-left::before {
  width: 250px;
  height: 250px;
  border: 1px solid rgba(162, 116, 72, 0.16);
  box-shadow:
    0 0 0 22px rgba(162, 116, 72, 0.05),
    0 0 0 46px rgba(162, 116, 72, 0.02);
}

.service-detail-section--halo-left::after {
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(255, 216, 157, 0.28) 0%, rgba(255, 216, 157, 0) 70%);
  filter: blur(2px);
}

.service-detail-section--halo-left .container {
  position: relative;
  z-index: 1;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.service-detail-media {
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(162, 116, 72, 0.14);
  box-shadow: 0 18px 40px rgba(72, 47, 24, 0.08);
  background: linear-gradient(180deg, #fffdf9 0%, #fff8f0 100%);
}

.service-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-detail-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-detail-content h2 {
  margin: 0;
  color: #121a2a;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
  font-weight: 700;
}

.service-detail-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.service-detail-points {
  display: grid;
  gap: 1rem;
  margin-top: 0.25rem;
}

.service-detail-point {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(162, 116, 72, 0.14);
  background: rgba(255, 250, 244, 0.72);
}

.service-detail-point i {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0.12rem;
}

.service-detail-point h3 {
  margin: 0;
  color: #121a2a;
  font-size: 1.02rem;
  font-weight: 700;
}

.service-detail-point p {
  margin-top: 0.2rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

.service-detail-highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 0.35rem;
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(162, 116, 72, 0.18);
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.98), rgba(162, 116, 72, 0.08));
  box-shadow: 0 16px 32px rgba(72, 47, 24, 0.08);
}

.vaginismus-highlight-center {
  align-items: center;
}

.vaginismus-highlight-center .service-detail-highlight__body {
  flex: 1;
  display: block;
  padding-top: 0;
}

.vaginismus-highlight-text {
  margin: 0;
  line-height: 1.7;
}

.service-detail-highlight__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #fff;
  font-size: 1.35rem;
  background: var(--button-gradient);
  box-shadow: 0 12px 24px rgba(162, 116, 72, 0.18);
}

.service-detail-highlight__body {
  min-width: 0;
}

.service-detail-highlight h3 {
  margin: 0;
  color: #121a2a;
  font-size: 1.12rem;
  line-height: 1.35;
  font-weight: 700;
}

.service-detail-highlight p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-detail-highlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.service-detail-highlight-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(162, 116, 72, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: #3a2b1f;
  font-size: 0.92rem;
  font-weight: 600;
}

.service-detail-highlight-chips i {
  color: var(--accent);
}

.service-detail-list {
  display: grid;
  gap: 1rem;
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.service-detail-list li i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.service-detail-accordion .accordion-item {
  border: 1px solid rgba(162, 116, 72, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 0.9rem;
}

.service-detail-accordion .accordion-button {
  padding: 1rem 1.1rem;
  border: 0;
  background: #fff;
  box-shadow: none;
  color: #121a2a;
  font-weight: 700;
  line-height: 1.35;
}

.service-detail-accordion .accordion-button:not(.collapsed) {
  color: var(--accent);
  background: #fff;
  box-shadow: none;
}

.service-detail-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.service-detail-accordion .accordion-body {
  padding: 0 1.1rem 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.service-detail-form-card {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: 28px;
  border: 1px solid rgba(131, 77, 27, 0.411);
  background: linear-gradient(180deg, #fffdf9 0%, #fff8f0 100%);
  box-shadow: 0 18px 40px rgba(72, 47, 24, 0.08);
}

.service-detail-form-head {
  margin-bottom: 1.25rem;
}

.service-detail-form-head h3 {
  margin: 0.35rem 0 0;
  color: #121a2a;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  font-weight: 700;
}

.service-detail-form-head p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-detail-form .form-label {
  color: #182231;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.service-detail-form .form-control,
.service-detail-form .form-select {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(162, 116, 72, 0.16);
  background-color: #fff;
  box-shadow: none;
  color: #182231;
}

.service-detail-form .form-control:focus,
.service-detail-form .form-select:focus {
  border-color: rgba(162, 116, 72, 0.56);
  box-shadow: 0 0 0 0.2rem rgba(162, 116, 72, 0.14);
}

.service-detail-form .form-control::placeholder {
  color: rgba(95, 109, 124, 0.78);
}

.service-detail-form-actions {
  margin-top: 1.35rem;
}

.service-detail-submit-btn {
  min-width: 200px;
  border: 0;
  border-radius: 14px;
  padding: 0.95rem 1.5rem;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--button-gradient);
  box-shadow: 0 14px 28px rgba(162, 116, 72, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.service-detail-submit-btn:hover,
.service-detail-submit-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(162, 116, 72, 0.28);
  filter: brightness(1.03);
}

.service-detail-mini-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-detail-mini-card {
  position: relative;
  padding: 1.15rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(194, 119, 48, 0.466);
  background: #fff;
  box-shadow: 0 14px 30px rgba(72, 47, 24, 0.07);
  overflow: hidden;
}

.service-detail-mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.9), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at top right, rgba(162, 116, 72, 0.08), transparent 55%);
  pointer-events: none;
}

.service-detail-mini-card > * {
  position: relative;
  z-index: 1;
}

.service-detail-mini-card__icon {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--button-gradient);
  color: #fff;
  box-shadow: 0 10px 20px rgba(162, 116, 72, 0.18);
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
}

.service-detail-mini-card h3 {
  margin: 0 0 0.4rem;
  color: #121a2a;
  font-size: 1.04rem;
  line-height: 1.35;
  font-weight: 700;
}

.service-detail-mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.treatment-hero {
  position: relative;
  min-height: clamp(220px, 30vw, 240px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.treatment-hero--hair {
  background: transparent;
}

.treatment-hero--hair::before,
.treatment-hero--hair::after {
  display: none;
}

.treatment-hero--skin {
  background: transparent;
}

.treatment-hero--skin::before,
.treatment-hero--skin::after {
  display: none;
}

.treatment-hero--slim {
  background: transparent;
}

.treatment-hero--slim::before,
.treatment-hero--slim::after {
  display: none;
}

.treatment-hero--dentistry {
  background: transparent;
}

.treatment-hero--dentistry::before,
.treatment-hero--dentistry::after {
  display: none;
}

.treatment-hero--restoration {
  background: transparent;
}

.treatment-hero--restoration::before,
.treatment-hero--restoration::after {
  display: none;
}

.treatment-hero--cosmetic {
  background: transparent;
}

.treatment-hero--cosmetic::before,
.treatment-hero--cosmetic::after {
  display: none;
}

.treatment-hero--super-specialty {
  background: transparent;
}

.treatment-hero--super-specialty::before,
.treatment-hero--super-specialty::after {
  display: none;
}

.treatment-hero--retention {
  background: transparent;
}

.treatment-hero--retention::before,
.treatment-hero--retention::after {
  display: none;
}

.treatment-hero--non-invasive {
  background: transparent;
}

.treatment-hero--non-invasive::before,
.treatment-hero--non-invasive::after {
  display: none;
}

.treatment-hero--skin-brightening {
  background: transparent;
}

.treatment-hero--skin-brightening::before,
.treatment-hero--skin-brightening::after {
  display: none;
}

.treatment-hero--ageless {
  background: transparent;
}

.treatment-hero--ageless::before,
.treatment-hero--ageless::after {
  display: none;
}

.treatment-hero--permanent-hair-reduction {
  background: transparent;
}

.treatment-hero--permanent-hair-reduction::before,
.treatment-hero--permanent-hair-reduction::after {
  display: none;
}

.treatment-hero--dry-dull-skin {
  background: transparent;
}

.treatment-hero--dry-dull-skin::before,
.treatment-hero--dry-dull-skin::after {
  display: none;
}

.treatment-hero--iv-therapy {
  background: transparent;
}

.treatment-hero--iv-therapy::before,
.treatment-hero--iv-therapy::after {
  display: none;
}

.treatment-hero--injectables-others {
  background: transparent;
}

.treatment-hero--injectables-others::before,
.treatment-hero--injectables-others::after {
  display: none;
}

.treatment-hero--non-invasive-procedures {
  background: transparent;
}

.treatment-hero--non-invasive-procedures::before,
.treatment-hero--non-invasive-procedures::after {
  display: none;
}

.treatment-hero--minimally-invasive-procedures {
  background: transparent;
}

.treatment-hero--minimally-invasive-procedures::before,
.treatment-hero--minimally-invasive-procedures::after {
  display: none;
}

.treatment-hero--surgical-procedures {
  background: transparent;
}

.treatment-hero--surgical-procedures::before,
.treatment-hero--surgical-procedures::after {
  display: none;
}

.treatment-hero::before {
  content: "";
  position: absolute;
  left: -70px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 216, 157, 0.32);
  filter: blur(18px);
  pointer-events: none;
}

.treatment-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

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

.treatment-hero-copy {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 2.6rem 0;
}

.treatment-hero-copy h1 {
  margin: 0;
  color: #1f1813;
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.treatment-hero-copy p {
  margin: 0.9rem 0 0;
  color: rgba(47, 36, 25, 0.78);
  font-size: clamp(0.98rem, 1.55vw, 1.15rem);
  line-height: 1.6;
}

.treatment-cards-section {
  padding: clamp(2.5rem, 4vw, 4rem) 0 clamp(3rem, 5vw, 5rem);
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}

.treatment-card-link {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(146, 87, 32, 0.486);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(72, 47, 24, 0.08);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.treatment-card-link:hover,
.treatment-card-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(162, 116, 72, 0.3);
  box-shadow: 0 24px 48px rgba(72, 47, 24, 0.12);
}

.treatment-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f9f2ea;
}

.treatment-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.treatment-card-link:hover .treatment-card-media img,
.treatment-card-link:focus-visible .treatment-card-media img {
  transform: scale(1.05);
}

.treatment-card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1.25rem 1.25rem 1.35rem;
  flex: 1 1 auto;
}

.treatment-card-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
}

.treatment-card-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: var(--button-gradient);
  box-shadow: 0 10px 20px rgba(162, 116, 72, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.treatment-card-link:hover .treatment-card-btn,
.treatment-card-link:focus-visible .treatment-card-btn {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(162, 116, 72, 0.22);
  filter: brightness(1.03);
}

.about-snapshot::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 50%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(226, 194, 154, 0.5);
  box-shadow:
    0 0 0 20px rgba(226, 194, 154, 0.06),
    0 0 0 40px rgba(226, 194, 154, 0.04),
    0 0 0 60px rgba(226, 194, 154, 0.025),
    0 0 0 80px rgba(226, 194, 154, 0.015);
  transform: translateY(-50%);
  pointer-events: none;
}

.about-snapshot-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about-snapshot-copy {
  max-width: 680px;
}

.section-tag {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  width: fit-content;
}

.section-tag::after {
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(162, 116, 72, 0.18) 100%);
  transform-origin: left;
  transform: scaleX(0);
  animation: sectionTagUnderline 0.9s ease forwards;
}

@keyframes sectionTagUnderline {
  from {
    transform: scaleX(0);
    opacity: 0.35;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-tag::after {
    animation: none;
    transform: scaleX(1);
  }
}

.about-snapshot-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  font-weight: 600;
  color: var(--text);
}

.about-snapshot-subtitle {
  margin: 0.35rem 0 1rem;
  font-size: clamp(1.4rem, 2.6vw, 2.6rem);
  font-style: italic;
  font-family: var(--font-style);
  font-weight: 500;
  color: var(--accent-dark);
}

.about-snapshot-text {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.about-snapshot-highlight {
  margin: 1rem 0 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.about-snapshot-link {

  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 2px solid rgba(162, 116, 72, 0.28);
  padding-bottom: 0.2rem;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.about-snapshot-link:hover,
.about-snapshot-link:focus-visible {
  color: var(--accent-dark);
  border-color: rgba(140, 97, 57, 0.5);
  transform: translateX(2px);
}

.about-snapshot-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-image-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(162, 116, 72, 0.12);
  min-height: 180px;
}

.about-image-card--large {
  grid-column: 1 / -1;
  min-height: 320px;
}

.about-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-card--large img {
  object-position: center center;
}

.about-snapshot-gallery .about-image-card:nth-child(2) img {
  object-position: center top;
}

.about-snapshot-gallery .about-image-card:nth-child(3) img {
  object-position: center bottom;
}

@media (max-width: 991.98px) {
  .about-hero {
    min-height: 240px;
  }

  .about-hero-copy {
    padding: 2.2rem 0;
  }

  .contact-hero {
    min-height: 240px;
  }

  .contact-hero-copy {
    padding: 2.2rem 0;
  }

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

  .contact-overview-media {
    min-height: 240px;
  }

  .contact-overview-media img {
    min-height: 240px;
  }

  .contact-form-card {
    padding: 1.35rem;
  }

  .treatment-hero {
    min-height: 240px;
  }

  .treatment-hero-copy {
    padding: 2.2rem 0;
  }

  .treatment-cards-section {
    padding: 2.3rem 0 3rem;
  }

  .treatment-card-copy {
    padding: 1.1rem 1.05rem 1.15rem;
  }

  .treatment-card-copy h2 {
    font-size: 1.04rem;
  }

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

  .about-feature-card {
    min-height: 320px;
  }

  .about-features-head {
    margin-bottom: 1.35rem;
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-mission-head {
    margin-bottom: 1.35rem;
  }

  .about-mission-card {
    padding: 1.3rem 1.2rem 1.35rem;
  }

  .about-faq-head {
    margin-bottom: 1.25rem;
  }

  .about-faq .accordion-button {
    padding: 1rem 1.05rem;
    font-size: 0.98rem;
  }

  .about-faq .accordion-body {
    padding: 0 1.05rem 1rem;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .about-cta-card {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.5fr);
    gap: 1.25rem;
  }

  .about-cta-media {
    width: 180px;
  }

  .about-cta-card h2 {
    font-size: 1.55rem;
  }

  .about-snapshot {
    padding: 3.5rem 0 4.5rem;
  }

  .about-snapshot-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-snapshot-copy {
    max-width: none;
  }

  .about-snapshot-gallery {
    gap: 0.85rem;
  }

  .about-image-card--large {
    min-height: 280px;
  }
}

@media (max-width: 575.98px) {
  .about-hero {
    min-height: 200px;
    background-position: center center;
  }

  .about-hero-copy {
    padding: 1.9rem 0;
  }

  .about-hero-copy p {
    margin-top: 0.65rem;
  }

  .contact-hero {
    min-height: 200px;
    background-position: center center;
  }

  .contact-hero-copy {
    padding: 1.9rem 0;
  }

  .contact-hero-copy p {
    margin-top: 0.65rem;
  }

  .contact-section {
    padding: 2.25rem 0 3rem;
  }

  .contact-overview-card,
  .contact-form-card {
    border-radius: 22px;
  }

  .contact-overview-card {
    padding: 1rem;
    gap: 1rem;
  }

  .contact-overview-copy h2 {
    font-size: 1.65rem;
  }

  .contact-overview-lead {
    margin-bottom: 1.05rem;
    font-size: 0.95rem;
  }

  .contact-detail-item {
    gap: 0.75rem;
  }

  .contact-detail-icon {
    width: 2.45rem;
    height: 2.45rem;
    flex-basis: 2.45rem;
    border-radius: 10px;
    font-size: 1rem;
  }

  .contact-overview-media {
    min-height: 210px;
  }

  .contact-overview-media img {
    min-height: 210px;
  }

  .contact-form-card {
    margin-top: 1rem;
    padding: 1.05rem;
  }

  .contact-form-head {
    margin-bottom: 1rem;
  }

  .contact-form-head h2 {
    font-size: 1.35rem;
  }

  .contact-form .form-control,
  .contact-form .form-select {
    min-height: 48px;
    border-radius: 12px;
  }

  .contact-submit-btn {
    width: 100%;
    min-width: 0;
  }

  .treatment-hero {
    min-height: 200px;
    background-position: center center;
  }

  .treatment-hero-copy {
    padding: 1.9rem 0;
  }

  .treatment-hero-copy p {
    margin-top: 0.65rem;
  }

  .treatment-cards-section {
    padding: 2rem 0 2.8rem;
  }

  .treatment-card-link {
    border-radius: 22px;
  }

  .treatment-card-copy {
    padding: 1rem 1rem 1.1rem;
  }

  .treatment-card-btn {
    width: 100%;
    min-width: 0;
  }

  .about-features {
    padding: 2.3rem 0 3rem;
  }

  .about-features-head {
    margin-bottom: 1.1rem;
  }

  .about-features-head h2 {
    font-size: 1.5rem;
  }

  .about-features-head p:last-child {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .about-mission {
    padding: 2.4rem 0 3rem;
  }

  .about-mission-head {
    margin-bottom: 1.1rem;
  }

  .about-mission-head h2 {
    font-size: 1.55rem;
  }

  .about-mission-head p:last-child {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .about-mission-card {
    padding: 1.15rem 1rem 1.2rem;
    border-radius: 20px;
  }

  .about-mission-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 14px;
    margin-bottom: 0.85rem;
  }

  .about-mission-card h3 {
    font-size: 1.03rem;
  }

  .about-mission-card p {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .about-faq {
    padding: 2.4rem 0 3rem;
  }

  .about-faq-head {
    margin-bottom: 1rem;
  }

  .about-faq-head h2 {
    font-size: 1.55rem;
  }

  .about-cta {
    padding: 2.4rem 0 3rem;
  }

  .about-cta-card {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
    border-radius: 22px;
    text-align: center;
  }

  .about-cta-copy {
    text-align: center;
  }

  .about-cta-media {
    justify-self: center;
    width: 140px;
  }

  .about-cta-card h2 {
    font-size: 1.45rem;
  }

  .about-cta-btn {
    margin-top: 1rem;
    width: 100%;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .about-feature-card {
    min-height: 280px;
    border-radius: 22px;
  }

  .about-feature-copy {
    padding: 1rem;
  }

  .about-feature-copy h2 {
    font-size: 1rem;
  }

  .about-feature-copy p {
    font-size: 0.85rem;
  }

  .about-snapshot {
    padding: 3rem 0 4rem;
  }

  .about-snapshot::before {
    left: -170px;
    width: 240px;
    height: 240px;
  }

  .about-snapshot-title {
    font-size: 1.9rem;
  }

  .about-snapshot-subtitle {
    font-size: 1.25rem;
  }

  .about-snapshot-text,
  .about-snapshot-highlight {
    font-size: 0.95rem;
  }

  .about-snapshot-gallery {
    gap: 0.7rem;
  }

  .about-image-card {
    min-height: 150px;
    border-radius: 18px;
  }

  .about-image-card--large {
    min-height: 220px;
  }
}



.category-cards-section{
   padding: 55px 0 !important; 
}

.category-cards-head {
  max-width: 720px;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.category-cards-section {
  background: linear-gradient(180deg, #fff 0%, #fffaf4 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.category-cards-section::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: clamp(180px, 24vw, 340px);
  height: clamp(180px, 24vw, 340px);
  transform: translate(-18%, -50%);
  background: url("img/leftmenu.webp") no-repeat left center / contain;
  pointer-events: none;
  z-index: 0;
}

.category-cards-section::after {
  content: "";
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: min(300px, 28vw);
  height: min(300px, 28vw);
  transform: translateY(0);
  border-radius: 50%;
  border: 1px solid rgba(162, 116, 72, 0.16);
  box-shadow:
    0 0 0 22px rgba(162, 116, 72, 0.04),
    0 0 0 44px rgba(162, 116, 72, 0.02);
  pointer-events: none;
}

.category-cards-section .container {
  position: relative;
  z-index: 1;
}

.category-cards-head h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  color: var(--text);
}

.category-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  border: 1px solid rgba(162, 116, 72, 0.18);
  border-radius: 24px;
  overflow: hidden;
}

.category-card {
  height: 100%;
  min-height: 330px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 244, 0.98) 100%);
  border: 0;
  border-radius: 0;
  padding: 1.15rem 1rem 1.15rem;
  box-shadow: 0 18px 40px rgba(72, 47, 24, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.category-card-link:hover .category-card {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(162, 116, 72, 0.14);
}

.category-card-inner {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  text-align: center;
}

.category-card-copy {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.category-card-copy h3 {
  margin: 0;
  font-family: var(--font-main);
  font-size: 1.15rem;
  color: var(--accent-dark);
}

.category-card-copy p {
  margin: 0.45rem 0 0;
  color: black;
  font-size: 0.92rem;
  line-height: 1.45;
}

.category-card-image {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 18px;
  flex: 0 0 auto;
  background: linear-gradient(180deg, #fff 0%, #fff7ef 100%);
  border: 1px solid rgba(162, 116, 72, 0.18);
  box-shadow: 0 10px 24px rgba(72, 47, 24, 0.08);
}

.category-card-cta {
  margin: 1rem auto 0;
}

.category-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.category-carousel-viewport {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  min-height: 450px;
  padding-top: 12px;
}

.category-carousel-stage {
  position: relative;
  min-height: 450px;
  padding-top: 12px;
}

.category-carousel-item {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(320px, 28vw);
  transform: translateX(-50%) scale(0.82);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
  will-change: transform, opacity;
  filter: blur(0.2px);
}

.category-carousel-item.is-prev {
  transform: translateX(calc(-155% - 1rem)) scale(0.9);
  opacity: 0.72;
  pointer-events: auto;
  z-index: 2;
}

.category-carousel-item.is-active {
  transform: translateX(-50%) scale(1.06);
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  filter: none;
}

.category-carousel-item.is-next {
  transform: translateX(calc(55% + 1rem)) scale(0.9);
  opacity: 0.72;
  pointer-events: auto;
  z-index: 2;
}

.category-carousel-item.is-hidden {
  opacity: 0;
  z-index: 1;
}

.category-card-link {
  height: auto;
  border: 1px solid rgb(61 19 19 / 96%);;
  /* background: rgb(61 19 19 / 96%); */
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.category-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-card-copy {
  flex: 1 1 auto;
}

.category-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--button-gradient);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  width: fit-content;
  box-shadow: 0 12px 26px rgba(162, 116, 72, 0.2);
}

.category-card-link:hover .category-card-cta {
  color: #fff;
}

.category-carousel-arrow {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 2px solid rgb(162 116 72 / 69%);
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  box-shadow: 0 10px 24px rgba(72, 47, 24, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.category-carousel-arrow:hover {
  background: var(--button-gradient);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 991.98px) {
  .category-card {
    min-height: 360px;
    padding: 1rem;
  }

  .category-card-inner {
    min-height: 118px;
  }

  .category-card-image {
    width: 114px;
    height: 114px;
  }

  .category-carousel-viewport,
  .category-carousel-stage {
    min-height: 330px;
  }

  .category-carousel-item {
    width: min(300px, 42vw);
  }

  .category-carousel-item.is-prev {
    transform: translateX(calc(-140% - 0.75rem)) scale(0.86);
  }

  .category-carousel-item.is-next {
    transform: translateX(calc(40% + 0.75rem)) scale(0.86);
  }
}

@media (max-width: 767.98px) {
  .category-cards-section::before {
    left: -12px;
    width: clamp(140px, 30vw, 220px);
    height: clamp(140px, 30vw, 220px);
    transform: translate(-18%, -50%);
    opacity: 0.28;
  }

  .category-cards-section::after {
    opacity: 0.08;
    width: 280px;
    height: 280px;
  }

  .category-card-inner {
    gap: 0.85rem;
  }

  .category-card-copy h3 {
    font-size: 1rem;
  }

  .category-card-copy p {
    font-size: 0.84rem;
  }

  .category-card-image {
    width: 96px;
    height: 96px;
    border-radius: 14px;
  }

  .category-carousel {
    gap: 0.6rem;
  }

  .category-carousel-viewport,
  .category-carousel-stage {
    min-height: 400px;
  }

  .category-carousel-item {
    width: min(82vw, 340px);
  }

  .category-carousel-item.is-prev,
  .category-carousel-item.is-next {
    opacity: 0.18;
  }

  .category-carousel-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575.98px) {
  .category-cards-section::before {
    left: -8px;
    width: clamp(120px, 34vw, 180px);
    height: clamp(120px, 34vw, 180px);
    transform: translate(-10%, -50%);
    opacity: 0.28;
  }

  .category-cards-section::after {
    opacity: 0.08;
    width: 280px;
    height: 280px;
  }

  .category-card-inner {
    gap: 0.85rem;
  }

  .category-card-copy h3 {
    font-size: 1rem;
  }

  .category-card-copy p {
    font-size: 0.84rem;
  }

  .category-card-image {
    width: 96px;
    height: 96px;
    border-radius: 14px;
  }

  .category-carousel {
    gap: 0.5rem;
  }

  .category-carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .category-carousel-viewport {
    min-height: 470px;
    padding-top: 16px;
  }

  .category-carousel-stage {
    min-height: 470px;
    padding-top: 16px;
  }

  .category-carousel-item {
    width: min(82vw, 340px);
  }

  .category-carousel-item.is-prev {
    transform: translateX(calc(-120% - 0.45rem)) scale(0.78);
    opacity: 0.45;
  }

  .category-carousel-item.is-active {
    transform: translateX(-50%) scale(0.95);
  }

  .category-carousel-item.is-next {
    transform: translateX(calc(20% + 0.45rem)) scale(0.78);
    opacity: 0.45;
  }
}
.category-grid-section {
  background: linear-gradient(180deg, #fff 0%, #fffaf4 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.category-grid-section .container {
  position: relative;
  z-index: 1;
}

.category-grid-head {
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.category-grid-head h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  color: var(--text);
}

.category-tile-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(162, 116, 72, 0.18);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(72, 47, 24, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(162, 116, 72, 0.14);
}

.category-tile {
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.95rem;
}

.category-tile-image {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(162, 116, 72, 0.18);
  background: linear-gradient(180deg, #fff 0%, #fff7ef 100%);
  box-shadow: 0 10px 24px rgba(72, 47, 24, 0.08);
}

.category-tile-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
}

.category-tile-body h3 {
  margin: 0;
  font-family: var(--font-main);
  font-size: 1.15rem;
  color: var(--accent-dark);
}

.category-tile-body p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.category-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--button-gradient);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  width: fit-content;
  box-shadow: 0 12px 26px rgba(162, 116, 72, 0.2);
}

@media (max-width: 991.98px) {
  .category-tile-image {
    width: 114px;
    height: 114px;
  }
}

@media (max-width: 575.98px) {
  .category-grid-head {
    margin-bottom: 1.25rem;
  }

  .category-tile {
    padding: 0.9rem;
    gap: 0.8rem;
  }

  .category-tile-image {
    width: 96px;
    height: 96px;
    border-radius: 14px;
  }

  .category-tile-body h3 {
    font-size: 1rem;
  }

  .category-tile-body p {
    font-size: 0.84rem;
  }
}

.stats-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: #fff;
}

.stats-section::before,
.stats-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.stats-section::before {
  left: -140px;
  top: 20%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(162, 116, 72, 0.16);
  box-shadow:
    0 0 0 20px rgba(162, 116, 72, 0.04),
    0 0 0 40px rgba(162, 116, 72, 0.02);
}

.stats-section::after {
  right: -110px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(162, 116, 72, 0.12);
  box-shadow:
    0 0 0 16px rgba(162, 116, 72, 0.03),
    0 0 0 32px rgba(162, 116, 72, 0.015);
}

.stats-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.stats-copy {
  max-width: 520px;
}

.stats-copy h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
}

.stats-copy p:last-child {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stats-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(162, 116, 72, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 244, 0.98) 100%);
  box-shadow: 0 18px 40px rgba(72, 47, 24, 0.07);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.stats-card::before {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(162, 116, 72, 0.12);
  opacity: 0.45;
}

.stats-value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
  color: var(--accent-dark);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.stats-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .stats-shell {
    grid-template-columns: 1fr;
  }

  .stats-copy {
    max-width: none;
  }

  .stats-grid {
    gap: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .stats-section {
    padding: 3rem 0 4rem;
  }

  .stats-section::before {
    left: -190px;
    top: 12%;
    width: 220px;
    height: 220px;
  }

  .stats-section::after {
    right: -130px;
    bottom: -120px;
    width: 180px;
    height: 180px;
  }

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

  .stats-card {
    min-height: 140px;
    padding: 1.2rem 1rem;
  }

  .stats-card p {
    font-size: 0.9rem;
  }
}

.offer-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5.75rem) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 250, 244, 0.9) 100%),
    url("img/bg.webp") center center / cover no-repeat;
}

.offer-section::before,
.offer-section::after {
  content: none;
}

.offer-section::before {
  display: none;
}

.offer-section::after {
  display: none;
}

.offer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
}

.offer-copy {
  position: relative;
  top: auto;
  max-width: 760px;
  align-self: center;
  margin: 0 auto;
  text-align: center;
}

.offer-copy h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.offer-intro {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  width: 100%;
  margin-top: 0.5rem;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 92px;
  padding: 1rem 1rem 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(162, 116, 72, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 244, 0.98) 100%);
  box-shadow: 0 16px 36px rgba(72, 47, 24, 0.07);
  color: var(--text);
  transform: translate3d(0, -150px, 0) scale(0.84) rotate(-3deg);
  opacity: 0;
  filter: blur(2px);
  will-change: transform, opacity, filter;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.offer-item:nth-child(even) {
  transform: translate3d(16px, -175px, 0) scale(0.82) rotate(3deg);
}

.offer-item:nth-child(3n) {
  transform: translate3d(-18px, -160px, 0) scale(0.83) rotate(-5deg);
}

.offer-item i {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #ad7f54 0%, var(--accent) 100%);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 10px 22px rgba(162, 116, 72, 0.2);
}

.offer-item span {
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 600;
}

.offer-item:hover {
  border-color: rgba(162, 116, 72, 0.28);
  box-shadow: 0 20px 42px rgba(162, 116, 72, 0.12);
}

.offer-section.is-visible .offer-item {
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  opacity: 1;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .offer-item,
  .offer-section.is-visible .offer-item {
    transform: none;
    opacity: 1;
    filter: none;
    transition: none;
  }
}

@media (max-width: 991.98px) {
  .offer-copy h2 {
    white-space: normal;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-item,
  .offer-item:nth-child(even),
  .offer-item:nth-child(3n) {
    transform: translate3d(0, -120px, 0) scale(0.88) rotate(0deg);
  }
}

@media (max-width: 575.98px) {
  .offer-section {
    padding: 3rem 0 4rem;
  }

  .offer-item {
    min-height: 82px;
    padding: 0.9rem 0.9rem 0.9rem 0.95rem;
    border-radius: 18px;
  }

  .offer-item span {
    font-size: 0.92rem;
  }

  .offer-item i {
    width: 2rem;
    height: 2rem;
    font-size: 0.92rem;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #f8efe4;
  background: linear-gradient(180deg, #7e552d 0%, #704a25 100%);
}

.footer-topbar {
background: linear-gradient(135deg, #c49443 0%, #B88A44 55%, #B88A44 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-topbar-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-brand img {
  display: block;
  width: clamp(110px, 10vw, 150px);
  height: auto;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-socials a {
  width: 2.45rem;
  height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.footer-socials i {
  font-size: 1rem;
  line-height: 1;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: white;
  color: #9f6e25;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  /* border: 0; */
   border: 2px solid #E0AA3E;
  box-shadow: 0 14px 30px rgba(162, 116, 72, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.footer-cta-btn::before {
  content: "\F5C1";
  font-family: "bootstrap-icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  color: #b78944;
  box-shadow: 0 18px 36px rgba(162, 116, 72, 0.18);
  filter: brightness(1.03);
}

.footer-socials-contact {
  margin-top: 1.5rem;
}

.footer-socials-contact a {
  border-color: rgba(47, 36, 25, 0.18);
  background: rgba(47, 36, 25, 0.08);
  color: #5b2e00;
}

.footer-socials-contact a:hover {
  background: #b78944;
  border-color: #9c712f;
  color: #fff;
}

.consultation-modal .modal-content {
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(47, 36, 25, 0.22);
}

.consultation-modal .modal-header {
  padding: 1.35rem 1.35rem 1rem;
  border-bottom: 1px solid rgba(162, 116, 72, 0.14);
  background: linear-gradient(180deg, #fffaf4 0%, #fff 100%);
}

.consultation-eyebrow {
  margin: 0 0 0.2rem;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consultation-modal .modal-title {
  margin: 0;
  color: var(--text);
}

.consultation-modal .modal-body {
  padding: 1.35rem;
  background: #fff;
}

.consultation-form .form-label {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.consultation-form .form-control {
  border-radius: 16px;
  border-color: rgba(162, 116, 72, 0.18);
  padding: 0.8rem 0.95rem;
  box-shadow: none;
}

.consultation-form .form-control:focus {
  border-color: rgba(91, 46, 0, 0.38);
  box-shadow: 0 0 0 0.2rem rgba(91, 46, 0, 0.1);
}

.consultation-form .is-invalid {
  border-color: #c63d2f;
}

.consultation-form .invalid-feedback {
  font-size: 0.86rem;
}

.consultation-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.35rem;
}

.consultation-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--button-gradient);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(162, 116, 72, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.consultation-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(162, 116, 72, 0.28);
  filter: brightness(1.03);
}

.consultation-modal .btn-close {
  box-shadow: none;
}

.footer-topbar-copy {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.footer-topbar-copy p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.1;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.02em;
}

.footer-main {
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  background: linear-gradient(180deg, rgba(247, 239, 229, 0.98) 0%, rgba(244, 235, 223, 0.98) 100%);
  color: #16110c;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.footer-col h3 {
  margin: 0 0 1rem;
  color: #16110c;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

.footer-links-list,
.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links-list {
  display: grid;
  gap: 0.72rem;
}

.footer-links-list a,
.footer-contact-list a {
  color: #16110c;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links-list a:hover,
.footer-contact-list a:hover {
  color: var(--accent-dark);
}

.footer-contact-list {
  display: grid;
  gap: 0.8rem;
  font-style: normal;
}

.footer-contact-list a,
.footer-contact-list span {
  line-height: 1.55;
}

.footer-contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-contact-list a i {
  margin-top: 0.15rem;
  color: #41250a;
  font-size: 1rem;
}

.footer-map-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(22, 17, 12, 0.22);
  box-shadow: 0 18px 40px rgba(72, 47, 24, 0.14);
  background: rgba(255, 255, 255, 0.66);
}

.footer-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 250px;
  border: 0;
}

.footer-bottom {
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(140, 97, 57, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #16110c;
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #16110c;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--accent-dark);
}

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

  .service-detail-media img {
    min-height: 260px;
  }

  .service-detail-hero {
    min-height: 190px;
  }

  .service-detail-hero__inner {
    padding: 2.5rem 0;
  }

  .service-detail-hero__split {
    grid-template-columns: 1fr;
  }

  .service-detail-hero--split .service-detail-hero__content {
    order: 2;
  }

  .service-detail-hero__media {
    order: 1;
  }

  .service-detail-form-card {
    padding: 1.1rem;
  }

  .service-detail-mini-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-section--halo-right::before,
  .service-detail-section--halo-right::after {
    right: -130px;
    opacity: 0.8;
  }

  .service-detail-section--halo-left::before,
  .service-detail-section--halo-left::after {
    left: -130px;
    opacity: 0.8;
  }

  .footer-topbar-inner {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    order: 1;
  }

  .footer-topbar-copy {
    order: 2;
    flex: 0 0 auto;
    padding: 0.5rem 0 0;
  }

  .footer-cta-btn {
    order: 3;
    margin-left: 0;
    margin-top: 0.25rem;
  }

  .footer-map-frame iframe {
    min-height: 220px;
  }
}

@media (max-width: 575.98px) {
  .service-detail-hero__media img {
    min-height: 240px;
  }

  .service-detail-hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .service-detail-point {
    padding: 0.9rem;
  }

  .service-detail-highlight {
    padding: 1rem;
    flex-direction: column;
  }

  .service-detail-highlight__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .service-detail-submit-btn {
    width: 100%;
    min-width: 0;
  }

  .service-detail-mini-card-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-form-actions {
    margin-top: 1rem;
  }

  .service-detail-section--halo-right::before,
  .service-detail-section--halo-right::after {
    display: none;
  }

  .service-detail-section--halo-left::before,
  .service-detail-section--halo-left::after {
    display: none;
  }

  .footer-topbar-inner {
    gap: 0.35rem;
  }

  .footer-topbar-copy {
    padding-top: 0.25rem;
  }

  .footer-socials {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-socials-contact {
    margin-top: 1.1rem;
  }

  .consultation-modal .modal-header,
  .consultation-modal .modal-body {
    padding: 1rem;
  }

  .consultation-actions {
    justify-content: stretch;
  }

  .consultation-submit-btn {
    width: 100%;
  }

  .footer-main {
    padding-top: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
