/* ====== Variables & base ====== */
:root {
  --black: #000;
  --white: #FFFFFF;
  --tan: rgb(236, 221, 189);
  --nav-gray: #f3f1f2;
  --gold: #cfa15a;
  --lightgold: #ffdca6;
  --orange: #fb8f60;
  --lightblack: #333333;
  --max-width: 1200px;
  --stack-width: 220px;
  --gap: 18px;
  --card-height: 360px;
  --transition-speed: 2300ms;
  --overlay-dark: rgba(0, 0, 0, 0.58);
  --accent: #fff;
  --rounded: 6px;
  --shadow: 0 20px 30px rgba(0, 0, 0, 0.15);

}

* {
  box-sizing: border-box
}

body {
  font-family: "Georgia", sans-serif;
  margin: 0;
  color: #0A0A0A;
  background: #fff
}

/* ====== Header layout ====== */
.site-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 22px 0 6px;

}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  max-width: var(--max-width);
  padding: 50px;
}

/* Reusable stacked group */
.stack-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: var(--stack-width);
}

.stack-left {
  align-items: flex-start
}

.stack-right {
  align-items: flex-end
}

/* Buttons (DRY) */
.stack-btn {
  background: var(--gold);
  color: var(--white);
  border: 0;
  padding: 12px 14px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .6px;
  width: 100%;
  cursor: pointer;
  border-radius: 5px;
}


.stack-btn:hover {
  opacity: .85;
  color: white;
  border: 0;
  padding: 12px 14px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .6px;
  width: 100%;
  cursor: pointer;
  border-radius: 5px;
}

.stack-phone {
  background: transparent;
  color: var(--black);
  border: 0;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 13px;
  width: 100%;
  text-align: left;
}

/* Center block */
.center-block {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* Logo: text logo by default (replace with img if available) */
.logo-text {
  font-family: "Great Vibes", cursive;
  font-size: 64px;
  color: var(--gold);
  margin: 0;
  line-height: 0.9;
}

.logo-sub {
  font-size: 15px;
  color: var(--gold);
  margin-top: -6px;
  font-weight: 600;
}

.sitelogo img {
  height: 150px;
}


/* Ribbon (folded look) */
.ribbon {
  margin-top: 12px;
  width: 320px;
  background: linear-gradient(#c06868, #ee5959);
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  color: #fff;
  padding: 12px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ribbon:before,
.ribbon:after {
  content: "";
  position: absolute;
  top: -6px;
  width: 36px;
  height: 22px;
  background: linear-gradient(#c06868, #ee5959);
  border-radius: 0 0 8px 8px;
}

.ribbon:before {
  left: -18px;
  transform: rotate(-10deg)
}

.ribbon:after {
  right: -18px;
  transform: rotate(10deg)
}

.ribbon-text {
  font-weight: 600;
  font-size: 14px
}

.ribbon-price {
  font-size: 13px;
  margin-top: 2px;
  opacity: 0.95
}

/* Social icons */
.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px
}

.social-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
}

.social-icon:hover {
  opacity: .85;
  color: white;
  border-radius: 50%;
  text-decoration: none;

}

/* ====== Nav bar ====== */
.main-nav {
  background: var(--nav-gray);
  margin-top: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03)
}

.nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--max-width)
}

.nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0
}

.nav-list :hover {
  opacity: .8;
}

.nav-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
}

.nav-list li.active a {
  background: var(--tan);
  color: #000
}

/* Mobile: collapse nav, stack header pieces */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer
}

.hamburger {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #333;
  margin-left: 8px;
  position: relative;
  vertical-align: middle
}

.hamburger::after,
.hamburger::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #333
}

.hamburger::before {
  top: -5px
}

.hamburger::after {
  top: 5px
}

/* ====== Responsiveness ====== */
@media (max-width: 992px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px
  }

  .stack-group {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap
  }

  .stack-left,
  .stack-right {
    align-items: center
  }

  .stack-phone {
    display: none
  }

  /* hide phone on small */
  .ribbon {
    width: 260px
  }
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 50px
  }

  .main-nav {
    padding: 8px 0
  }

  .nav-inner {
    flex-direction: column;
    gap: 10px
  }

  .nav-toggle {
    display: inline-block
  }

  .nav-list {
    flex-direction: column;
    gap: 8px;
    display: none;
    width: 100%
  }

  .nav-list.show {
    display: flex
  }

  .sitelogo img {
    height: 110px;
  }
}


/* Basic reset for the slider block */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}


/* Slide sizing: full-bleed hero. Adjust height as needed */
.hero-slider .slides {
  position: relative;
  height: 79vh;
  min-height: 520px;
  max-height: 900px;
}

@media (max-width:900px) {
  .hero-slider .slides {
    height: 62vh;
    min-height: 420px
  }
}

@media (max-width:480px) {
  .hero-slider .slides {
    height: 56vh;
    min-height: 320px
  }
}

.hero-slider .slide {
  z-index: 0;
}

.hero-slider .slide.active {
  z-index: 1;
}


/* Each slide sits in the same stack and crossfades */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 900ms ease, transform 900ms ease;
  display: block;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Background image */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  filter: contrast(0.98) saturate(0.95);
  transform: scale(1.03);
}


/* Darker overlay for better text visibility */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.80);
  /* Increased darkness */
  pointer-events: none;
}


/* Content wrapper (centred) */
.slide-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 18px;
  color: #fff;
}

/* Title & description */
.slide-title {
  font-family: "Georgia", sans-serif;
  /* you can change to your preferred font */
  font-size: 60px;
  line-height: 1.04;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease 180ms, transform 700ms cubic-bezier(.2, .9, .3, 1) 180ms;
}

.slide-subtitle {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 450;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease 300ms, transform 700ms cubic-bezier(.2, .9, .3, 1) 300ms;
}

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



.slide-desc {
  max-width: 920px;
  margin: 0 0 18px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease 320ms, transform 700ms cubic-bezier(.2, .9, .3, 1) 320ms;
}

.slide-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--gold);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease 480ms, transform 700ms cubic-bezier(.2, .9, .3, 1) 480ms;
}

/* When slide becomes active, animate text upwards (fade up) */
.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .slide-desc,
.slide.active .slide-btn {
  opacity: 1;
  transform: translateY(0px);
}


/* Controls (prev/next) */
.control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: background 150ms;
}

.control:hover {
  background: rgba(0, 0, 0, 0.65)
}

.control.prev {
  left: 18px
}

.control.next {
  right: 18px
}

/* Indicators */
.indicators {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 12;
  display: flex;
  gap: 12px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.indicator.active {
  background: rgba(255, 255, 255, 0.95);
  border-color: transparent;
}

/* Responsive typography */
@media (max-width:900px) {
  .slide-title {
    font-size: 44px
  }

  .slide-subtitle {
    font-size: 24px
  }

  .slide-desc {
    font-size: 15px;
    padding: 0 24px
  }
}

@media (max-width:480px) {
  .slide-title {
    font-size: 28px;
    line-height: 1.06
  }

  .slide-subtitle {
    font-size: 18px
  }

  .slide-desc {
    font-size: 14px;
    padding: 0 18px
  }

  .control {
    width: 38px;
    height: 38px;
    font-size: 16px
  }
}



/* base */
* {
  box-sizing: border-box
}

body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin: 0;
  color: #111
}

/* container */
.cards-row {
  max-width: 1200px;
  margin: 0 auto;
}

/* card container & perspective */
.service-card {
  perspective: 1200px;
  -webkit-perspective: 1200px;
  cursor: pointer;
  width: 100%;
  height: var(--card-height);
  outline: none;
}

/* inner 3D wrapper */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform var(--transition-speed) cubic-bezier(.2, .9, .3, 1);
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
}

/* flip on hover, focus, or when JS adds is-flipped */
.service-card:hover .card-inner,
.service-card:focus .card-inner,
.service-card.is-flipped .card-inner {
  transform: rotateY(180deg);
}

/* face (front + back) common */
.card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-size: cover;
  background-position: center center;
  border-radius: var(--rounded);
  overflow: hidden;
}

/* ensure stacking order: front above back by default */
.card-front {
  z-index: 2;
  transform: rotateY(0deg);
}

.card-back {
  z-index: 1;
  transform: rotateY(180deg);
}

/* FRONT overlay (subtle) */
.card-front-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 00.752), rgba(0, 0, 0, 0.18));
  transition: background .35s ease;
  padding: 16px;
}

.service-card:hover .card-front-overlay,
.service-card.is-flipped .card-front-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35));
}

.card-title {
  color: var(--accent);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
}

/* BACK overlay: heavy dim + content */
.card-back-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: var(--accent);
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
}

/* back title uppercase, clear */
.card-back-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Ensure the face container does not capture pointer events;
   overlays and interactive children remain clickable. */
.card-face {
  pointer-events: none;
  /* face itself doesn't handle clicks */
}

/* Overlays need to receive pointer events so links/buttons inside them work */
.card-front-overlay,
.card-back-overlay {
  pointer-events: auto;
}

/* Make CTA visually above (prevent accidental stacking issues) */
.btn-cta {
  position: relative;
  z-index: 5;
}


/* service list */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
  opacity: 0.97;
}

/* CTA */
.btn-cta {
  display: inline-block;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 24px;
  font-weight: 700;
  transition: background .18s, color .18s;
}

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

/* subtle zoom to mimic depth */
.card-front,
.card-back {
  transition: transform .7s ease, filter .6s ease;
}

.service-card:hover .card-front,
.service-card.is-flipped .card-back {
  transform: scale(1.02);
}

/* responsive */
@media (max-width:992px) {
  :root {
    --card-height: 320px
  }

  .card-title {
    font-size: 28px
  }
}

@media (max-width:576px) {
  :root {
    --card-height: 260px
  }

  .card-title {
    font-size: 22px
  }

  .card-back-title {
    font-size: 16px
  }
}

/* ===========================
   Promo Section (Reusable)
   =========================== */

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

.promo-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 20px;
}

/* IMAGE */
.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

/* CONTENT */
.promo-content {
  color: #333;
}

.promo-title {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.2px;

}

.promo-title::after {
  content: none;
  /* or just remove the whole rule */
}

/* Only when you also add "has-line" */
.promo-title.has-line::after {
  content: "";
  display: block;
  height: 3.5px;
  background-color: var(--gold);
  width: 1in;
  margin-top: 18px;
}

.titleiscenter {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
  text-align: center;

}

.titleiscenter.has-line::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.5px;
  background-color: var(--gold);
  width: 1in;
  margin: 18px auto 0 auto;
}


.promo-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.promo-list {
  margin-bottom: 25px;
  padding-left: 20px;
  color: #333;
  font-size: 15px;
  font-weight: 600;
}

.promo-list li {
  margin-bottom: 8px;
}

/* CTA BUTTON */
.promo-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.6px;
  transition: opacity .2s ease, transform .2s ease;
}

.promo-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 992px) {
  .promo-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .promo-title {
    font-size: 32px;
  }

  .promo-image {
    order: -1;
    /* Image on top */
  }
}

@media (max-width: 480px) {
  .promo-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .promo-desc,
  .promo-list {
    font-size: 14px;
  }

  .promo-btn {
    padding: 12px 22px;
    font-size: 13px;
  }

  .promo-title::after {
    height: .8px;
    width: .5in;
    margin-top: 12.5px;
    margin: 18px auto 0 auto;
  }




}


/* NAV dropdown basics */
.nav-list {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-list a,
.nav-list .drop-toggle {
  color: #333;
  text-decoration: none;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  font-weight: 500;
  cursor: pointer;
}

/* Dropdown container */
.has-dropdown {
  position: relative;
}

/* Hidden dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 8px 6px;
  display: none;
  z-index: 40;
}

/* dropdown items */
.dropdown li a {
  display: block;
  padding: 8px 12px;
  color: #333;
  border-radius: 4px;
  white-space: nowrap;
}

.dropdown li a:hover,
.dropdown li a:focus {
  background: rgba(0, 0, 0, 0.04);
  outline: none;
}

/* show dropdown when parent has .open (controlled by JS) */
.has-dropdown.open>.dropdown {
  display: block;
}

/* small caret spacing */
.drop-toggle .caret {
  margin-left: 6px;
  font-size: 11px;
  opacity: 0.8;
}

/* mobile: collapse nav */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-list {
    flex-direction: column;
    display: none;
    gap: 0;
  }

  .nav-list.show {
    display: flex;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    padding-left: 18px;
    display: none;
  }

  .has-dropdown.open>.dropdown {
    display: block;
  }
}

/* Imports for Fonts (Playfair Display & Montserrat) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:wght@400;500&display=swap');

/* Note: Ensure FontAwesome is loaded in your project for icons to appear */

/* Main Section Wrapper (Replaces .container) */
.beauty-section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
  /* equivalent to py-5 */
  font-family: 'Montserrat', sans-serif;
  color: #333;
  box-sizing: border-box;
}

/* Reset for this section specifically to ensure isolation */
.beauty-section-wrapper * {
  box-sizing: border-box;
}

/* Layout Grid */
.beauty-flex-row {
  display: flex;
  flex-wrap: wrap;
  min-height: 600px;

}



/* --- Left Column Styles --- */
.beauty-left-col {
  flex: 1;
  flex-basis: 50%;
  position: relative;
  padding: 2rem 3rem 2rem 0;
  /* Updated Image: Beauty/Salon Context */
  /*        background-image: url('https://images.unsplash.com/photo-1560750588-73207b1ef5b8?q=80&w=2070&auto=format&fit=crop');  */
  background-size: cover;
  background-position: center;
  min-width: 300px;
}

/* White overlay fade effect */
.beauty-left-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Gradient overlay */
  background: linear-gradient(to right, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0.1) 100%);
  z-index: 1;
}

.beauty-left-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
}

/* Main Heading */
.beauty-left-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #222;
  /* The Gold Vertical Bar */
  border-left: 5px solid var(--gold);
  padding-left: 15px;
  line-height: 1.2;
  margin-top: 0;
}

.beauty-left-content p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
}

/* --- Right Column Styles --- */
.beauty-right-col {
  flex: 1;
  flex-basis: 45%;
  padding: 2rem 0 2rem 3rem;
  background-color: #fff;
  min-width: 300px;
}

.beauty-right-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: #333;
  margin-top: 0;
}

.beauty-features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.beauty-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.beauty-icon-box {
  min-width: 50px;
  text-align: center;
}

.beauty-icon-box i {
  font-size: 2rem;
  /* Thin line style with gold color */
  color: transparent;
  -webkit-text-stroke: 1px black;
}

/* Fallback if text-stroke isn't supported or for specific filled icons */
.beauty-icon-box i.solid-gold {
  color: black;
  -webkit-text-stroke: 0;
}

.beauty-feature-text h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-weight: 500;
  color: #333;
}

.beauty-feature-text p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .beauty-flex-row {
    flex-direction: column;
  }

  .beauty-left-col,
  .beauty-right-col {
    flex-basis: 100%;
    padding: 2rem;
  }

  .beauty-left-col::before {
    background: rgba(255, 255, 255, 0.92);
  }
}


.hero-section {
  position: relative;
  width: 100%;
  min-height: 550px;
  color: var(--primary-text-color);
  font-family: var(--primary-font);

  background-image:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.5) 45%,
      rgba(0, 0, 0, 0.1) 75%,
      transparent 100%),
    var(--hero-image);

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;

}


/*
 * 2. HERO CONTENT BLOCK
 * Constrains the text to the left side of the hero section.
 */
.hero-content {
  max-width: 650px;

  padding: 20px 5% 20px 10%;

  z-index: 2;

  color: white;
}

/*
 * 3. BREADCRUMBS STYLING
 * Small, capitalized, spaced text.
 */
.breadcrumbs {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: white;
}

.breadcrumbs a,
.breadcrumbs span {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
  /* Slight transparency for non-current links */
  margin: 0 5px;

}

.breadcrumbs .current-page {
  opacity: 1;
  font-weight: bold;
}

/* * 4. MAIN HEADING STYLING
 * Large, bold, white, and capitalized.
 */
.hero-content h1 {
  font-size: 2rem;
  /* Large font size */
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

/* * 5. LOCATION/SUBHEADING STYLING
 * Medium-sized, bold, contrasting background (simulated by the overlay).
 */
.location-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  /* In the original design, this text appears highlighted due to the contrast */
}

/*
 * 6. DESCRIPTION STYLING
 * Standard paragraph text.
 */
.description-text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

/* * 7. MEDIA QUERY for smaller screens
 */
@media (max-width: 768px) {
  .hero-section {
    min-height: 350px;
    background-image: linear-gradient(to top,
        rgba(0, 0, 0, 0.6) 0%,
        /* Darken the entire image on mobile */
        rgba(0, 0, 0, 0.2) 100%),
      var(--hero-image);
    opacity: 80;
  }

  .hero-content {
    padding: 20px 5%;
    text-align: center;
    max-width: none;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 1rem;
  }

  .hero-content p {
    font-size: .8rem;
  }

}

.hero-alt {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  display: none;
}


/* --- Root Variables (for easy theme changes) --- */
.salon-pricing-section {
  --primary-font: 'Arial', sans-serif;
  /* Or a more elegant sans-serif like 'Helvetica Neue' */
  --promo-bg-color: #8B4513;
  /* Earthy brown similar to image */
  --promo-text-color: #ffffff;
  --price-list-bg-color: #333333;
  /* Dark grey for the price list background */
  --price-list-text-color: #ffffff;
  --category-title-color: #ffffff;
  --service-item-color: #ffffff;
  --line-color: #777777;
  /* Lighter grey for separator lines */
  --main-bg-color: #f0f0f0;
  /* Off-white for the overall section background */
}

/* --- Section Container --- */
.salon-pricing-section {
  font-family: var(--primary-font);

  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.salon-pricing-container {
  display: flex;
  flex-wrap: wrap;
  /* Allows columns to wrap on smaller screens */
  max-width: 1200px;
  background-color: #ffffff;
  /* Inner white background for the whole content area */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  /* Slight roundness to the overall container */
  overflow: hidden;
  /* Ensures content doesn't spill out of rounded corners */
}

/* --- Left Column: Promotion --- */
.promo-column {
  flex: 1;
  /* Takes up equal space initially */
  min-width: 400px;
  /* Minimum width to prevent squishing */
  padding: 60px;
  background-color: #ffffff;
  /* White background as in the image */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Pushes title to top, discount to bottom */
  align-items: flex-start;
  gap: 40px;
  /* Space between title and discount area */
}

.relaxing-title {
  font-size: 3.5rem;
  /* Large font size for impact */
  font-weight: 700;
  color: #000000;
  line-height: 1.1;
  margin: 0;
}

.discount-area {
  display: flex;
  align-items: center;
  /* Vertically align discount box and description */
  gap: 20px;
  width: 100%;
  /* Ensure it takes full width of its container */
  margin-top: auto;
  /* Pushes this element to the bottom of the column */

}

.discount-box {
  background-color: var(--promo-bg-color);
  color: var(--promo-text-color);
  padding: 20px 30px;
  border-radius: 5px;
  text-align: center;
  flex-shrink: 0;
  /* Prevents it from shrinking too much */
}

.discount-text-small {
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  /* Tighter line spacing */
}

.discount-percentage {
  font-size: 3rem;
  /* Very large for emphasis */
  font-weight: 700;
  margin: 5px 0;
  line-height: 1;
}

.discount-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  /* Soft grey for description text */
  margin: 0;
  font-weight: 700;
}

/* --- Right Column: Service Price List --- */
.price-list-column {
  flex: 1;
  /* Takes up equal space initially */
  min-width: 400px;
  /* Minimum width to prevent squishing */
  background-color: var(--gold);
  padding: 60px;
  color: var(--price-list-text-color);
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* Space between categories */
}

.service-category {
  margin-bottom: 0;
  /* No bottom margin, gap handles spacing */
}

.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--category-title-color);
  margin-bottom: 25px;
  padding-bottom: 10px;
  /* Space for the underline */
  border-bottom: 1px solid var(--white);
  /* Underline for categories */
  line-height: 1.2;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  /* Aligns text baselines */
  margin-bottom: 15px;
  /* Space between individual service items */
}

.service-item:last-child {
  margin-bottom: 0;
  /* No bottom margin for the last item in a category */
}

.service-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--service-item-color);
  flex-grow: 1;
  /* Allows name to take up available space */
}

.service-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--service-item-color);
  flex-shrink: 0;
  /* Prevents price from shrinking */
  margin-left: 15px;
  /* Space between name and price */
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {

  .promo-column,
  .price-list-column {
    min-width: auto;
    /* Allow columns to shrink more */
    flex-basis: 100%;
    /* Stack columns vertically on smaller screens */
    padding: 40px;
    /* Reduce padding */
  }

  .salon-pricing-container {
    border-radius: 0;
    /* Remove rounded corners if it takes full width */
    box-shadow: none;
    /* Remove shadow if it takes full width */
  }

  .relaxing-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 600px) {
  .promo-column {
    padding: 0px;

  }

  .price-list-column {
    padding: 30px;
    margin-top: 30px;
  }
}


/* --- CTA Main Container --- */
.cta-full-width-container {
  width: 100%;
  padding: 0;
  /* Ensures it is truly full width */
  font-family: Arial, sans-serif;

}

.cta-wrapper {
  display: flex;
  /* Enables horizontal layout */

  margin: 0 auto;
  /* Optional: Small box shadow for overall lift */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Individual Location Cards --- */
.cta-location-card {
  flex: 1;
  /* Makes both cards equally share the width */
  padding: 40px;
  text-align: center;
  border-radius: 0;
  /* Remove corners for the full-width block effect */
  transition: transform 0.3s ease;
}

.cta-location-card:hover {
  transform: translateY(-2px);
  /* Subtle hover effect */
}

.cta-location-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
}

.cta-location-card p {
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* --- Theme Styling --- */

/* Dark Card (Location 1) */
.dark-theme {
  background-color: var(--gold);
  color: #ffffff;
}

.dark-theme p {
  color: var(--white);
}

/* Light Card (Location 2) */
.light-theme {
  background-color: #ffffff;
  color: #333333;
}

/* --- Button Styling --- */
.cta-button {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Dark Button (for light theme card) */
.dark-button {
  background-color: var(--gold);
  color: #ffffff;

}

.dark-button:hover {

  opacity: .8;
}

/* Light Button (for dark theme card) */
.light-button {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.light-button:hover {
  background-color: #ffffff;
  color: #333333;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .cta-wrapper {
    flex-direction: column;
    /* Stacks cards vertically on small screens */
    box-shadow: none;
    /* Remove shadow when full vertical stack */
  }

  .cta-location-card {
    padding: 30px 20px;
  }

  .dark-theme {
    /* Optional: Add a separator line between cards on mobile */
    border-bottom: 1px solid #444;
  }
}

/* --- Footer Main Layout --- */
.site-footer {
  background-color: #f9f9f9;
  /* Light grey background */
  color: #333333;
  font-family: 'Arial', sans-serif;
  /* Or 'Lato'/'Montserrat' if available */
  padding: 60px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  /* 5 Columns: Specific sizing to match image */
  /* Col 1 (Services), Col 2 (Logo), Col 3 (About), Col 4 (Info), Col 5 (Legal) */
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1fr;
  gap: 30px;

}

/* --- Typography & Headers --- */
.footer-heading {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  margin-top: 0;
  color: #000;
}

/* --- Links Styling --- */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #000000;
  /* Gold hover color */
  opacity: .8;
}

/* --- "Book Now" Button --- */
.book-now-btn {
  display: inline-block;
  background: var(--orange);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 25px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 20px;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.book-now-btn:hover {
  background-color: #333;
}

/* --- Logo Column (Simulating the Script Logo) --- */
.logo-col {
  display: flex;
  justify-content: center;
  /* Center the logo in its column */
  align-items: flex-start;
}




/* --- Contact Info & Icons --- */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #555;
}

.contact-list li :hover {

  opacity: .8;

}

.icon-gold {
  color: black;
  /* The Gold Icon Color */
  margin-right: 15px;
  margin-top: 5px;
  /* Align icon with first line of text */
  font-size: 16px;
}

/* --- Legal & Payment --- */
.copyright {
  margin-top: 20px;
  color: #777;
  font-size: 12px;
}

.payment-icons {
  margin-top: 15px;
  font-size: 24px;
  color: #333;
}

.payment-icons i {
  margin-right: 10px;
  transition: color 0.3s;
}

.payment-icons i:hover {
  opacity: .8;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
  .footer-container {
    /* Switch to 3 columns on tablet */
    grid-template-columns: 1fr 1fr 1fr;
  }

  .logo-col {
    grid-column: span 3;
    /* Make logo span full width on tablet */
    justify-content: flex-start;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    /* Switch to 1 column on mobile */
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 10px;
  }

  .logo-col {
    grid-column: span 1;
    order: -1;
    /* Moves logo to the very top on mobile */
    justify-content: center;
  }

  .footer-heading {
    font-size: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    display: inline-block;
    /* Underline only text width */
  }
}

/* ===============================
   Reveal Animations (Reusable)
   =============================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(.17, .67, .83, .67);
  will-change: opacity, transform;
}

/* When visible */
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Fade Up */
.fade-up {
  transform: translateY(40px);
}

.fade-up.visible {
  transform: translateY(0);
}

/* Fade Down */
.fade-down {
  transform: translateY(-40px);
}

.fade-down.visible {
  transform: translateY(0);
}

/* Slide Left */
.slide-left {
  transform: translateX(40px);
}

.slide-left.visible {
  transform: translateX(0);
}

/* Slide Right */
.slide-right {
  transform: translateX(-40px);
}

.slide-right.visible {
  transform: translateX(0);
}

/* Zoom In */
.zoom-in {
  transform: scale(0.85);
}

.zoom-in.visible {
  transform: scale(1);
}


/* ----------------------------------- */
/* Base Setup & Typography             */
/* ----------------------------------- */

.before-after-section {

  padding: 60px 0;
}

/* CONTAINER GRID SETUP */
.ba-container {

  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  /* create two equal columns */
  grid-template-columns: 1fr 1fr;
  /* gap between rows and columns */
  gap: 40px;
}

/* ----------------------------------- */
/* Top Row Styles (Text Boxes)         */
/* ----------------------------------- */

/* Top Left Box: Heading + Intro + Button */
.ba-text-left {
  grid-column: 1 / 2;

}



/* Top Right Box: Secondary Paragraph */
.ba-text-right {
  grid-column: 2 / 3;
  display: flex;
  align-items: center;
  /* Vertically center the text if desired */
}

/* Typography */
.ba-text-left h3 {

  font-size: 2.8rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 20px;
  margin-top: 0;
  line-height: 1.2;
}

.ba-text-left p,
.ba-text-right p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

/* Button Styling */
.ba-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 15px 35px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
}

.ba-button:hover {
  background-color: #333;
}

/* ----------------------------------- */
/* Bottom Row: Full Width Slider       */
/* ----------------------------------- */

.ba-image-container {
  /* Span across both columns (1 to end) */
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  padding: 5px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  width: 100%;
  box-sizing: border-box;
}


.ba-image-wrapper {
  position: relative;
  width: 100%;
  /* Adjusted from 100% to 56.25% (16:9 Aspect Ratio) 
           so the image isn't too tall in full-width mode */
  padding-top: 56.25%;
  height: 0;
  background-color: #eee;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchoring top helps faces stay visible if aspect ratio changes */
  object-position: top center;
}

/* The "After" image is the base image */
.ba-img-after {
  z-index: 1;
}

/* The "Before" image is clipped and positioned on top */
.ba-img-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  /* Initial split position */
  z-index: 2;
  mask-image: linear-gradient(to right, #000 100%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, #000 100%, transparent 100%);
}

/* Slider Handle */
.ba-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #fff;
  z-index: 3;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.ba-slider-handle::after {
  content: '\2194';
  /* Unicode arrow for visual cue */
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #fff;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* ----------------------------------- */
/* Responsive Adjustments              */
/* ----------------------------------- */
@media (max-width: 768px) {

  /* Before-After Container */
  .ba-container {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ba-text-left,
  .ba-text-right,
  .ba-image-container {
    grid-column: 1 / -1;
    width: 100%;
  }

  .ba-text-left h3 {
    font-size: 2rem;
  }

  .ba-image-wrapper {
    padding-top: 100%;
    width: 100%;
  }

  /* Promo Section */
  .promo-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  /* CTA Wrapper */
  .cta-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-location-card {
    padding: 30px 20px;
    width: 100%;
  }
}


/* Images – never exceed their container */
img,
.promo-image img,
.hero-section img,
.cta-location-card img,
.logo-img {
  max-width: 100%;
  height: auto;
  display: block;

}

/* Explicitly ensure ba-img retains full height for the slider to work */
.ba-img {
  height: 100%;
}

/* Prevent any stray overflow globally */
html,
body {
  overflow-x: hidden;
  box-sizing: border-box;
}

/* =================================== */
/* NEW: Brands We Carry Section Styles */
/* =================================== */
.brands-section {
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: #fff;
  /* White background for maximum logo visibility */
}

.brands-header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 30px;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--secondary-text);
}

.brands-grid {
  display: grid;
  /* Default: 5 columns on desktop */
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 20px;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-logo-container {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  /* Give a minimum height for visual stability */
}

.brand-logo-container img {
  /* Max width ensures the logo doesn't stretch too much, height auto maintains aspect ratio */
  max-width: 100%;
  max-height: 80px;
  /* Max height to keep logos from being too tall */
  height: auto;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.brand-logo-container img:hover {
  opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {

  /* Tablet: 4 columns */
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {

  /* Small Tablet: 3 columns */
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {

  /* Mobile: 2 columns */
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.map-responsive {
  overflow: hidden;
  /* 16:9 aspect ratio (height:width = 9/16 = 0.5625) */
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}