:root {
  --bg-main: #050608;
  --bg-alt: #101217;
  --bg-card: #151821;
  --accent: #d4af37;
  --accent-soft: rgba(212, 175, 55, 0.15);
  --text-main: #f5f5f7;
  --text-muted: #a0a3af;
  --border-subtle: #272a33;
}

/* ============= GLOBAL ============= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: #000;
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 100% - 2.4rem);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    width: min(1200px, 100% - 3rem);
  }
}

/* =============== NAVBAR =============== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: none;
}

/* safety: disable any old hide-on-scroll class */
header.header-hidden {
  transform: none !important;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

/* left side: logo + text */
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-placeholder img {
  height: 36px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}

.brand-subtitle {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* right side: links + phone CTA */
.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.nav-links a:hover {
  color: #f3cc70;
  border-color: rgba(243, 204, 112, 0.7);
}

/* phone CTA */
.nav-cta {
  padding: 0.55rem 1.4rem;
  border-radius: 0;
  border: none;
  background: #b89a5c;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  color: #111;
  white-space: nowrap;
}

.nav-cta.phone-link {
  background: #b59a63;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
}

/* =============== NAV TOGGLE (BURGER) =============== */

.nav-toggle {
  display: none;
  position: relative;
  width: 32px;
  height: 22px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease,
    bottom 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  top: 0;
}
.nav-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.nav-toggle span:nth-child(3) {
  bottom: 0;
}

/* burger animation when nav is open */
.nav.open .nav-toggle span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.open .nav-toggle span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* =============== RESPONSIVE NAV (MOBILE) =============== */

@media (max-width: 880px) {
  .nav {
    padding-block: 0.55rem;
  }

  .logo-placeholder img {
    height: 50px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links-wrapper {
    position: fixed;
    inset-inline: 0;
    top: 60px;
    background: #000;
    border-top: 1px solid #111;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    padding: 0;
    max-height: 0;
    overflow: hidden;
    gap: 0.75rem;

    opacity: 0;
    pointer-events: none;
    transition: max-height 0.25s ease, padding 0.25s ease, opacity 0.2s ease;
  }

  .nav.open .nav-links-wrapper {
    max-height: 420px;
    padding: 0.8rem 1.3rem 1.2rem;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-links a {
    font-size: 0.78rem;
  }

  .nav-cta {
    margin-top: 0.6rem;
    width: 100%;
    justify-content: center;
    display: inline-flex;
    text-align: center;
  }
}

/* ============= MAIN / HERO ============= */

main {
  background: radial-gradient(
    circle at top,
    #20232b 0,
    #050608 45%,
    #020308 100%
  );
  padding-bottom: 3rem;
}

/* HERO – base layout */
#home {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* HERO BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;

  /* ✅ correct root-relative path */
  background-image: url("/static/images/hero-alex.jpg");

  background-size: cover;
  background-repeat: no-repeat;

  /* back to a normal centred crop like your screenshots */
  background-position: center center;

  filter: none;
}


.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: transparent;
}

/* inner container */
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4.5rem 0 2.4rem;
}

/* === TEXT PANEL === */
.hero-text-block {
  max-width: 520px;
  color: #fff;
  padding: 1.4rem 1.6rem;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

/* Top labels */
.hero-heading-main,
.hero-heading-sub {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.85rem;
}

/* "ALEX SCALP" */
.hero-heading-main {
  background: #000;
  border-radius: 4px 0 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  margin-right: 0.3rem;
}

/* "HAIR TATTOO" */
.hero-heading-sub {
  background: #e0413a;
  border-radius: 0 4px 4px 0;
  border: 1px solid #e0413a;
  color: #fff;
}

.hero-tagline {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #f5f5f5;
}

.hero-tagline + .hero-tagline {
  margin-top: 0.3rem;
}

/* CTA BUTTON */
.hero-btn-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
}

.hero-btn {
  display: inline-block;
  background: #d9bb55;
  color: #111;
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  border: none;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.18s ease;
  margin: 0.2rem 0;
}

.hero-btn:hover {
  background: #c3a545;
  transform: translateY(-2px);
}

/* HERO – RESPONSIVE */

@media (max-width: 900px) {
  .hero-bg {
    background-position-x: 45% !important;
    background-position-y: 45% !important;
  }

  .hero-inner {
    padding: 4.5rem 0 2.4rem;
    justify-content: flex-end;
  }

  .hero-text-block {
    max-width: none;
    margin: 0 1.2rem 1.6rem;
    padding: 1.1rem 1.25rem 1.3rem;
    border-radius: 16px;
  }

  .hero-heading-main,
  .hero-heading-sub {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    padding: 0.4rem 0.9rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .hero-btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text-block {
    margin: 0 0.9rem 1.4rem;
    padding: 1rem 1.1rem 1.2rem;
  }

  .hero-heading-main,
  .hero-heading-sub {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero-tagline {
    font-size: 0.84rem;
  }
}

/* ============= ABOUT ============= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 840px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  }
}

.about-photo {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1), #070910);
  border-radius: 1.3rem;
  border: 1px solid var(--border-subtle);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.about-video {
  width: 100%;
  border-radius: 1.4rem;
  display: block;
  object-fit: cover;
  background: #050608;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  max-height: 500px;
}

@media (max-width: 900px) {
  .about-video {
    max-height: 350px;
  }
}

.about-content p {
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 0.8rem;
  font-size: 0.8rem;
}

.about-meta-item strong {
  display: block;
  color: var(--text-main);
}

/* ===================== SERVICES – GRID & CARDS ===================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
  margin-top: 2.5rem;
}

.card {
  position: relative;
  padding: 1.9rem 1.9rem 1.6rem;
  border-radius: 20px;
  background: radial-gradient(circle at top left, #1b1d23 0%, #111218 55%, #0d0e13 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.01);
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    border-color 180ms ease-out,
    background 180ms ease-out;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 195, 106, 0.6);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(245, 195, 106, 0.18);
  background: radial-gradient(circle at top left, #20232c 0%, #111218 55%, #090a0f 100%);
}

.card-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 0.9rem;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.85rem;
}

.card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.78);
  margin: 0;
}

.card-footer {
  margin-top: 1.7rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(245, 245, 245, 0.9);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.card:hover .pill {
  border-color: rgba(245, 195, 106, 0.65);
  background: rgba(245, 195, 106, 0.06);
}

/* SERVICES – RESPONSIVE */

@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
  }

  .card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .card {
    padding: 1.5rem 1.35rem 1.35rem;
    border-radius: 18px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.9rem;
  }
}

/* ============= GALLERY CAROUSEL ============= */

.gallery-carousel {
  position: relative;
  margin-top: 1.4rem;
}

.gallery-window {
  overflow: hidden;
  border-radius: 0.9rem;
}

.gallery-track {
  display: flex;
  transition: transform 0.4s ease;
}

.gallery-item {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  min-height: 220px;
  background: #000;
  border-radius: 0.9rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#gallery.in-view .gallery-item {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img.gallery-photo,
.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: transform 0.3s ease, filter 0.3s ease;
}

@media (hover: hover) {
  .gallery-item:hover img.gallery-photo {
    transform: scale(1.05);
  }

  .gallery-item:hover .gallery-photo {
    filter: brightness(0.9);
  }
}

.gallery-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.45rem 0.65rem;
  font-size: 0.74rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #f9fafb;
}

.gallery-label span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.7);
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 600px) {
  .gallery-prev,
  .gallery-next {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }

  .gallery-prev {
    left: 6px;
  }

  .gallery-next {
    right: 6px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (min-width: 780px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ============= WHY CHOOSE US ============= */

#why-us {
  padding-top: 2.4rem;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 1.8rem;
  align-items: center;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-media {
  background: #050608;
  border-radius: 1.4rem;
  padding: 0.4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.why-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.2rem;
  object-fit: cover;
}

.why-content {
  max-width: 540px;
}

.why-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff8e1;
  margin-bottom: 0.7rem;
}

.why-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.why-item {
  display: flex;
  gap: 0.9rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.why-item:last-child {
  border-bottom: none;
}

.why-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.14em;
}

.why-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.why-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  background: #1a2a18;
  color: #f5f5f5;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  margin-top: 1.2rem;
  margin-bottom: 0.6rem;
}

.why-cta:hover {
  background: #24401f;
}

/* ============= PRICING (hidden for now) ============= */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  }
}

.pricing-highlight {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    rgba(8, 9, 15, 0.95)
  );
  border-radius: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.6);
  padding: 1.2rem 1.25rem;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.8);
}

.pricing-highlight h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: #f3cc70;
}

.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.86rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 0.3rem;
}

.pricing-row small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.pricing-note {
  margin-top: 0.6rem;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.pricing-extra {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ============= REVIEWS ============= */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.2rem;
}

@media (min-width: 780px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.review-card {
  background: var(--bg-card);
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  font-size: 0.84rem;
}

.review-stars {
  color: var(--accent);
  font-size: 0.76rem;
  margin-bottom: 0.35rem;
}

.review-name {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============= FAQ ============= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 0.85rem;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.faq-header {
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  cursor: pointer;
}

.faq-question {
  font-size: 0.86rem;
}

.faq-toggle {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: max-height 0.22s ease, padding-bottom 0.22s ease;
}

.faq-item.active .faq-body {
  max-height: 160px;
  padding-bottom: 0.75rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* ============= POLICIES + CLINIC CONTACT GRID ============= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin-top: 1.6rem;
}

@media (min-width: 840px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.contact-card {
  background: var(--bg-card);
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  padding: 1.2rem 1.3rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.65);
}

/* Booking / deposits / cancellation card – subtle gold highlight */
.contact-grid .contact-card:first-child {
  border-color: rgba(212, 175, 55, 0.7);
  background: radial-gradient(
      circle at top left,
      rgba(212, 175, 55, 0.18),
      #11141b
    );
}

.contact-heading {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f3cc70;
  margin-bottom: 0.7rem;
}

.booking-list {
  list-style: none;
  margin-top: 0.6rem;
  padding-left: 0;
}

.booking-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.booking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

/* Contact rows */
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.7rem;
}

.contact-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.contact-value {
  font-size: 0.9rem;
  color: var(--text-main);
}

.contact-value a {
  color: var(--text-main);
}

.contact-value a:hover {
  color: var(--accent);
}

/* Social pills */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.social-pill {
  font-size: 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.7rem;
  color: var(--text-muted);
}

/* ===== Clinic Contact Details card ===== */

#contact-details.contact-card {
  background: radial-gradient(
      circle at top right,
      rgba(120, 140, 200, 0.12),
      #10131b
    );
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.75);
}

#contact-details .contact-value {
  font-size: 0.9rem;
  color: #f5f5f7;
}

#contact-details .contact-value a {
  font-weight: 500;
  text-decoration: none;
}

#contact-details .contact-value a:hover {
  color: var(--accent);
}

#contact-details .social-links {
  margin-top: 0.5rem;
}

#contact-details .social-pill {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-main);
  font-size: 0.8rem;
}

#contact-details .social-pill:hover {
  border-color: var(--accent);
}

@media (max-width: 640px) {
  #contact-details.contact-card {
    text-align: left;
  }

  #contact-details .social-links {
    justify-content: flex-start;
  }
}

/* ============= CONTACT SECTION (FORM + INFO) ============= */

.contact-section {
  background: var(--bg-alt);
  color: var(--text-main);
}

.contact-section .container {
  max-width: 900px;
}

/* Title + subtitle */
.contact-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.contact-section .contact-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* Grid: form + clinic info */
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  margin-top: 1.8rem;
}

@media (max-width: 768px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Both columns as cards */
.contact-section .contact-form,
.contact-section .contact-info {
  background: var(--bg-card);
  border-radius: 1.1rem;
  border: 1px solid var(--border-subtle);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.7);
}

/* Form layout */
.contact-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Labels */
.contact-section .contact-form label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

/* Inputs + textarea */
.contact-section .contact-form input,
.contact-section .contact-form textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid var(--border-subtle);
  background: #05070d;
  padding: 0.7rem 0.9rem;
  font-size: 0.86rem;
  color: var(--text-main);
  outline: none;
}

.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4);
}

.contact-section .contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

/* Submit button */
.contact-section .contact-form .btn-submit,
.contact-section .contact-form button {
  margin-top: 0.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #d9bb55;
  color: #111;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  align-self: flex-start;
}

.contact-section .contact-form .btn-submit:hover,
.contact-section .contact-form button:hover {
  background: #c3a545;
}

#formMessage {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Clinic info card */
.contact-section .contact-info h3 {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f3cc70;
  margin-bottom: 0.6rem;
}

.contact-section .contact-info p {
  font-size: 0.86rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.contact-section .contact-info a {
  color: var(--accent);
}

.contact-section .contact-info a:hover {
  color: #f7d675;
}

/* WhatsApp button inside the info card */
.contact-section .contact-info .whatsapp-btn {
  margin-top: 0.8rem;
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: #25d366;
  color: #000;
  font-weight: 600;
  font-size: 0.8rem;
}

/* === CONTACT FORM – STYLE WHATEVER HTML IS IN #contact-us === */

#contact-us {
  background: var(--bg-alt);
}

#contact-us .section-header {
  margin-bottom: 1.8rem;
}

#contact-us form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 1.1rem;
  border: 1px solid var(--border-subtle);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.7);
}

/* stack label over field */
#contact-us label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

/* make all inputs + textarea full-width, dark, rounded */
#contact-us input,
#contact-us textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid var(--border-subtle);
  background: #05070d;
  font-size: 0.86rem;
  color: var(--text-main);
  outline: none;
  box-sizing: border-box;
}

#contact-us input:focus,
#contact-us textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4);
}

#contact-us textarea {
  min-height: 110px;
  resize: vertical;
}

/* submit button */
#contact-us button[type="submit"] {
  margin-top: 0.8rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #d9bb55;
  color: #111;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

#contact-us button[type="submit"]:hover {
  background: #c3a545;
}

/* ============= HIDE UNUSED SECTIONS ============= */

#pricing {
  display: none !important;
}

#booking {
  display: none !important;
}

/* ============= FLOATING WHATSAPP + PHONE (BOTTOM OF PAGE) ============= */

.floating-buttons{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;

  display: flex;
  justify-content: space-between;
  padding: 0 18px;

  z-index: 9999;

  /* stops the wide container blocking clicks on content */
  pointer-events: none;
}

.floating-buttons .float-btn{
  width: 56px;
  height: 56px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 22px rgba(0,0,0,.28);

  /* hard clip to remove edge artifacts */
  overflow: hidden;

  border: 0;
  outline: 0;
  -webkit-tap-highlight-color: transparent;

  /* re-enable clicks for the actual buttons */
  pointer-events: auto;

  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

/* stop accidental pseudo elements */
.floating-buttons .float-btn::before,
.floating-buttons .float-btn::after{
  content: none !important;
}

/* IMPORTANT:
   If your PNG already contains the green circle, keep backgrounds transparent.
   If your PNG is ONLY the white icon, set backgrounds to #25D366 (see below). */
.floating-buttons .float-btn{
  background: transparent;
}

/* If you want CSS to draw the green circle instead, uncomment these:
.floating-buttons .float-btn.whatsapp-btn{ background: #25D366; }
.floating-buttons .float-btn.phone-btn{ background: #25D366; }
*/

/* IMAGE FIX:
   If the artifact line is inside the PNG export/canvas, this crops it away */
.floating-buttons .float-btn img{
  width: 100%;
  height: 100%;
  object-fit: cover;        /* fills circle */
  border-radius: 50%;
  display: block;

  /* tiny crop to remove 1px edge lines from PNG */
  transform: scale(1.06) translateZ(0);
}

/* hover */
.floating-buttons .float-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 14px 28px rgba(0,0,0,.32);
}

.floating-buttons .float-btn:active{
  transform: translateY(0);
}

/* remove focus ring (sometimes looks like a line) */
.floating-buttons .float-btn:focus,
.floating-buttons .float-btn:focus-visible{
  outline: none;
}

/* vibration animation: animate the ICON ONLY */
.floating-buttons .whatsapp-btn img,
.floating-buttons .phone-btn img{
  animation: vibrate-4s 4s ease-in-out infinite;
}

@keyframes vibrate-4s{
  0%{ transform: scale(1.06) translate(0,0) translateZ(0); }
  5%{ transform: scale(1.06) translate(-2px,2px) translateZ(0); }
  10%{ transform: scale(1.06) translate(2px,-2px) translateZ(0); }
  15%{ transform: scale(1.06) translate(-2px,2px) translateZ(0); }
  20%{ transform: scale(1.06) translate(2px,-2px) translateZ(0); }
  25%{ transform: scale(1.06) translate(0,0) translateZ(0); }
  100%{ transform: scale(1.06) translate(0,0) translateZ(0); }
}

/* safe-area support for iPhone */
@supports (bottom: env(safe-area-inset-bottom)){
  .floating-buttons{
    bottom: calc(18px + env(safe-area-inset-bottom));
    padding-left: calc(18px + env(safe-area-inset-left));
    padding-right: calc(18px + env(safe-area-inset-right));
  }
}


/* ===== SECTION TITLES (kicker + big white heading) ===== */

.section-header {
  margin-bottom: 2.8rem;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 640px;
}

@media (max-width: 640px) {
  .section-title {
    font-size: 1.6rem;
  }
  .section-subtitle {
    font-size: 0.9rem;
  }
}

/* ===== GLOBAL SECTION SPACING + NAV OFFSET ===== */

section {
  scroll-margin-top: 90px;
}

/* default vertical padding for all sections except hero */
section:not(#home) {
  padding-top: 3.4rem;
  padding-bottom: 3.6rem;
}

/* slightly extra top space for the main content sections */
#about,
#services,
#gallery,
#why-us,
#reviews,
#faqs,
#policies,
#contact-us {
  padding-top: 3.8rem;
}

/* ============= CLEAN FOOTER ============= */

#site-footer {
  margin-top: 2.4rem;
  padding: 2rem 0 1.4rem;
  background: #050608;
  border-top: 1px solid #111;
  font-size: 0.84rem;
  color: var(--text-muted);
}

#site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

#site-footer .footer-col {
  min-width: 0;
}

#site-footer .footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#site-footer .footer-line {
  margin-bottom: 0.25rem;
}

#site-footer .footer-spaced {
  margin-top: 0.5rem;
}

#site-footer .footer-line a {
  color: var(--text-main);
}

#site-footer .footer-line a:hover {
  color: var(--accent);
}

#site-footer .footer-list {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
}

#site-footer .footer-list li {
  margin-bottom: 0.25rem;
}

#site-footer .footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.6rem;
  font-size: 0.78rem;
}

#site-footer .footer-logo {
  max-width: 190px;
  height: auto;
  display: block;
  margin: 0.5rem 0 0.35rem auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7));
}

#site-footer .footer-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
}

#site-footer .footer-bottom {
  margin-top: 1.4rem;
  padding-top: 0.7rem;
  border-top: 1px solid #111;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
}

#site-footer .footer-credit {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  #site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    text-align: center;
  }

  #site-footer .footer-col,
  #site-footer .footer-col-left,
  #site-footer .footer-col-center,
  #site-footer .footer-col-right {
    text-align: center;
  }

  #site-footer .footer-social {
    align-items: center;
  }

  #site-footer .footer-logo {
    margin: 0.5rem auto 0.35rem;
  }

  #site-footer .footer-tagline {
    text-align: center;
  }

  #site-footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ---- Footer Legal Links ---- */

.footer-legal a {
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-legal a:hover {
  color: #f7d675;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.55);
  text-decoration: underline;
}


/* =========================
   Legal pages: offset for fixed navbar
   ========================= */
body.legal-page main {
  padding-top: 110px; /* increase/decrease if needed */
}

@media (max-width: 768px) {
  body.legal-page main {
    padding-top: 140px;
  }
}
/* ===== Legal pages: prevent headings being hidden under fixed navbar ===== */
.legal-page main {
  padding-top: 120px;
}

@media (max-width: 900px) {
  .legal-page main {
    padding-top: 95px;
  }
}

/* ===============================
   CONTACT FORM STATUS + DISABLED BTN
   (Patch - safe overrides)
   =============================== */

.contact-us-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .contact-us-row {
    grid-template-columns: 1fr;
  }
}

.contact-us-status {
  margin-top: 0.8rem;
  min-height: 1.2em; /* prevents layout jump */
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.contact-us-status.is-success {
  color: #7dd56f;
}

.contact-us-status.is-error {
  color: #ff6b6b;
}

.contact-us-status.is-loading {
  color: var(--text-muted);
}

#contact-us button[type="submit"][disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}

/* ===============================
   FOOTER SOCIAL LINKS CLICKABLE
   =============================== */

#site-footer .footer-social a {
  color: var(--text-main);
  text-decoration: none;
}

#site-footer .footer-social a:hover {
  color: var(--accent);
  text-decoration: underline;
}

