:root {
  /* Official ONLY HAIR HEALTH Brand Color System */
  --primary: #04ACF5;
  --primary-dark: #0398DA;
  --primary-hover: #0398DA;
  --primary-glow: rgba(4, 172, 245, 0.32);
  --navy: #0B1F3A;
  --blue-pro: #2563A9;
  --blue-soft: #EAF7FE;
  --blue-ice: #F5FBFF;
  --brand-gradient: linear-gradient(120deg, #405DA8 0%, #167CC8 50%, #04ACF5 100%);
  
  --ink: #101828;
  --ink-soft: #1D2939;
  --text: #526174;
  --text-light: #667085;
  --soft: #F5FBFF;
  --line: #EAECF0;
  --line-blue: rgba(4, 172, 245, 0.22);
  --footer: #081325;
  --white: #ffffff;

  /* Aliases to completely override any legacy gold styling */
  --gold: #04ACF5;
  --gold-dark: #2563A9;
  --gold-light: #EAF7FE;
  --gold-glow: rgba(4, 172, 245, 0.25);
  --champagne: #EAF7FE;
  --line-gold: rgba(4, 172, 245, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  font-family: "Rethink Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── Topbar ── */
.topbar {
  background: #0B1F3A;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner,
.bottom__inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar .container,
.site-header .container {
  width: min(1844px, calc(100% - 60px));
}

.topbar__contact,
.topbar__social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 180ms ease;
}

.topbar__contact a:hover {
  color: #04ACF5;
}

.topbar__social a {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  transition: color 180ms ease;
}

.topbar__social a:hover {
  color: #04ACF5;
}

.topbar__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.topbar__icon {
  color: #04ACF5;
  font-weight: 800;
}

/* ── Header & Glassmorphic Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 6px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(4, 172, 245, 0.12);
  box-shadow: none;
}

.nav {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 6px 28px;
  border: 1px solid rgba(4, 172, 245, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 24px rgba(4, 172, 245, 0.06);
}

.brand-logo {
  height: 66px;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.brand-logo--light {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #0B1F3A;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-menu a {
  transition: color 180ms ease;
  position: relative;
  padding: 6px 0;
}

.nav-menu a:hover,
.nav-menu .is-active {
  color: #04ACF5;
}

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

/* ── Inline Desktop Language Selector ── */
.lang-inline {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-pill {
  border: 1px solid rgba(4, 172, 245, 0.25);
  border-radius: 999px;
  padding: 5px 13px;
  background: var(--white);
  color: #0B1F3A;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 180ms ease;
}

.flag-svg {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.lang-pill:hover,
.lang-pill.is-active {
  border-color: #04ACF5;
  background: #EAF7FE;
  color: #04ACF5;
}

.lang-dropdown-wrapper {
  display: none;
}

.nav-item {
  position: relative;
}

.language__button {
  border: 1px solid rgba(4, 172, 245, 0.25);
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--white);
  color: #0B1F3A;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 180ms ease;
}

.language__button:hover {
  border-color: #04ACF5;
  background: #EAF7FE;
}

.lang-flag {
  font-size: 16px;
}

.chevron {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 500;
  min-width: 170px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(4, 172, 245, 0.25);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(4, 172, 245, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 180ms ease;
}

.dropdown-menu.is-open,
.language:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  color: #0B1F3A;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 150ms ease;
}

.dropdown-menu a:hover {
  background: #EAF7FE;
  color: #04ACF5;
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  transition: all 200ms ease;
}

.nav-cta,
.btn--primary {
  background: #04ACF5;
  color: var(--white) !important;
  box-shadow: 0 6px 20px rgba(4, 172, 245, 0.35);
  border: none;
}

.nav-cta:hover,
.btn--primary:hover {
  background: #0398DA;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(4, 172, 245, 0.45);
}

.btn--light {
  background: rgba(255, 255, 255, 0.95);
  color: #0B1F3A;
  border: 1px solid rgba(4, 172, 245, 0.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(4, 172, 245, 0.08);
}

.btn--light:hover {
  background: #EAF7FE;
  color: #04ACF5;
  border-color: #04ACF5;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid rgba(4, 172, 245, 0.3);
  border-radius: 8px;
  padding: 8px 14px;
  background: var(--white);
  color: #0B1F3A;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

/* ── Hero Section (Luxury Asymmetric Editorial Blue Style) ── */
.hero {
  position: relative;
  width: min(1844px, calc(100% - 32px));
  min-height: 680px;
  height: clamp(680px, 78vh, 830px);
  max-height: 830px;
  margin: 0 auto;
  border-radius: 26px;
  isolation: isolate;
  overflow: hidden;
  background: #F5FBFF;
  z-index: 0;
  box-shadow: 0 16px 40px rgba(4, 172, 245, 0.06);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  z-index: 0;
  filter: brightness(1.03) contrast(1.02);
  pointer-events: none;
}

.hero__video::-webkit-media-controls,
.hero__video::-webkit-media-controls-enclosure,
.hero__video::-webkit-media-controls-panel,
.hero__video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg, 
    rgba(245, 251, 255, 0.97) 0%, 
    rgba(245, 251, 255, 0.88) 25%, 
    rgba(245, 251, 255, 0.52) 42%, 
    rgba(245, 251, 255, 0.16) 58%, 
    transparent 68%
  );
  pointer-events: none;
}

.hero__content {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--ink);
  width: 100%;
  max-width: 570px;
  padding: 0;
  margin: 0;
}

.hero__eyebrow {
  color: #04ACF5 !important;
  background: #EAF7FE;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  height: 36px;
  margin-bottom: 18px;
  border: 1px solid rgba(4, 172, 245, 0.35);
  text-transform: uppercase;
}

.hero h1 {
  max-width: 520px;
  color: #0B1F3A;
  font-size: clamp(64px, 5vw, 88px);
  font-family: "Cinzel", "Playfair Display", serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.hero p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: #526174;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero .btn {
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

/* ── Stats Band ── */
.stats-band {
  background: linear-gradient(135deg, #081325 0%, #0B1F3A 50%, #050D1A 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(4, 172, 245, 0.2);
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(4, 172, 245, 0.12) 0%, transparent 60%);
}

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

.stat-item {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(4, 172, 245, 0.2);
  color: var(--white);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .stat-number {
  display: inline-block;
  font-size: clamp(42px, 4.8vw, 62px);
  font-weight: 700;
  font-family: "Cinzel", serif;
  color: #04ACF5;
  line-height: 1;
}

.stat-item .stat-suffix {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #EAF7FE;
}

.stat-item p {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Sections Common ── */
.band {
  background: #F5FBFF;
}

.intro,
.features,
.services,
.about,
.techniques,
.journey,
.testimonials,
.faq,
.appointment,
.contact {
  padding: 100px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #04ACF5;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h2 {
  color: #0B1F3A;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  margin: 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 50px;
}

/* ── Intro ── */
.intro__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.intro p:last-child {
  margin: 0;
  font-size: 18px;
  color: #526174;
  line-height: 1.75;
}

/* ── Features ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(4, 172, 245, 0.18);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 12px 36px rgba(4, 172, 245, 0.05);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #04ACF5;
  box-shadow: 0 20px 48px rgba(4, 172, 245, 0.15);
}

.feature-card__badge {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #EAF7FE;
  color: #04ACF5;
  font-weight: 800;
  font-size: 18px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  color: #0B1F3A;
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  color: #526174;
}

/* ── Services Grid ── */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(4, 172, 245, 0.18);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(4, 172, 245, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #04ACF5;
  box-shadow: 0 24px 60px rgba(4, 172, 245, 0.18);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
}

.service-card div {
  padding: 30px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-family: "Playfair Display", serif;
  color: #0B1F3A;
}

.service-card p {
  margin: 0;
  font-size: 16px;
  color: #526174;
}

/* ── About ── */
.about__container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.about-list span {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(4, 172, 245, 0.25);
  border-radius: 12px;
  padding: 12px 18px;
  background: #EAF7FE;
  color: #0B1F3A;
  font-weight: 700;
  font-size: 15px;
}

/* ── Techniques Section ── */
.technique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.technique-card {
  background: var(--white);
  border: 1px solid rgba(4, 172, 245, 0.18);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 16px 40px rgba(4, 172, 245, 0.05);
  transition: transform 220ms ease, border-color 220ms ease;
}

.technique-card:hover {
  transform: translateY(-6px);
  border-color: #04ACF5;
}

.technique-icon {
  font-size: 38px;
  margin-bottom: 20px;
}

.technique-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #0B1F3A;
  margin: 0 0 14px;
}

.technique-card p {
  margin: 0;
  font-size: 15px;
  color: #526174;
  line-height: 1.7;
}

/* ── Patient Journey Section ── */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.journey-step {
  background: #F5FBFF;
  border: 1px solid rgba(4, 172, 245, 0.18);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: transform 200ms ease, border-color 200ms ease;
}

.journey-step:hover {
  transform: translateY(-6px);
  border-color: #04ACF5;
}

.journey-num {
  font-family: "Cinzel", serif;
  font-size: 36px;
  font-weight: 700;
  color: #04ACF5;
  margin-bottom: 18px;
}

.journey-step h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: #0B1F3A;
}

.journey-step p {
  margin: 0;
  font-size: 15px;
  color: #526174;
}

/* ── Details Section ── */
.detail {
  padding: 90px 0;
}

.detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.detail__grid--reverse .detail__media {
  order: 2;
}

.detail__media > img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 1.35;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(4, 172, 245, 0.1);
}

.thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.thumbs img {
  width: 100%;
  aspect-ratio: 1.45;
  border-radius: 12px;
  object-fit: cover;
}

.detail__copy h3 {
  margin-top: 28px;
  font-size: 24px;
  font-family: "Playfair Display", serif;
  color: #0B1F3A;
}

.detail__copy ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.detail__copy li {
  margin-bottom: 10px;
  color: #526174;
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(4, 172, 245, 0.18);
  border-radius: 20px;
  padding: 38px 32px;
  box-shadow: 0 18px 45px rgba(4, 172, 245, 0.05);
  transition: transform 240ms ease, box-shadow 240ms ease;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 110px;
  font-family: "Playfair Display", serif;
  color: #EAF7FE;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(4, 172, 245, 0.15);
  border-color: #04ACF5;
}

.testimonial-stars {
  color: #04ACF5;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-text {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.75;
  color: #526174;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563A9, #04ACF5);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: #0B1F3A;
  font-size: 15px;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 13px;
  color: #04ACF5;
  font-weight: 600;
}

/* ── FAQ Section ── */
.faq-accordion {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.faq-item {
  border: 1px solid rgba(4, 172, 245, 0.18);
  border-radius: 16px;
  background: var(--white);
  padding: 22px 28px;
  transition: border-color 200ms ease;
}

.faq-item[open] {
  border-color: #04ACF5;
  background: #F5FBFF;
}

.faq-item summary {
  font-size: 18px;
  font-weight: 700;
  color: #0B1F3A;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 22px;
  color: #04ACF5;
  transition: transform 200ms ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 16px 0 0;
  font-size: 16px;
  color: #526174;
  line-height: 1.7;
}

/* ── Appointment Form ── */
.appointment__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 36px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(4, 172, 245, 0.25);
  box-shadow: 0 20px 55px rgba(4, 172, 245, 0.08);
}

.form label {
  display: grid;
  gap: 8px;
  color: #0B1F3A;
  font-size: 14px;
  font-weight: 700;
}

.form__wide {
  grid-column: 1 / -1;
}

.form__checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #526174 !important;
  cursor: pointer;
}

.form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #04ACF5;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(4, 172, 245, 0.2);
  border-radius: 8px;
  padding: 14px 18px;
  color: #0B1F3A;
  background: #F5FBFF;
  font: inherit;
  font-size: 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #04ACF5;
  box-shadow: 0 0 0 4px rgba(4, 172, 245, 0.25);
}

textarea {
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}

/* ── Contact Section ── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.contact-list > div {
  border-bottom: 1px solid rgba(4, 172, 245, 0.15);
  padding-bottom: 20px;
}

.contact-list h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #0B1F3A;
}

.contact-list p {
  margin: 0;
  font-size: 16px;
  color: #526174;
}

.contact__images {
  display: grid;
  gap: 20px;
}

.contact__images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 48px rgba(4, 172, 245, 0.1);
}

/* ── Notice / Disclaimer ── */
.notice {
  padding: 32px 0;
  background: #EAF7FE;
  color: #0B1F3A;
  font-size: 14px;
  border-top: 1px solid rgba(4, 172, 245, 0.2);
  border-bottom: 1px solid rgba(4, 172, 245, 0.2);
}

/* ── Footer ── */
.footer {
  background: #081325;
  color: rgba(255, 255, 255, 0.75);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding: 86px 0;
}

.footer h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 20px;
  font-family: "Rethink Sans", sans-serif;
  font-weight: 700;
}

.footer a,
.footer p {
  margin: 0 0 12px;
  font-size: 15px;
  transition: color 180ms ease;
}

.footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer a:hover {
  color: #04ACF5;
  text-decoration: underline;
}

.bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.bottom a {
  color: #04ACF5;
}

/* ── Floating Controls ── */
.go-top {
  position: fixed;
  right: 34px;
  bottom: 34px;
  z-index: 80;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563A9 0%, #04ACF5 100%);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(4, 172, 245, 0.35);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.go-top::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-top: 3.5px solid #ffffff;
  border-left: 3.5px solid #ffffff;
  transform: translateY(2px) rotate(45deg);
}

.go-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.go-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(4, 172, 245, 0.5);
}

/* WhatsApp Floating Icon Button */
.whatsapp-btn {
  position: fixed;
  left: 34px;
  bottom: 34px;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff !important;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 200ms ease;
  animation: wa-pulse 2.8s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  animation: none;
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 8px 42px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37,211,102,0.14); }
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive Queries ── */
@media (max-width: 1200px) {
  .feature-grid,
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(4, 172, 245, 0.2);
  }
}

@media (max-width: 1024px) {
  .lang-inline {
    display: none;
  }
  .lang-dropdown-wrapper {
    display: block;
  }
  .intro__grid,
  .about__grid,
  .detail__grid,
  .appointment__grid,
  .contact__grid,
  .service-grid,
  .testimonial-grid,
  .technique-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero__content {
    left: 4%;
    max-width: 520px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    display: none;
  }
  .hero {
    width: calc(100% - 20px);
    min-height: 560px;
    height: auto;
    border-radius: 20px;
  }
  .hero__content {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    padding: 40px 24px;
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(36px, 8vw, 48px);
    line-height: 0.94;
  }
  .hero p:not(.eyebrow) {
    font-size: 16px;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero .btn {
    width: 100%;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .go-top {
    right: 20px;
    bottom: 20px;
  }
  .whatsapp-btn {
    left: 20px;
    bottom: 20px;
  }
}
