/*#region Hero*/
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 01;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 1rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* HERO TEXT */
.hero-overlay h1 {
  font-family:"DM Serif Display", serif;
  font-weight: 600; /* strong but not heavy */
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-overlay p {
  font-family: "Rubik", sans-serif;
  font-weight: 300; /* light, soft body */
  font-size: 1.25rem;
  max-width: 600px;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Base Button Styles */
.btn {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  padding: 0.9rem 1.75rem;
  border-radius: 999px; /* pill shape */
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* Remove default browser outline/blue border */
  outline: none;
  border: none;
}

/* Focus styles (accessibility) */
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); /* subtle custom focus ring */

  outline: none;
  border: none;
}

/* Primary Button */
.btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

/* Secondary Button */
.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}


/* MOBILE */
@media (max-width: 576px) {
  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    font-size: larger;
  }

  .hero-overlay h1 {
    font-size: 3rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}


/*#endregion Hero*/


/*#region Navbar*/
.custom-navbar {
  background-color: rgba(0, 0, 0, 0.4); /* black at 80% */
  padding-top: 1.25rem;
  padding-bottom: 1.25rem; /* makes it thicker */
  backdrop-filter: blur(8px); /* optional: glass effect */
  -webkit-backdrop-filter: blur(8px);
}

/* Brand & links */
.custom-navbar .navbar-brand,
.custom-navbar .nav-link {
  color: #fff;
  font-weight: 500;
}

.custom-navbar .nav-link:hover {
  color: #ddd;
}

/* Book Now button tweak (optional) */
.custom-navbar .btn-primary {
  background-color: #fff;
  color: #000;
  border: none;
}

.custom-navbar .btn-primary:hover {
  background-color: #f1f1f1;
}

/* Mobile toggler icon (white) */
.custom-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

.custom-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/*#endregion Navbar*/


/*#region Carousel*/
.treatments-section {
  padding: 4rem 0;
  background: #faf7f3;
}

.treatments-slider {
  overflow: hidden;
  width: 100%;
}

.treatments-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.8s ease;
  padding-left: 2rem;
}

.treatment-card {
  position: relative;
  min-width: 30%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

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

/* Overlay */
.treatment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.15)
  );
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.treatment-card:hover .treatment-overlay {
  opacity: 1;
}

.treatment-overlay h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.treatment-overlay p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.treatment-overlay .btn {
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 992px) {
  .treatment-card {
    min-width: 70%;
  }
}

/*#endregion Carousel*/


/*#region FAQs*/

.faq-title {
  font-family: "Playfair Display", serif; 
  font-size: 2.5rem;
}

.accordion-button {
  font-size: 1.05rem;
  padding: 1.25rem 0;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #000;
  box-shadow: none;
}

.accordion-button::after {
  background-size: 1rem;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e5e5e5;
}

.accordion-body {
  padding: 0 0 1.25rem 0;
  color: #555;
  line-height: 1.6;
}

/*#endregion FAQs*/


/*#region Footer*/
.site-footer {
  background-color: #2c2c2c;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

/* links */
.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #d4b06a;
  text-decoration: underline;
}

/* =========================
   FOOTER LAYOUT
========================= */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;

  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.5fr;
  gap: 2.5rem;

  align-items: stretch;
}

/* =========================
   BRAND COLUMN (UPDATED)
========================= */
.footer-brand {
  display: flex;
  flex-direction: column;

  /* KEY CHANGE: push everything toward bottom */
  justify-content: flex-end;

  height: 100%;
  gap: 0.75rem; /* keeps logo and socials tight */
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo {
  max-width: 240px;
  height: auto;
  display: block;
}

/* socials now sit directly under logo */
.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: 0.2s ease, transform 0.2s ease;
  color: #d4b06a;
}

.footer-socials a:hover {
  color: #ffffff;
  transform: translateY(-1.5px);
}

/* =========================
   CONTACT COLUMN
========================= */
.footer-contact h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-list i {
  font-size: 1.1rem;
  color: #d4b06a;
  flex-shrink: 0;
}

.contact-list strong {
  font-weight: 600;
}

.contact-list a {
  color: #ffffff;
}

.contact-list a:hover {
  color: #d4d4d4;
  text-decoration: underline;
}

/* =========================
   MAP COLUMN
========================= */
.footer-map {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.footer-map h3 {
  font-size: 1rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  display: block;
  border-radius: 10px;
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    justify-content: flex-start;
    align-items: center;
  }

  .footer-map {
    justify-content: flex-start;
  }

  .footer-socials {
    justify-content: flex-start;
    gap: 2rem;
  }

  .footer-socials a{
    font-size: 1.8rem;
  }

  .footer-map iframe {
    height: 220px;
  }
}
/*#endregion Footer*/


/*#region Before/After Slider*/
/* =========================
   REAL RESULTS SECTION
   ========================= */

.results-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #2c2c2c, #141414);
  color: #fff;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.results-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.results-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 25px;
}

.results-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.results-points li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #eee;
}

/* Right column polish */
.results-media {
  display: flex;
  justify-content: center;
}

.results-media .comparison {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .results-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* =========================
   SLIDER SECTION
   ========================= */


.comparison {
  width: 90vw;
  max-width: 600px;
  aspect-ratio: 1/1; /* keeps square ratio */
  overflow: hidden;
  position: relative;
  margin: 20px auto;
}

.comparison figure {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  background-size: cover;
  overflow: hidden;
}

/* After image */
.comparison .divisor {
  position: absolute;
  inset: 0;
  width: 50%;
  background-size: cover;
  overflow: hidden;
}

.comparison .handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 40px;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-shadow: 0 0 1px black, 0 0 4px black;
}

.comparison .handle span {
  font-size: 25px;
  font-weight: bold;
  color: #fff;      /* arrow color */
  width: auto;      /* optional */
  height: auto;     /* optional */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.comparison .label {
  position: absolute;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 14px;
  border-radius: 40px;
  pointer-events: none;
}

.comparison .before-label {
  top: 10px;
  left: 10px;
  z-index: 1;
}

.comparison .after-label {
  top: 10px;
  right: 10px;
  z-index: 2;
}

/*#endregion Slider*/


/*#region Image/Text Split*/
:root {
  --hero-padding: clamp(2rem, 5vw, 5rem);
  --hero-bg-dark: #2c2c2c;
  --hero-bg-light: #f0f0f0;
  --hero-text-light: #fff;
  --hero-text-dark: #111;
  --accent: #2bb0d6;
}

.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

/* Media side (image / video / gradient) */
.split-hero__media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Content side */
.split-hero__content {
  padding: var(--hero-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}

/* Typography */
.split-hero__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.split-hero__text {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
}

.btn--primary {
  background: #fff;
  color: #111;
}

.split-hero .btn--primary:hover {
  background-color: #f1f1f1;
  color: #111;
}


/* Dark / Light Variants */
.split-hero--dark {
  background: var(--hero-bg-dark);
  color: var(--hero-text-light);
}

.split-hero--light {
  background: var(--hero-bg-light);
  color: var(--hero-text-dark);
}

/* Reverse */
.split-hero--reverse {
  grid-template-columns: 1fr 1fr; /* optional since same as default */
}

.split-hero--reverse .split-hero__media {
  order: 2; /* moves media to the right */
}

.split-hero--reverse .split-hero__content {
  order: 1; /* moves content to the left */
}

/* Mobile */
@media (max-width: 900px) {
  .split-hero {
    grid-template-columns: 1fr;
  }

  .split-hero__media {
    min-height: 45vh;
  }

  .split-hero__content {
    max-width: 100%;
  }
}

/*#endregion Image/Text Split*/


/*#region TreatmentSummary*/
.treatment-facts {
  width: 100%;
  text-align: center;
  padding-bottom: 2rem;
}

.treatment-facts h6 {
  font-size: 13px; 
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 30px; 
}

.treatment-facts .col-6, 
.treatment-facts .col-md-4 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}


.fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem; /* vertical space between each fact */
}

.fact-icon {
  font-size: 32px;
  color: #111;
}

.fact-label {
  font-weight: 600; 
  font-size: 15px;
  color: #111;
}

.fact-value {
  font-weight: 400; 
  font-size: 16px;
  color: #666;
}

@media (max-width: 768px) {
  .fact-icon {
    font-size: 28px;
  }
  .fact-label {
    font-size: 14px;
  }
  .fact-value {
    font-size: 15px;
  }
}
/*#endregion TreatmentSummary*/


/*#region Reviews*/

/* ── RESET (SCOPED) ── */
.reviews-section *,
.reviews-section *::before,
.reviews-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── SECTION ROOT VARIABLES + BASE ── */
.reviews-section {
  --black: #1e1e1e;
  --white: #f7f5f2;
  --mid: #7a7a7a;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --card-bg: #ffffff;
  --card-border: #e8e4de;

  background: var(--black);
  font-family: 'DM Sans', sans-serif;
  color: var(--white);
  padding: 60px 40px;
}

/* ── INNER WRAPPER ── */
.reviews-section-inner {
  width: 100%;
  max-width: 1400px;
  padding: 0 60px;
  margin: 0 auto;
}

/* ── HEADER ── */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}

.reviews-header-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.reviews-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.reviews-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
}

.reviews-title em {
  font-style: italic;
  color: var(--gold-light);
}

.reviews-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
}

/* ── GOOGLE BADGE ── */
.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 8px 16px 8px 12px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.google-badge:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.google-icon {
  width: 18px;
  height: 18px;
}

.google-badge-text {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
}

/* ── STARS ── */
.overall-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.star-row {
  display: flex;
  gap: 3px;
}

.star-row svg { width: 14px; height: 14px; }

.overall-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}

.overall-count {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.04em;
}

/* ── SCROLL CONTROLS ── */
.scroll-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.scroll-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.scroll-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.scroll-btn svg { width: 18px; height: 18px; }

/* ── TRACK ── */
.reviews-track-wrap {
  position: relative;
  overflow: hidden;
}

.reviews-track-wrap::before,
.reviews-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.reviews-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(30,30,30,0.75), transparent);
  opacity: 0;
}

.reviews-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(30,30,30,0.75), transparent);
  opacity: 1;
}

.reviews-track-wrap.show-left::before  { opacity: 1; }
.reviews-track-wrap.hide-right::after  { opacity: 0; }

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 4px 28px;
  cursor: grab;
  user-select: none;
}

.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track.dragging { cursor: grabbing; scroll-snap-type: none; }

/* ── CARD ── */
.review-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 2px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-card:hover::before {
  transform: scaleX(1);
}

.card-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  line-height: 0.6;
  color: var(--gold-light);
  opacity: 0.45;
  position: absolute;
  top: 22px;
  right: 26px;
  pointer-events: none;
  font-style: italic;
}

.card-stars {
  display: flex;
  gap: 3px;
}

.card-stars svg { width: 15px; height: 15px; }

.card-text {
  font-size: 14.5px;
  line-height: 1.75;
  font-weight: 300;
  color: #2e2e2e;
  flex: 1;
  letter-spacing: 0.01em;
}

.card-divider {
  height: 1px;
  background: var(--card-border);
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), #d4a55a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}

.card-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.card-author-name {
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-date {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.04em;
}

.card-google-logo {
  margin-left: auto;
  opacity: 0.3;
  flex-shrink: 0;
}

.card-google-logo svg { width: 16px; height: 16px; }

/* ── PROGRESS BAR ── */
.reviews-progress {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.progress-bar-wrap {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.23,1,0.32,1);
  width: 0%;
}

.progress-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mid);
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .reviews-section-inner { padding: 0 24px; }
  .reviews-header { flex-direction: column; align-items: flex-start; margin-bottom: 36px; }
  .review-card { flex: 0 0 300px; padding: 28px 24px 24px; }
}

/*#endregion Reviews*/



/*#region Concerns*/
:root{
  --bg:#0a0a0b;
  --text:#f4f4f4;
  --muted:rgba(255,255,255,0.6);
  --line:rgba(255,255,255,0.08);
}

*{margin:0;padding:0;box-sizing:border-box;}
.concerns-section{
  background:var(--bg);
  color:var(--text);
  font-family:Inter,sans-serif;
  overflow-x:hidden;
}

/* HERO */
.cs-hero{
  height:50vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 20px;
}

.cs-hero h1{
  font-family:"DM Serif Display", serif;
  font-size:3rem;
  line-height:1.1;
  display: block;
  font-weight: bold;
}

/* EXPLORE */
.cs-explore{
  margin-top:40px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  cursor:pointer;
  animation:fadeIn 1.5s ease forwards;
}

.cs-explore span{
  font-size:12px;
  color:var(--muted);
  letter-spacing:1px;
}

.cs-arrow{
  width:18px;
  height:18px;
  border-right:2px solid white;
  border-bottom:2px solid white;
  transform:rotate(45deg);
  animation:bounce 1.6s infinite;
}

@keyframes bounce{
  0%,100%{ transform:translateY(0) rotate(45deg); opacity:0.6;}
  50%{ transform:translateY(10px) rotate(45deg); opacity:1;}
}

@keyframes fadeIn{
  from{opacity:0; transform:translateY(10px);}
  to{opacity:1; transform:translateY(0);}
}

/* PROGRESS DOTS */
.cs-dots{
  display:none;
}

.cs-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgba(255,255,255,0.25);
  transition:0.3s;
}

.cs-dot.active{
  width:18px;
  border-radius:20px;
  background:rgba(255,255,255,0.9);
}

/* CONCERNS */
.cs-concerns{
  padding:15px 0px;
  margin-bottom: 5vh;
}

.cs-track{
  display:flex;
  gap:30px;
  overflow-x:auto;
  padding:0 10vw;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
}

.cs-card{
  min-width:280px;
  height:460px;
  border-radius:16px;
  overflow:hidden;
  scroll-snap-align:center;
  transition:0.4s;
  position:relative;
  transform:scale(0.9);
  opacity:0.5;
  cursor: pointer;
}

.cs-card.active{
  transform:scale(1);
  opacity:1;
}

.cs-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s;
  filter:grayscale(20%);
}

.cs-card:hover img{
  transform:scale(1.08);
  filter:grayscale(10%);
}

.cs-card-cta{
  display:block;
  margin-top:10px;
  font-size:12px;
  color:rgba(255,255,255,0.6);
  transition:0.25s;
}

.cs-card:hover .cs-card-cta{
  color:white;
  transform:translateX(4px);
}

/* TEXT OVERLAY */
.cs-card-content{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  width:100%;
  padding:20px;
  background:linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

.cs-card h2{
  font-family:"DM Serif Display";
}

/* OVERLAY */
.cs-overlay{
  position:fixed;
  inset:0;
  background:#0d0d0f;
  transform:translateX(100%);
  transition:0.5s;
  z-index:100;
  overflow-y:auto;
}

.cs-overlay.active{
  transform:translateX(0);
}

/* HEADER INSIDE OVERLAY */
.cs-overlay-header{
  display:flex;
  align-items:center;
  gap:15px;
  padding:25px 30px 10px;
  margin-top: 8vh;
}

.cs-back-btn{
  font-size:22px;
  cursor:pointer;
  opacity:0.8;
  transition:0.2s;
}

.cs-back-btn:hover{
  transform:translateX(-2px);
  opacity:1;
}

.cs-overlay-title{
  font-family:"DM Serif Display";
  font-size:2rem;
}

/* DETAIL GRID */
.cs-detail{
  padding:20px 40px 60px;
  max-width:900px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:20px;
}

/* TREATMENT CARD */
.cs-treatment-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  height:280px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

.cs-treatment-card:hover{
  transform:translateY(-4px);
}

.cs-treatment-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.6);
  transition:0.5s;
}

.cs-treatment-card:hover img{
  transform:scale(1.05);
  filter:brightness(0.75);
}

.cs-treatment-info{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:16px;
  background:linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.cs-treatment-info h2{
  font-family:"DM Serif Display";
  font-size:1.3rem;
}

.cs-treatment-info p{
  font-size:13px;
  color:rgba(255,255,255,0.65);
  margin-top:4px;
}

.cs-price{
  margin-top:8px;
  color:#aaa;
  font-size:13px;
}

/* BUTTON */
.cs-btn{
  margin-top:10px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,0.3);
  display:inline-block;
  cursor:pointer;
  border-radius:8px;
  font-size:13px;
  transition:0.3s;
  color: #fff;    
  text-decoration: none;    
}

.cs-btn:hover{
  background:white;
  color:black;
}


/* CTA */
.cs-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  gap: 1rem;

  margin: 1rem auto 0;
  padding: 2rem 0 0;
}

.cs-cta p {
  font-weight: 300;
  font-size: 0.875rem;
  color: #8c8880;
  margin: 0;
}

.cs-cta__btn {
  display: inline-block;
  padding: 0.8em 2em;
  border: 1px solid #3d3d3d;
  color: #f0ece4;

  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;

  border-radius: 2px;
  transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-cta__btn:hover,
.cs-cta__btn:focus-visible {
  background-color: #f0ece4;
  border-color: #f0ece4;
  color: #0d0d0d;
  outline: none;
}

/* MOBILE */
@media (max-width:768px){
  .cs-hero h1{font-size:2.2rem;}

  .cs-dots{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-bottom:3vh;
  }
}

/* DESKTOP GRID */
@media (min-width:1024px){
  .cs-track{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    overflow:visible;
    padding:0 10vw;
    scroll-snap-type:none;
  }

  .cs-card{
    transform:scale(1);
    opacity:1;
  }
  
}





/*#endregion Concerns*/



/*#region Carousel Track*/
 .carousel {
    overflow: hidden;
    white-space: nowrap;
    background: #fff;
    padding: 20px 0;
  }

  .carousel-track {
    display: inline-flex;
    animation: scroll 60s linear infinite;
  }

  .carousel img {
    height: 15vh;
    margin: 0 2vw;
    object-fit: contain;
  }

  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
/*#endregion Carousel Track*/




/*#region Navbar*/
/*#endregion Navbar*/
