

  html, body {
    margin: 0;
    padding: 0;
    font-family: "Quicksand", "Open Sans", sans-serif;
    color: #1f2933;
    background-color: var(--bsb-soft-bg);
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: "Crimson Pro", "Times New Roman", serif;
    letter-spacing: 0.05em;
  }

  p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
  }

  img {
    border-radius: 18px;
  }

  /* ================= NAVBAR ================= */
  
  /* =========================================
   FACIALS SUBMENU – STYLE
========================================= */

.navbar-nav .dropdown-menu {
  /* keep your existing styles; this is additive */
}

/* Second-level submenu container */
.dropdown-submenu {
  position: relative;
}

/* Facials parent link style */
.facials-parent-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 18px;
}

/* Tiny caret on the right for Facials */
.facials-caret {
  font-size: 10px;
  opacity: 0.7;
}

/* Hidden by default, opened only on click via JS */
.facials-submenu {
  display: none;
}

/* When .open is added via JS */
.dropdown-submenu.open > .facials-submenu {
  display: block;
}

/* Desktop / iPad styling */
@media (min-width: 768px) {
  .facials-submenu {
    margin-top: 6px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(204, 153, 0, 0.6);
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.85),
      0 0 24px rgba(253, 224, 141, 0.25);
    padding: 6px 0;
  }

  .facials-submenu > li > a {
    padding: 9px 18px;
    font-size: 14px;
    color: #e5e7eb;
    white-space: nowrap;
  }

  .facials-submenu > li > a:hover,
  .facials-submenu > li > a:focus {
    background: linear-gradient(
      90deg,
      rgba(253, 224, 141, 0.18),
      rgba(253, 224, 141, 0.35),
      rgba(253, 224, 141, 0.18)
    );
    color: #ffffff;
  }
}

/* Mobile: submenu just stacks inside the dropdown */
@media (max-width: 767px) {
  .facials-submenu {
    margin-top: 4px;
    padding-left: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .facials-submenu > li > a {
    padding: 8px 15px;
    font-size: 15px;
  }
}

  
  /* =========================================
   IPAD SERVICES SUBMENU – CENTERED DROPDOWN
========================================= */

@media (min-width: 768px) and (max-width: 1024px) {

  /* Ensure services parent anchors relative positioning */
  .navbar-nav > li.dropdown {
    position: relative;
  }

  /* Center the dropdown under SERVICES */
  .navbar-nav > li.dropdown > .dropdown-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    top: 100%;
    min-width: 240px;
    padding: 10px 0;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.8),
      0 0 25px rgba(253, 224, 141, 0.2);
    border: 1px solid rgba(253, 224, 141, 0.35);
    text-align: center;
  }

  /* Dropdown items */
  .navbar-nav > li.dropdown > .dropdown-menu > li > a {
    padding: 14px 22px;
    font-size: 16px;
    color: #f9fafb;
    letter-spacing: 0.04em;
  }

  /* Hover / active */
  .navbar-nav > li.dropdown > .dropdown-menu > li > a:hover,
  .navbar-nav > li.dropdown > .dropdown-menu > li > a:focus {
    background: linear-gradient(
      90deg,
      rgba(253, 224, 141, 0.15),
      rgba(253, 224, 141, 0.35),
      rgba(253, 224, 141, 0.15)
    );
    color: #fff;
  }

  /* Remove Bootstrap arrow spacing issues */
  .dropdown-menu > li > a {
    white-space: nowrap;
  }
}

  
 /* =========================================
   IPAD NAVBAR – CENTER LOGO, FIX BURGER
   (Portrait + Landscape)
========================================= */

@media (min-width: 768px) and (max-width: 1024px) {

  /* Treat iPad header as a flex bar */
  .navbar-header {
    float: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 64px;
  }

  /* Center the logo inside .phone-mobile block */
  .phone-mobile p {
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .phone-mobile img {
    height: 56px;
    width: auto;
    display: block;
  }

  /* Hide phone text on iPad so logo is visually centered focus */
  .phone-mobile p .glyphicon-phone-alt,
  .phone-mobile p br {
    display: none !important;
  }

  /* Hide the plain text phone number (keep only logo) */
  .phone-mobile p {
    font-size: 0;
  }

  .phone-mobile p a {
    font-size: 0; /* logo only */
  }

  /* Burger button on the right side, vertically centered */
  .navbar-toggle {
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }

  /* Collapse styling: behave like mobile */
  .navbar-collapse {
    border-top: 1px solid rgba(253, 224, 141, 0.3);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  }

  .navbar-collapse.collapse {
    display: none !important;
  }

  .navbar-collapse.collapse.in {
    display: block !important;
  }

  /* Menu items stack full width like mobile */
  .navbar-nav {
    float: none !important;
    margin: 0;
  }

  .navbar-nav > li {
    float: none;
  }

  .navbar-nav > li > a {
    padding: 14px 20px;
    text-align: center;
    font-size: 16px;
  }

  /* Right items (Hablamos Español) also stack nicely */
  .navbar-right {
    float: none !important;
  }

  .navbar-right > li {
    float: none;
  }

  .navbar-right > li > a {
    padding: 14px 20px;
    text-align: center;
  }

  /* iPad navbar height */
  .navbar.navbar-inverse {
    height: auto !important;
    min-height: 64px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  /* Adjust content offset for fixed nav */
  body {
    padding-top: 72px !important;
  }
}

  
/* =========================================
   ULTRA-SLIM DESKTOP NAVBAR (FINAL)
========================================= */

@media (min-width: 992px) {

  /* Navbar shell */
  .navbar.navbar-inverse {
    min-height: 48px !important;
    height: 48px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 48px !important;
  }

  /* Container inside navbar */
  .navbar > .container,
  .navbar > .container-fluid {
    height: 48px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Nav lists */
  .navbar-nav {
    height: 48px !important;
  }

  .navbar-nav > li {
    height: 48px !important;
  }

  /* Nav links */
  .navbar-nav > li > a {
    height: 48px !important;
    line-height: 48px !important;
    padding: 0 16px !important;
    font-size: 14.8px !important;
    letter-spacing: 0.06em;
    display: flex !important;
    align-items: center !important;
  }

  /* Right side items (phone + language) */
  .navbar-right > li > a {
    height: 48px !important;
    line-height: 48px !important;
    padding: 0 14px !important;
    font-size: 14.8px !important;
  }

  /* Remove any header vertical spacing */
  .navbar-header {
    height: 48px !important;
  }

  /* Kill brand spacing if still present */
  .navbar-brand {
    padding: 0 !important;
    height: 48px !important;
    line-height: 48px !important;
    margin: 0 !important;
  }
}

  /* =========================================
   NAVBAR – LOCK SIZE, NO COMPACT ON SCROLL
========================================= */

.navbar.navbar-inverse,
.navbar.navbar-inverse.affix,
.navbar.navbar-inverse.affix-top,
.navbar.navbar-inverse.affix-bottom {
  min-height: 72px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Desktop nav links – keep consistent height */
@media (min-width: 768px) {
  .navbar.navbar-inverse .navbar-nav > li > a {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    line-height: 1.4 !important;
    font-size: 16px !important;
  }

  /* Right side items (phone / Hablamos Español) */
  .navbar.navbar-inverse .navbar-nav.navbar-right > li > a {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    font-size: 16px !important;
  }
}

/* =========================================
   STICKY (FLOATING) NAVBAR – NO COMPACT
========================================= */

/* Navbar always fixed at top */
.navbar.navbar-inverse {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Ensure any affix class (if still present) does NOT change size */
.navbar.navbar-inverse.affix,
.navbar.navbar-inverse.affix-top,
.navbar.navbar-inverse.affix-bottom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Desktop nav item spacing */
@media (min-width: 768px) {
  .navbar.navbar-inverse .navbar-nav > li > a {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    line-height: 1.4 !important;
    font-size: 16px !important;
  }

  .navbar.navbar-inverse .navbar-nav.navbar-right > li > a {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    font-size: 16px !important;
  }
}

/* =========================================
   OFFSET BODY CONTENT FOR FIXED NAVBAR
========================================= */

@media (min-width: 768px) {
  body {
    padding-top: 80px;   /* adjust if you tweak navbar height */
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }
}

@media (min-width: 992px) {
  body {
    padding-top: 52px !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  body {
    padding-top: 72px;
  }
}


  .navbar {
    margin: 0;
    border-radius: 0;
    border: 0;
    font-size: 14px;
    z-index: 99999;
    padding: 6px 0;
    background: rgba(16, 18, 26, 0.95);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
  }

  .navbar-inverse {
    background-color: rgba(16, 18, 26, 0.95);
    border: none;
    color: #fff;
  }

  .navbar-inverse .navbar-nav > li > a {
    color: #f3f4f6;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 12px 16px;
  }

  .navbar-inverse .navbar-nav > li > a:focus,
  .navbar-inverse .navbar-nav > li > a:hover {
    color: var(--bsb-gold);
    background-color: transparent;
  }

  .navbar-inverse .navbar-nav > .active > a,
  .navbar-inverse .navbar-nav > .active > a:focus,
  .navbar-inverse .navbar-nav > .active > a:hover {
    background-color: transparent;
    color: var(--bsb-gold);
    border-bottom: 2px solid var(--bsb-gold);
  }

  .navbar-inverse .navbar-toggle {
    border-color: rgba(229, 231, 235, 0.4);
  }

  .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff;
  }

  .navbar-inverse .navbar-toggle:focus,
  .navbar-inverse .navbar-toggle:hover {
    background-color: rgba(156, 163, 175, 0.35);
  }

  .phone-mobile {
    color: #fff;
    font-size: 13px;
    display: inline-block;
  }

  .phone-mobile a {
    color: #fff;
  }

  .phone-mobile p {
    color: #fff;
    font-size: 13px;
    margin: 0;
  }

  .phone-mobile img {
    border-radius: 0;
  }
  
  
/* ============================================
   LUXURY PILL HOVER NAVIGATION
   Gold pill on hover + active
============================================ */

/* Slight glass / dark background */
.navbar-inverse {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  transition: all 0.3s ease;
}

/* Base menu links */
.navbar-inverse .navbar-nav > li > a {
  color: #f9fafb;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 10px 18px;
  margin: 10px 6px;
  border-radius: 999px;           /* pill shape */
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.28s ease-in-out;
}

/* Create pill background layer */
.navbar-inverse .navbar-nav > li > a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #cc9900, #e7c676);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.28s ease-in-out;
  z-index: -1;
}

/* Hover: gold pill + soft glow */
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #111827 !important;
  text-shadow: none;
}

.navbar-inverse .navbar-nav > li > a:hover::before,
.navbar-inverse .navbar-nav > li > a:focus::before {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

/* ACTIVE item: always gold pill */
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #111827 !important;
  background: transparent !important;
}

.navbar-inverse .navbar-nav > .active > a::before {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

  
  /* ==========================
   LUXURY DROPDOWN MENUS
========================== */

.navbar-inverse .navbar-nav .open .dropdown-menu {
  background: rgba(10, 10, 10, 0.97);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 6px 0;
  margin-top: 8px;
  min-width: 200px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  color: #e5e7eb;
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.22s ease-in-out;
}

/* Hover item inside dropdown */
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  background: linear-gradient(135deg, #cc9900, #e7c676);
  color: #111827;
}

/* So dropdown looks good on mobile too */
@media (max-width: 768px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu {
    background: #111827;
    border-radius: 0;
    border: none;
    box-shadow: none;
    margin-top: 0;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    padding-left: 30px;
  }
}

/* ==========================
   MOBILE: CENTER LOGO + PHONE
========================== */

@media (max-width: 768px) {
  .navbar-header {
    width: 100%;
    text-align: center;
  }
  .navbar-header .navbar-toggle {
    margin-right: 2px !important;   /* move left */
    transform: translateX(-6px);     /* fine-tune shift */
  }

  .phone-mobile {
    width: 100%;
  }

  .phone-mobile p {
    padding-left: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .phone-mobile img {
    margin-right: 4px;
  }
}

/* =====================================
   MOBILE NAVBAR: LEFT LOGO, CENTER PHONE,
   RIGHT BURGER MENU
===================================== */
@media (max-width: 768px) {

  /* Make navbar header a 3-column flex layout */
  .navbar-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px !important;
  }

  /* Logo stays left */
  .navbar-header .mobile-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
  }

  /* Center the phone number */
  .navbar-header .mobile-phone-center {
    flex: 1 1 auto;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.02em;
  }

  /* Hamburger stays right */
  .navbar-header .navbar-toggle {
    flex: 0 0 auto;
    margin-top: 0 !important;
  }

  /* Phone number link */
  .mobile-phone-center a {
    color: #fff;
    text-decoration: none;
  }
}



  /* ================= LOGO (DESKTOP) ================= */

.logo-desktop {
  position: absolute;
  top: 80px;
  left: 5%;
  height: 230px;
  width: 330px;
  z-index: 30;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.4));
}


  @media (max-width: 1024px) {
    .logo-desktop-no {
      display: none;
    }
  }

  .center-block {
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
  }
  
  /* Hide the below-carousel logo on desktop */
@media (min-width: 769px) {
  .ipadsideverdad {
    display: none !important;
  }
}

/* HIDE NAVBAR LOGO ON DESKTOP */
@media (min-width: 992px) {
  .navbar-header img,
  
  .navbar-brand {
    display: none !important;
  }
}

/* SHOW NAVBAR LOGO ON MOBILE ONLY */
@media (max-width: 991px) {
  .navbar-header img,
  .navbar-brand {
    display: inline-block !important;
  }
}


  /* ================= BUTTONS ================= */

  .btn {
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 12px 28px;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.28s ease;
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  }

  .btn-primary,
  .btn-info {
    background-color: var(--bsb-gold);
    border-color: var(--bsb-gold);
    color: var(--bsb-ink);
  }

  .btn-primary:hover,
  .btn-info:hover,
  .btn:hover {
    background-color: #b38c54;
    border-color: #b38c54;
    color: #050609;
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.25);
  }

  .btn-alert {
    margin-top: 16px;
    margin-bottom: 6px;
  }

 

  /* ================= SERVICES TABS ================= */

  /* =========================================
   SERVICES TOGGLE = MOBILE APP STYLE SWITCH
   FACIALS | BODY SCULPTING
========================================= */

.tab-toggle-container {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
}

/* Outer pill container */
.tab-toggle-container .nav.nav-pills {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 999px;
  background: #111827; /* dark track */
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

/* Each segment behaves like 1/2 of the switch */
.tab-toggle-container .nav.nav-pills > li {
  float: none;
  flex: 1 1 auto;
  display: flex;
}

/* Buttons inside the toggle */
.tab-toggle-container .nav.nav-pills > li > a {
  flex: 1 1 auto;
  text-align: center;
  border-radius: 999px !important;
  margin: 0;
  border: none;
  background: transparent;
  color: #e5e7eb !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: all 0.22s ease-in-out;
}

/* Hover – gentle, not too flashy */
.tab-toggle-container .nav.nav-pills > li > a:hover {
  background: rgba(249, 250, 251, 0.08);
  color: #f9fafb !important;
}

/* ACTIVE = selected segment of the toggle */
.tab-toggle-container .nav.nav-pills > li.active > a,
.tab-toggle-container .nav.nav-pills > li.active > a:focus,
.tab-toggle-container .nav.nav-pills > li.active > a:hover {
  background: #f9fafb !important;
  color: #111827 !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

/* Remove focus outline blinking on click */
.tab-toggle-container .nav.nav-pills > li > a:focus {
  outline: none;
}

/* Mobile: let toggle stretch a bit wider */
@media (max-width: 768px) {
  .tab-toggle-container .nav.nav-pills {
    width: 90%;
  }

  .tab-toggle-container .nav.nav-pills > li > a {
    font-size: 11px;
    padding: 9px 10px;
  }
}


/* ===============================
   BEAUTIFUL TOGGLE TABS (SERVICES)
   FACIALS | BODY SCULPTING
================================ */

.nav-pills > li > a {
  border-radius: 50px !important;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff !important;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  transition: all 0.25s ease-in-out;
  border: 1px solid rgba(255,255,255,0.18);
  margin: 6px;
}

/* Hover (no click sticking) */
.nav-pills > li > a:hover {
  background: linear-gradient(135deg, #cc9900, #e7c676) !important;
  color: #111 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

/* Active tab – TRUE active state */
.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
  background: linear-gradient(135deg, #cc9900, #e7c676) !important;
  color: #111 !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.28);
  transform: none !important;
}

/* Center tabs nicer */
.nav-pills {
  text-align: center;
}

.nav-pills > li {
  float: none;
  display: inline-block;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .nav-pills > li > a {
    font-size: 16px;
    padding: 10px 22px;
    width: auto;
    display: inline-block;
  }
}

/* =========================================
   DESKTOP VERSION – BIGGER PREMIUM TOGGLE
========================================= */
@media (min-width: 992px) {
  /* Bigger pill container */
  .tab-toggle-container .nav.nav-pills {
    padding: 6px;
    border-radius: 999px;
    width: auto;
    transform: scale(1.11); /* upscale the whole toggle */
  }

  /* Bigger toggle buttons */
  .tab-toggle-container .nav.nav-pills > li > a {
    font-size: 15px;
    padding: 14px 34px;
    letter-spacing: 0.18em;
  }
}



  /* ================= SERVICE CARDS ================= */

  /* =======================================================
   UPSCALE SPA SERVICE CARDS (FACIALS, MICRONEEDLING, ETC.)
/* =======================================================
   ULTRA-UPGRADE SPA SERVICE CARDS (Final Fixes)
======================================================= */

.service-card {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 55%),
    radial-gradient(circle at bottom right, rgba(240, 229, 210, 0.9), transparent 60%),
    linear-gradient(145deg, #fdfaf5, #f4eee6);
  border-radius: 28px;
  padding: 30px 26px 34px;
  margin: 0 auto 32px;
  max-width: 980px;
  border: 1px solid rgba(219, 206, 181, 0.9);
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  overflow: hidden;
}

/* Soft glow halo */
.service-card::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

/* Gold accent top bar */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8f6b29, #fde08d, #df9f28);
  z-index: 2;
}

/* Title */
.service-title {
  position: relative;
  text-align: center;
  color: #8e6b39;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
  margin-top: 4px;
  margin-bottom: 16px;
}

/* Divider under title */
.service-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, #c9a56b, transparent);
}

/* Updated image styling */
.service-card img {
  position: relative;
  border-radius: 22px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
  z-index: 3;
  object-fit: cover;
}

/* Paragraph text improvements */
.service-card p {
  position: relative;
  font-size: 16px;
  line-height: 1.85;
  color: #4b5563;
  text-align: left;
  padding: 0 6px;
  margin-bottom: 12px;
  z-index: 3;
}

/* Book button styling */
.service-card .btn {
  position: relative;
  max-width: 260px;
  margin: 20px auto 0;
  display: block;
  z-index: 3;
}

/* Desktop hover effects */
@media (min-width: 768px) {
  .service-card {
    padding: 36px 44px 40px;
    margin-bottom: 40px;
    transition: transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 32px 80px rgba(15, 23, 42, 0.30),
      0 0 0 1px rgba(255, 255, 255, 0.95) inset;
    border-color: rgba(222, 200, 161, 1);
  }

  .service-title {
    font-size: 24px;
  }

  .service-card p {
    font-size: 17px;
    line-height: 1.95;
    padding: 0 10px;
  }
}

/* Mobile fixes – prevent overflow, improve fonts */
@media (max-width: 767px) {

  .service-card {
    padding: 24px 18px 26px;
    border-radius: 24px;
    margin-bottom: 26px;
  }

  .service-title {
    font-size: 19px;
  }

  .service-card img {
    max-width: 100%;
    width: 100%;
    border-radius: 18px;
    margin-bottom: 18px;
  }

  .service-card p {
    font-size: 15.5px;
    line-height: 1.85;
    padding: 0 4px;
  }
}

/* Soft animated gold shimmer on hover */
@keyframes goldShimmer {
  0% {
    box-shadow:
      0 32px 80px rgba(15, 23, 42, 0.30),
      0 0 0 1px rgba(255, 255, 255, 0.95) inset;
  }
  50% {
    box-shadow:
      0 36px 90px rgba(15, 23, 42, 0.34),
      0 0 0 1px rgba(253, 224, 141, 0.9) inset;
  }
  100% {
    box-shadow:
      0 32px 80px rgba(15, 23, 42, 0.30),
      0 0 0 1px rgba(255, 255, 255, 0.95) inset;
  }
}

@media (min-width: 768px) {
  .service-card:hover {
    animation: goldShimmer 1.4s ease-in-out forwards;
  }
}

/* Signature badge for the first facial card (HydraFacial) */
#hydrafacial-in-las-vegas .service-card:first-of-type .service-title::before {
  content: "SIGNATURE FACIAL";
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111827;
  background: linear-gradient(135deg, #fde08d, #df9f28);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

#procell-in-las-vegas .service-card:first-of-type .service-title::before {
  content: "ADVANCED TREATMENT";
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111827;
  background: linear-gradient(135deg, #fde08d, #df9f28);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

#microneedling-in-las-vegas .service-card:first-of-type .service-title::before {
  content: "ADVANCED TREATMENT";
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111827;
  background: linear-gradient(135deg, #fde08d, #df9f28);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

#dermaplaning-in-las-vegas .service-card:first-of-type .service-title::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111827;
  background: linear-gradient(135deg, #fde08d, #df9f28);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

#chemical-peel-in-las-vegas .service-card:first-of-type .service-title::before {
  content: "SIGNATURE FACIAL";
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111827;
  background: linear-gradient(135deg, #fde08d, #df9f28);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

/* Make sure title stays below the badge nicely */
#facialinhenderson .service-card:first-of-type .service-title {
  margin-top: 18px;
}


  /* ================= TAGLINE ================= */

  .container.text-center.wow.fadeInUp h2 {
    font-size: 18px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #7b7f88 !important;
    margin-top: 34px;
    margin-bottom: 26px;
  }

  /* ================= FOOTER ================= */
/* ================================
   FOOTER – ROUND 3 REFINEMENTS
   More room for CONTACT + clean phone row
================================ */
/* 🪞 GLASSIFIED MAP FRAME */
footer .embed-responsive {
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(250, 250, 255, 0.16), transparent 70%);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(209, 213, 219, 0.32);
}

/* 🌙 GLOW + 💎 GLASS BUTTONS FOR SOCIAL ICONS */
footer .social .btn1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 8px 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 0, #ffffff, #d4d4d4 45%, #a5a5a5 100%);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.65),
    0 0 18px rgba(253, 224, 141, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px) saturate(130%);
  -webkit-backdrop-filter: blur(6px) saturate(130%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* 🟡 GOLD-ACCENTED SEPARATOR ABOVE LEGAL LINE */
footer > p[style] {
  border-top: none !important;
  position: relative;
  margin-top: 40px;
  padding-top: 16px;
  font-size: 13.5px !important;
  color: #d1d5db !important;
}

/* ✨ FOOTER LOGO EMBOSS EFFECT ON BRAND LINE */
footer > p[style] {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.9),
    0 0 14px rgba(15, 23, 42, 0.9);
  letter-spacing: 0.06em;
}

/* Slight emphasis on the site name by bolding all <a> inside that line */
footer > p[style] a:first-of-type {
  font-weight: 700;
  color: #fde08d;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.9),
    0 0 18px rgba(253, 224, 141, 0.9);
}


footer > p[style]::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 15%;
  right: 15%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8f6b29, #fde08d, #df9f28);
  opacity: 0.75;
}


footer .social .btn1 img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
}

footer .social .btn1:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.85),
    0 0 22px rgba(253, 224, 141, 0.7);
  border-color: rgba(253, 224, 141, 0.85);
}


/* Give the middle column more room */
footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* FOOTER TEXT – BRIGHTER & MORE READABLE */
footer p {
  color: #f3f4f6;
  font-size: 15.5px;
  line-height: 1.85;
}

footer .contact {
  flex: 2;              /* wider middle column */
  min-width: 340px;     /* more space so phone doesn't wrap */
}

footer .space {
  flex: 1;
  min-width: 260px;
}

/* Phone row: keep icon + number on same line */
footer .contact p {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}

footer .contact p .glyphicon-phone {
  flex: 0 0 auto;
  font-size: 16px;
  position: relative;
  top: 1px;
}

footer .contact p strong {
  flex: 0 0 auto;
  white-space: nowrap;   /* keep (702) 626-0277 on one line */
  font-size: 18px;
  letter-spacing: 0.03em;
}

/* Only center-align on mobile, but keep middle column full width */
@media (max-width: 767px) {
  footer .row {
    display: block;
  }

  footer .contact,
  footer .space {
    min-width: 100%;
    text-align: center;
    margin-bottom: 24px;
  }

  footer .contact p {
    justify-content: center;
  }
}

/* =========================================
   ADD-ON 4: FROSTED WAVE OVERLAY
========================================= */

footer .glass-wave {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 180px;
  background: radial-gradient(
      circle at 50% 0,
      rgba(255, 255, 255, 0.22),
      rgba(255, 255, 255, 0.04) 70%
    );
  filter: blur(30px);
  opacity: 0.55;
  z-index: 1;
}

/* Add inside footer HTML */


/* =========================================
   ADD-ON 3: TOP GOLD SHIMMER ANIMATION
========================================= */

footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #8f6b29, #fde08d, #df9f28);
  animation: goldPulse 6s ease-in-out infinite;
  opacity: 0.70;
}

@keyframes goldPulse {
  0% { opacity: 0.55; }
  50% { opacity: 1; }
  100% { opacity: 0.55; }
}


/* =========================================
   LUXURY FROSTED GLASS FOOTER EFFECT
========================================= */

footer {
  background: rgba(10, 12, 18, 0.45);       /* semi-transparent dark glass */
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 20px 48px;
  color: #ececec;
  position: relative;
  overflow: hidden;
}

/* Soft ambient top glow (gold accent) */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8f6b29, #fde08d, #df9f28);
  opacity: 0.7;
  z-index: 5;
}

/* Interior glass frame lines */
footer::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.06),
              inset 0 0 40px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 1;
}

/* Make sure the content stays above the frosted frame */
footer .row {
  position: relative;
  z-index: 3;
}

/* =========================================
   ADD-ON 1: GLASS REFLECTION HIGHLIGHT
========================================= */

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 40%,
    rgba(255, 255, 255, 0) 75%
  );
  pointer-events: none;
  z-index: 2;
  transform: translateY(-20px);
}




/* =========================================
   FOOTER ADDRESS – LUXURY LOCATION BADGE
========================================= */

/* Wrap visual effect around the location text */
footer .contact p {
  position: relative;
  padding: 6px 10px 6px 18px;
}

/* Glass pill effect for address lines */
footer .contact p:not(:has(.glyphicon)) {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 12px;
  border-left: 2px solid #fde08d; /* gold accent */
  margin: 6px 0;
  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Subtle gold location dot accent */
footer .contact p:not(:has(.glyphicon))::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #fde08d;
  opacity: 0.85;
}

/* City line slightly emphasized */
footer .contact p:last-of-type {
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Mobile balance */
@media (max-width: 767px) {
  footer .contact p:not(:has(.glyphicon)) {
    text-align: center;
    padding-left: 12px;
  }

  footer .contact p:not(:has(.glyphicon))::before {
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; /* cleaner on mobile */
  }
}
/* =========================================
   FOOTER GLASS CARDS – ADDRESS / PHONE / HOURS
========================================= */

.footer-card {
  display: block;
  text-align: left;
  margin: 8px auto 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(253, 224, 141, 0.35);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.7),
    inset 0 0 18px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  color: #f9fafb;
  text-decoration: none;
  transition: transform 0.25s ease,
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}

.footer-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.85),
    0 0 22px rgba(253, 224, 141, 0.5);
  border-color: rgba(253, 224, 141, 0.9);
  text-decoration: none;
}

/* Title row inside card */
.footer-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #fefce8;
}

.footer-card-title .glyphicon {
  font-size: 15px;
  color: #fde68a;
}

/* Body text */
.footer-card-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: #e5e7eb;
}

.footer-card-body em {
  font-style: normal;
  color: #fde68a;
  font-weight: 500;
}

/* Center cards in middle / right columns */
.col-sm-4.space.text-center .footer-card {
  text-align: center;
}

/* Mobile tweaks */
@media (max-width: 767px) {
  .footer-card {
    text-align: center;
    padding: 12px 12px;
  }

  .footer-card-title {
    justify-content: center;
    font-size: 13px;
  }

  .footer-card-body {
    font-size: 14px;
  }
}

/* =========================================
   SOCIALIZE SECTION – REFINED
========================================= */

footer .social h3.section-title {
  margin-top: 10px;
}

/* Social container */
footer .social {
  margin-top: 18px;
  padding-top: 14px;
  position: relative;
}

/* Subtle gold separator above icons */
footer .social::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fde08d, transparent);
  opacity: 0.8;
}

/* Glass pedestal for icons */
footer .social-icons-wrap {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
}

/* If you can’t add wrapper div, target existing */
footer .social > a.btn1 {
  position: relative;
}

/* Glass glow pulse on hover */
footer .social .btn1::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 224, 141, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

footer .social .btn1:hover::after {
  opacity: 1;
}

/* =========================================
   FOOTER BOTTOM LINKS – PREMIUM BAR
========================================= */

footer .footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  position: relative;
  text-align: center;
}

/* Gold line separator */
footer .footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #8f6b29, #fde08d, #df9f28);
  opacity: 0.65;
}

/* Legal text */
footer .footer-bottom p,
footer > p[style] {
  font-size: 13.5px !important;
  color: #e5e7eb !important;
  letter-spacing: 0.05em;
}

/* Links inside legal line */
footer > p[style] a {
  color: #fde08d !important;
  font-weight: 500;
  position: relative;
  padding: 0 2px;
  transition: color 0.25s ease;
}

/* Underline animation on hover */
footer > p[style] a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: linear-gradient(90deg, #fde08d, #fff, #fde08d);
  opacity: 0;
  transition: opacity 0.25s ease;
}

footer > p[style] a:hover::after {
  opacity: 1;
}

footer > p[style] a:hover {
  color: #fff !important;
}

@media (max-width: 767px) {
  footer > p[style] {
    font-size: 12.5px !important;
    line-height: 1.6;
  }
}

footer > p[style] a[href*="3eyonddigitalmedia"] {
  opacity: 0.75;
}


  /* DROPDOWN SCROLL IF NEEDED */

  .scrollbar {
    height: auto;
    max-height: 180px;
    overflow-x: hidden;
  }

  body.wow.fadeIn.slower {
    background-color: var(--bsb-soft-bg);
  }

  /* MOBILE TWEAKS */

  @media (max-width: 768px) {
    .navbar .phone-mobile p {
      font-size: 12px;
    }
    .navbar .phone-mobile img {
      height: 42px;
      width: 75px;
    }
    .service-card {
      border-radius: 20px;
    }
  }
  
  /* === MOBILE STICKY BOOK BAR === */

.mobile-book-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 14px;
  background: rgba(16, 18, 26, 0.98);
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  display: none; /* hidden on desktop by default */
  z-index: 999999;
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.6);
}

.mobile-book-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-book-bar-text {
  color: #e5e7eb;
  font-size: 12px;
  line-height: 1.4;
}

.mobile-book-bar-text strong {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-book-bar-actions {
  display: flex;
  gap: 6px;
}

.mobile-book-bar .btn {
  margin: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.mobile-book-bar .btn-call {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.mobile-book-bar .btn-call:hover {
  background: rgba(31, 41, 55, 0.9);
  color: #f9fafb;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px; /* space so content isn't hidden behind the bar */
  }
  .mobile-book-bar {
    display: block;
  }
}



/* =========================================
   BOOKING SECTION – LUX SPA STYLE
========================================= */

.booking-section {
  padding: 60px 20px 70px;
  background: radial-gradient(circle at top, #101828, #020617);
  position: relative;
  overflow: hidden;
}

/* Soft background glow accents */
.booking-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(253, 224, 141, 0.22), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.booking-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.9), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.booking-title {
  font-family: 'Roboto', sans-serif;
  font-size: 26px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fde68a;
  margin-bottom: 8px;
}

.booking-subtitle {
  font-size: 15.5px;
  color: #e5e7eb;
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

/* Glass card container for the Square widget */
.booking-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(253, 224, 141, 0.45);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.85),
    0 0 45px rgba(253, 224, 141, 0.25);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  position: relative;
  overflow: hidden;
}

/* Inner highlight */
.booking-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

/* Make sure the widget inside fits nicely */
.booking-card iframe,
.booking-card div,
.booking-card form {
  max-width: 100%;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 767px) {
  .booking-section {
    padding: 40px 16px 50px;
  }
  .booking-title {
    font-size: 20px;
    letter-spacing: 0.14em;
  }
  .booking-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .booking-card {
    padding: 18px 14px;
    border-radius: 18px;
  }
}


/* =========================================
   ABOUT SECTION – LUX SPA BRAND STORY
========================================= */

.about-section {
  padding: 70px 20px 80px;
  background: radial-gradient(circle at top, #0b1020, #020617);
  position: relative;
  overflow: hidden;
}

/* Soft gold + indigo glows */
.about-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(253, 224, 141, 0.22), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.9), transparent 70%);
  opacity: 0.85;
  pointer-events: none;
}

/* Headline + subtitle */
.about-title {
  font-family: 'Roboto', sans-serif;
  font-size: 26px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fde68a;
  margin-bottom: 8px;
}

.about-subtitle {
  font-size: 15.5px;
  color: #e5e7eb;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* Glass card container */
.about-card {
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(253, 224, 141, 0.45);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.85),
    0 0 48px rgba(253, 224, 141, 0.25);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}

/* Inner border highlight */
.about-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

/* Logo area */
.about-logo-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.about-logo {
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 10px 35px rgba(0, 0, 0, 0.9));
}

/* =========================================
   ABOUT – PARAGRAPH READABILITY UPGRADE
========================================= */

.about-text {
  font-size: 16px;
  line-height: 2;
  color: #f1f5f9; /* lighter + clearer */
}

.about-text p {
  margin-bottom: 18px;
  color: #f1f5f9;
}

.about-text strong {
  color: #fde68a;
  font-weight: 600;
}

/* Mobile refinement */
@media (max-width: 767px) {
  .about-text {
    font-size: 15px;
    line-height: 1.9;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .about-section {
    padding: 50px 16px 60px;
  }

  .about-card {
    padding: 22px 18px;
  }

  .about-title {
    font-size: 21px;
    letter-spacing: 0.16em;
  }

  .about-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .about-logo-wrap {
    margin-bottom: 18px;
  }

  .about-text {
    font-size: 14.5px;
  }
}

@media (max-width: 767px) {
  .about-card {
    text-align: center;
  }

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

/* =========================================
   ABOUT – VERTICAL GOLD DIVIDER (DESKTOP)
========================================= */

@media (min-width: 992px) {
  .about-card .row {
    position: relative;
  }

  .about-card .row::after {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 41.5%;
    width: 1px;
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(253, 224, 141, 0.9),
      transparent
    );
    opacity: 0.9;
    pointer-events: none;
  }
}

/* =========================================
   ABOUT – EST. LAS VEGAS TAG
========================================= */

.about-est-tag {
  display: inline-block;
  margin: 4px auto 14px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(253, 224, 141, 0.12);
  border: 1px solid rgba(253, 224, 141, 0.55);
  color: #fde68a;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}


/* =========================================
   HYDRAFACIAL – LUXURY STYLING
========================================= */

.hydrafacial-section {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #faf8f2 100%
  );
}

.hydrafacial-title {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: #cc9900;
  margin-bottom: 30px;
}

.hydrafacial-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.hydrafacial-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  max-width: 1000px;
  margin: 0 auto 20px;
}

/* Subtitles */
.hydrafacial-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  color: #333;
  margin-top: 50px;
  margin-bottom: 15px;
  border-left: 4px solid #cc9900;
  padding-left: 14px;
}

/* Lists */
.hydrafacial-list {
  max-width: 900px;
  margin: 15px auto 30px;
  padding-left: 20px;
}

.hydrafacial-list li {
  font-size: 16.5px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
  position: relative;
}

/* CTA */
.hydrafacial-cta {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #444;
  margin-top: 40px;
}

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

@media (max-width: 991px) {
  .hydrafacial-title {
    font-size: 30px;
  }

  .hydrafacial-subtitle {
    font-size: 22px;
  }

  .hydrafacial-section p,
  .hydrafacial-list li {
    font-size: 16.5px;
  }
}

@media (max-width: 600px) {
  .hydrafacial-section {
    padding: 60px 15px;
  }

  .hydrafacial-title {
    font-size: 26px;
  }

  .hydrafacial-intro {
    font-size: 16.5px;
  }

  .hydrafacial-subtitle {
    font-size: 20px;
  }

  .hydrafacial-section p,
  .hydrafacial-list li {
    font-size: 16px;
  }
}

/* =========================================
   PROCELL MICROCHANNELING – LUXURY STYLING
========================================= */

.microchannel-section {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #faf8f2 0%,
    #f5f3ea 100%
  );
}

.microchannel-title {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 34px;
  letter-spacing: 0.04em;
  color: #cc9900;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.microchannel-intro {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.microchannel-section p {
  font-size: 17px;
  line-height: 1.85;
  color: #666;
  max-width: 1000px;
  margin: 0 auto 20px;
}

/* Subtitles */
.microchannel-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  color: #333;
  margin-top: 50px;
  margin-bottom: 14px;
  border-left: 4px solid #cc9900;
  padding-left: 14px;
}

/* Lists */
.microchannel-list {
  max-width: 900px;
  margin: 15px auto 32px;
  padding-left: 20px;
}

.microchannel-list li {
  font-size: 16.5px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

/* CTA */
.microchannel-cta {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #444;
  margin-top: 40px;
}

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

@media (max-width: 991px) {
  .microchannel-title {
    font-size: 30px;
  }

  .microchannel-subtitle {
    font-size: 22px;
  }

  .microchannel-section p,
  .microchannel-list li {
    font-size: 16.5px;
  }
}

@media (max-width: 600px) {
  .microchannel-section {
    padding: 60px 15px;
  }

  .microchannel-title {
    font-size: 26px;
  }

  .microchannel-intro {
    font-size: 16.5px;
  }

  .microchannel-subtitle {
    font-size: 20px;
  }

  .microchannel-section p,
  .microchannel-list li {
    font-size: 16px;
  }
}

/* =========================================
   MICRONEEDLING – LUXURY STYLING
========================================= */

.microneedling-section {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #f5f3ea 0%,
    #f9f7f0 100%
  );
}

.microneedling-title {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 34px;
  letter-spacing: 0.04em;
  color: #cc9900;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.microneedling-intro {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.microneedling-section p {
  font-size: 17px;
  line-height: 1.85;
  color: #666;
  max-width: 1000px;
  margin: 0 auto 20px;
}

/* Subtitles */
.microneedling-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  color: #333;
  margin-top: 50px;
  margin-bottom: 14px;
  border-left: 4px solid #cc9900;
  padding-left: 14px;
}

/* Lists */
.microneedling-list {
  max-width: 900px;
  margin: 15px auto 32px;
  padding-left: 20px;
}

.microneedling-list li {
  font-size: 16.5px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

/* CTA */
.microneedling-cta {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #444;
  margin-top: 40px;
}

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

@media (max-width: 991px) {
  .microneedling-title {
    font-size: 30px;
  }

  .microneedling-subtitle {
    font-size: 22px;
  }

  .microneedling-section p,
  .microneedling-list li {
    font-size: 16.5px;
  }
}

@media (max-width: 600px) {
  .microneedling-section {
    padding: 60px 15px;
  }

  .microneedling-title {
    font-size: 26px;
  }

  .microneedling-intro {
    font-size: 16.5px;
  }

  .microneedling-subtitle {
    font-size: 20px;
  }

  .microneedling-section p,
  .microneedling-list li {
    font-size: 16px;
  }
}

/* =========================================
   DERMAPLANING – LUXURY STYLING
========================================= */

.dermaplaning-section {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #fdfbf6 0%,
    #f8f4ec 100%
  );
}

.dermaplaning-title {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 34px;
  letter-spacing: 0.04em;
  color: #cc9900;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.dermaplaning-intro {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.dermaplaning-section p {
  font-size: 17px;
  line-height: 1.85;
  color: #666;
  max-width: 1000px;
  margin: 0 auto 20px;
}

/* Subtitles */
.dermaplaning-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  color: #333;
  margin-top: 50px;
  margin-bottom: 14px;
  border-left: 4px solid #cc9900;
  padding-left: 14px;
}

/* Lists */
.dermaplaning-list {
  max-width: 900px;
  margin: 15px auto 32px;
  padding-left: 20px;
}

.dermaplaning-list li {
  font-size: 16.5px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

/* CTA */
.dermaplaning-cta {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #444;
  margin-top: 40px;
}

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

@media (max-width: 991px) {
  .dermaplaning-title {
    font-size: 30px;
  }

  .dermaplaning-subtitle {
    font-size: 22px;
  }

  .dermaplaning-section p,
  .dermaplaning-list li {
    font-size: 16.5px;
  }
}

@media (max-width: 600px) {
  .dermaplaning-section {
    padding: 60px 15px;
  }

  .dermaplaning-title {
    font-size: 26px;
  }

  .dermaplaning-intro {
    font-size: 16.5px;
  }

  .dermaplaning-subtitle {
    font-size: 20px;
  }

  .dermaplaning-section p,
  .dermaplaning-list li {
    font-size: 16px;
  }
}

/* =========================================
   CHEMICAL PEELS – LUXURY STYLING
========================================= */

.peels-section {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #f9f7f0 0%,
    #f4efe4 100%
  );
}

.peels-title {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 34px;
  letter-spacing: 0.04em;
  color: #cc9900;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.peels-intro {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.peels-section p {
  font-size: 17px;
  line-height: 1.85;
  color: #666;
  max-width: 1000px;
  margin: 0 auto 20px;
}

/* Subtitles */
.peels-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  color: #333;
  margin-top: 50px;
  margin-bottom: 14px;
  border-left: 4px solid #cc9900;
  padding-left: 14px;
}

/* Lists */
.peels-list {
  max-width: 900px;
  margin: 15px auto 32px;
  padding-left: 20px;
}

.peels-list li {
  font-size: 16.5px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

/* CTA */
.peels-cta {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #444;
  margin-top: 40px;
}

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

@media (max-width: 991px) {
  .peels-title {
    font-size: 30px;
  }

  .peels-subtitle {
    font-size: 22px;
  }

  .peels-section p,
  .peels-list li {
    font-size: 16.5px;
  }
}

@media (max-width: 600px) {
  .peels-section {
    padding: 60px 15px;
  }

  .peels-title {
    font-size: 26px;
  }

  .peels-intro {
    font-size: 16.5px;
  }

  .peels-subtitle {
    font-size: 20px;
  }

  .peels-section p,
  .peels-list li {
    font-size: 16px;
  }
}

