/*
  luxelips-ui.css
  Recreates the *layout* and feel of the referenced header + hero.
  Content/links/images remain project-owned.
*/

:root {
  /* Translucent tinted header so white nav text stays readable */
  --ll-header-bg: rgba(92, 38, 44, 0.38);
  --ll-header-bg-scrolled: rgba(25, 18, 18, 0.96);
  --ll-soft-gold-rgb: 192 174 162;
  --ll-header-border: rgba(255, 255, 255, 0.15);
  --ll-text: rgba(255, 255, 255, 0.92);
  --ll-text-muted: rgba(255, 255, 255, 0.78);
  --ll-btn-bg: rgba(0, 0, 0, 0.82);
  --ll-btn-bg-hover: rgba(0, 0, 0, 0.92);
  --ll-hero-tint: rgba(0, 0, 0, 0.22);
}

/* style-premium.css hides ALL icons on .homepage via !important.
   Re-enable icons only for the LuxeLips header + hero UI. */
body.homepage .navbar.ll-navbar i,
body.homepage .navbar.ll-navbar .fa,
body.homepage .navbar.ll-navbar .fas,
body.homepage .navbar.ll-navbar .far,
body.homepage .navbar.ll-navbar .fab,
body.homepage .navbar.ll-navbar .fal,
body.homepage .navbar.ll-navbar .fad,
body.homepage .hero.ll-hero .slider-nav i,
body.homepage .hero.ll-hero .slider-prev i,
body.homepage .hero.ll-hero .slider-next i {
  display: inline-block !important;
}

/* Ensure fixed header doesn't overlap pages that don't already pad. */
body.ll-has-lux-header {
  padding-top: 76px !important;
}

/* On the homepage, the header should sit on top of the hero (like the reference). */
body.homepage.ll-has-lux-header {
  padding-top: 0 !important;
}

/* =====================
   Header (site-wide)
   ===================== */
.navbar.ll-navbar {
  background: var(--ll-header-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ll-header-border);
  padding: 14px 0;
  box-shadow: none;
}

.navbar.ll-navbar.scrolled {
  background: var(--ll-header-bg-scrolled);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 0;
}

.navbar.ll-navbar .nav-container {
  max-width: 1320px;
}

.navbar.ll-navbar .nav-logo {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}

.navbar.ll-navbar .nav-logo .ll-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.navbar.ll-navbar .nav-logo .ll-logo-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  opacity: 1;
  text-transform: none;
}

.navbar.ll-navbar .nav-logo i {
  display: none;
}

.navbar.ll-navbar .nav-logo span {
  color: var(--ll-text);
}

.navbar.ll-navbar .nav-menu {
  gap: 26px;
}

.ll-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.ll-nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.navbar.ll-navbar .nav-link {
  color: var(--ll-text);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.navbar.ll-navbar .nav-link::after {
  display: none;
}

.navbar.ll-navbar .nav-link:hover,
.navbar.ll-navbar .nav-link.active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* Right side items */
.navbar.ll-navbar .nav-link.phone-number {
  color: var(--ll-text);
  font-weight: 600;
}

.navbar.ll-navbar .nav-link.book-now-btn {
  background: #b6482d;
  color: #fff;
  border-radius: 4px;
  padding: 10px 14px;
  box-shadow: none;
  text-transform: none;
}

.navbar.ll-navbar .nav-link.book-now-btn:hover {
  background: #a23e27;
  transform: none;
}

/* About section: 3D icon images (replaces FontAwesome <i> icons) */
.tech-icon-wrapper .tech-3d-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

/* About section: outline SVG icons (matches the requested line-art style) */
.tech-icon-wrapper .tech-line-icon {
  width: 56px;
  height: 56px;
  display: block;
  stroke-width: 1.6;
}

.ll-nav-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ll-icon-link {
  color: var(--ll-text);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.ll-icon-link:hover {
  color: #fff;
}

.ll-badge {
  position: absolute;
  top: 1px;
  right: 2px;
  background: #d83b2d;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  padding: 2px 5px;
  border-radius: 999px;
}

/* Dropdowns */
.ll-dropdown {
  position: relative;
}

.ll-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ll-dropdown-toggle i {
  font-size: 10px;
  opacity: 0.9;
}

.ll-dropdown {
  position: relative;
}

.ll-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: rgba(25, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px;
  z-index: 2000 !important;
}

.ll-nav-actions .ll-dropdown-menu {
  right: -50px;
  left: auto;
}


.ll-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.ll-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* =====================
   Hero (homepage)
   ===================== */
.hero.ll-hero {
  position: relative;
  height: 100vh;
  min-height: 540px;
  padding: 0;
  color: #fff;
  overflow: hidden;
}

/* Subtle overall tint for readability (not a text panel) */
.hero.ll-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ll-hero-tint);
  pointer-events: none;
  z-index: 1;
}

.hero.ll-hero .hero-slider {
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero.ll-hero .slide {
  height: 100%;
}

.hero.ll-hero .hero-gradient {
  display: none;
}

.hero.ll-hero .hero-content {
  max-width: 840px;
  text-align: center;
  padding: 0 18px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;

  /* Remove any existing "glass panel" styling from the premium theme */
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.hero.ll-hero .hero-badge,
.hero.ll-hero .hero-stats {
  display: none !important;
}

.hero.ll-hero .hero-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing: 0.2px;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero.ll-hero .hero-subtitle {
  max-width: 560px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.ll-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ll-btn-bg);
  color: rgba(255, 255, 255, 0.92);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 12px;
}

.ll-hero-cta:hover {
  background: var(--ll-btn-bg-hover);
  color: #fff;
}

.ll-hero-terms {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

/* Slider arrows like the reference */
.hero.ll-hero .slider-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  pointer-events: none;
  z-index: 6;
}

.hero.ll-hero .slider-prev,
.hero.ll-hero .slider-next {
  pointer-events: auto;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  opacity: 1;
}

.hero.ll-hero .ll-slider-arrow {
  display: inline-block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-1px);
}

.hero.ll-hero .slider-prev:hover,
.hero.ll-hero .slider-next:hover {
  background: rgba(0, 0, 0, 0.40);
}

.hero.ll-hero .slider-prev i,
.hero.ll-hero .slider-next i {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

.hero.ll-hero .slider-dots {
  bottom: 22px;
}

.hero.ll-hero .slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
}

.hero.ll-hero .slider-dot.active {
  background: rgba(255, 255, 255, 0.95);
}

/* =====================
   Areas We Treat
   ===================== */
.areas-treat-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(92, 38, 44, 0.06) 0%, rgba(255, 255, 255, 1) 48%, rgba(92, 38, 44, 0.04) 100%);
}

.areas-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 70px;
}

.areas-header h2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: 48px;
  color: #222;
  margin: 0 0 14px;
}

.areas-header h2 .italic {
  font-style: italic;
}

.areas-header p {
  margin: 0 auto;
  color: #5f5f5f;
  font-size: 16px;
  line-height: 1.75;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 84px;
  row-gap: 78px;
  max-width: 1320px;
  margin: 0 auto;
}

.areas-col {
  display: flex;
  flex-direction: column;
  gap: 78px;
}

.area-item {
  display: flex;
  align-items: flex-start;
  gap: 36px;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.area-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.area-img {
  width: 260px;
  flex: 0 0 260px;
}

.area-img img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.area-content h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: 30px;
  color: #2d2d2d;
  margin: 0 0 12px;
}

.area-content p {
  color: #6a6a6a;
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.area-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(182, 72, 45, 0.92);
  text-decoration: none;
  border: 1px solid rgba(182, 72, 45, 0.24);
  background: rgba(182, 72, 45, 0.08);
  padding: 10px 14px;
  border-radius: 999px;
}

.area-link:hover {
  color: rgba(182, 72, 45, 1);
  background: rgba(182, 72, 45, 0.12);
}

/* =====================
   What We Do
   ===================== */
.what-we-do-section {
  padding: 116px 0;
  background: #fff;
}

.what-we-do-header {
  text-align: center;
  margin: 0 auto 66px;
}

.what-we-do-header h2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: 50px;
  color: #222;
  margin: 0;
}

.what-we-do-header h2 .italic {
  font-style: italic;
}

.what-we-do-grid {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 44px;
  row-gap: 44px;
}

.what-we-do-card {
  text-align: center;
}

.what-we-do-illustration {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.what-we-do-illustration img {
  max-width: 680px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.what-we-do-card h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: 34px;
  color: #2d2d2d;
  margin: 0 0 16px;
  line-height: 1.2;
}

.what-we-do-card p {
  max-width: 420px;
  margin: 0 auto;
  color: #6a6a6a;
  font-size: 14px;
  line-height: 1.8;
}

/* =====================
   Treatment Highlights
   ===================== */
.ll-treatment-highlights {
  padding: 116px 0;
  background: linear-gradient(180deg, rgba(92, 38, 44, 0.04) 0%, rgba(255, 255, 255, 1) 60%, rgba(92, 38, 44, 0.03) 100%);
}

.ll-treatment-highlights-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 56px;
}

.ll-treatment-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(182, 72, 45, 0.92);
  border: 1px solid rgba(182, 72, 45, 0.22);
  background: rgba(182, 72, 45, 0.07);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.ll-treatment-highlights-header h2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: 50px;
  color: #222;
  margin: 0 0 14px;
}

.ll-treatment-highlights-header h2 .italic {
  font-style: italic;
}

.ll-treatment-highlights-header p {
  margin: 0 auto;
  color: #5f5f5f;
  font-size: 16px;
  line-height: 1.75;
}

.ll-treatment-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ll-treatment-card {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
  color: inherit;
}

.ll-treatment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.ll-treatment-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(182, 72, 45, 0.08);
  border: 1px solid rgba(182, 72, 45, 0.18);
  color: rgba(182, 72, 45, 0.95);
  margin-bottom: 18px;
}

.ll-treatment-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.ll-treatment-card:hover .ll-treatment-icon {
  box-shadow: 0 12px 28px rgba(182, 72, 45, 0.18);
  background: rgba(182, 72, 45, 0.10);
}

.ll-treatment-card h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: 26px;
  color: #2d2d2d;
  margin: 0 0 10px;
  line-height: 1.2;
}

.ll-treatment-card p {
  margin: 0 0 18px;
  color: #6a6a6a;
  font-size: 14px;
  line-height: 1.8;
}

.ll-treatment-cta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(182, 72, 45, 0.92);
  text-decoration: none;
  border: 1px solid rgba(182, 72, 45, 0.24);
  background: rgba(182, 72, 45, 0.08);
  padding: 10px 14px;
  border-radius: 999px;
}

.ll-treatment-card:hover .ll-treatment-cta {
  color: rgba(182, 72, 45, 1);
  background: rgba(182, 72, 45, 0.12);
}

@media (max-width: 980px) {
  .navbar.ll-navbar .nav-menu {
    gap: 14px;
  }

  .navbar.ll-navbar .nav-link.phone-number {
    display: none;
  }
}

@media (max-width: 768px) {
  body.ll-has-lux-header {
    padding-top: 70px;
  }

  .navbar.ll-navbar {
    padding: 12px 0;
  }

  .navbar.ll-navbar .nav-toggle {
    display: flex;
  }

  /* Reuse existing mobile menu behavior; just re-skin */
  .navbar.ll-navbar .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(25, 18, 18, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 14px 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    z-index: 1200;
  }

  .ll-nav-links,
  .ll-nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-left: 0;
  }

  .navbar.ll-navbar .nav-menu.active {
    display: flex;
  }

  .ll-dropdown-menu {
    position: static;
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0 0 6px 10px;
  }

  .ll-dropdown-menu a {
    padding: 8px 0;
    border-radius: 0;
  }

  .ll-nav-icons {
    order: 99;
    margin-top: 6px;
  }

  .hero.ll-hero {
    min-height: 100svh;
    height: 100svh;
  }

  /* Service Slider Mobile Nav */
  .ll-mobile-slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .mobile-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .mobile-slider-btn i {
    font-size: 16px !important;
    display: block !important;
  }

  /* Service cards size on mobile */
  .services-slider .service-card {
    flex: 0 0 240px !important;
    min-height: auto !important;
  }

  .service-image {
    height: 180px !important;
  }

  .service-name {
    font-size: 1.1rem !important;
    min-height: auto !important;
  }

  .service-content {
    padding: 16px !important;
  }

  /* Ensure slides fill the full hero height so images don't cut */
  .hero.ll-hero .hero-slider,
  .hero.ll-hero .slide,
  .hero.ll-hero .hero-background {
    height: 100%;
    width: 100%;
  }

  .hero.ll-hero .hero-image {
    background-size: cover;
    background-position: center top;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .areas-treat-section {
    padding: 72px 0;
  }

  .areas-header {
    margin-bottom: 46px;
  }

  .areas-header h2 {
    font-size: 32px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }

  .areas-col {
    gap: 44px;
  }

  .area-item {
    flex-direction: column;
    gap: 18px;
    padding: 18px;
  }

  .area-img,
  .area-img img {
    width: 100%;
    max-width: 340px;
    height: 240px;
  }

  .what-we-do-section {
    padding: 88px 0;
  }

  .what-we-do-header {
    margin-bottom: 40px;
  }

  .what-we-do-header h2 {
    font-size: 38px;
  }

  .what-we-do-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
    padding: 0 16px;
  }

  .what-we-do-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 24px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  }

  .what-we-do-illustration {
    height: 200px;
    margin-bottom: 16px;
  }

  .what-we-do-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .what-we-do-text-small {
    font-size: 13px !important;
    line-height: 1.5;
    color: #666;
    max-height: 4.5rem;
    /* limit to ~3 lines */
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ll-treatment-highlights {
    padding: 88px 0;
  }

  .ll-treatment-highlights-header {
    margin-bottom: 40px;
  }

  .ll-treatment-highlights-header h2 {
    font-size: 38px;
  }

  .ll-treatment-grid {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}

/* =====================
   Mobile header (matches provided screenshot)
   ===================== */
.ll-mobile-phone,
.ll-mobile-bar {
  display: none;
}

@media (max-width: 600px) {

  /* Two-row header needs extra body offset (non-homepage only) */
  body.ll-has-lux-header:not(.homepage) {
    padding-top: 108px !important;
  }

  .navbar.ll-navbar {
    background: rgba(25, 18, 18, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 10px 0 0;
  }

  .navbar.ll-navbar.scrolled {
    background: rgba(25, 18, 18, 0.97);
    padding: 10px 0 0;
  }

  .navbar.ll-navbar .nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center logo */
    height: 56px;
    padding: 0 14px;
    position: relative;
  }

  /* Hamburger on the Left */
  .navbar.ll-navbar .nav-toggle {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    order: -1;
  }

  .ll-mobile-phone {
    display: none !important;
    /* Hide the floating phone icon as it's now in the bar */
  }

  .navbar.ll-navbar .nav-logo .ll-logo-text {
    gap: 1px;
  }

  .navbar.ll-navbar .nav-logo .ll-logo-tagline {
    font-size: 10px;
    opacity: 1;
  }

  .navbar.ll-navbar .nav-logo span,
  .navbar.ll-navbar .nav-link {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: none;
  }

  .navbar.ll-navbar .nav-toggle {
    order: 0;
  }

  .navbar.ll-navbar .nav-toggle span {
    background: rgba(255, 255, 255, 0.92);
  }

  /* Hide desktop actions/links in the top row on mobile */
  .navbar.ll-navbar .nav-menu {
    top: 56px;
  }

  .navbar.ll-navbar .ll-nav-actions,
  .navbar.ll-navbar .ll-nav-links {
    display: none;
  }

  /* When hamburger opens the menu, show the items again */
  .navbar.ll-navbar .nav-menu.active .ll-nav-links,
  .navbar.ll-navbar .nav-menu.active .ll-nav-actions {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-left: 0;
  }

  /* Center phone icon in the header top row */
  .ll-mobile-phone {
    display: inline-flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
  }

  /* Second row icon bar */
  .ll-mobile-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.10);
  }

  .ll-mobile-bar-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
  }

  .ll-mobile-bar-link+.ll-mobile-bar-link {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
  }

  .ll-mobile-bar .ll-badge {
    top: 10px;
    right: calc(50% - 6px);
    transform: translateX(18px);
    background: rgba(25, 18, 18, 0.92);
  }
}

/* =====================
   Booking page polish
   ===================== */
body.booking-page {
  --primary: var(--soft-gold);
  --primary-dark: var(--gold-dark);
  --primary-light: var(--gold-light);
  --bg-accent: var(--gold-light);
}

body.booking-page .booking-container {
  padding-top: 24px;
}

@media (max-width: 600px) {
  body.booking-page .booking-container {
    padding-top: 18px;
  }
}

/* =====================
   Testimonials decoration
   ===================== */
.ll-rating-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 28px;
}

.ll-rating-stars {
  letter-spacing: 2px;
  color: var(--soft-gold);
  font-size: 18px;
  line-height: 1;
}

.ll-rating-text {
  color: var(--text-secondary);
  font-size: 14px;
}

.ll-rating-source {
  color: var(--text-primary);
}

.testimonial-stars {
  color: var(--soft-gold);
  letter-spacing: 2px;
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgb(var(--ll-soft-gold-rgb) / 0.16);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.17 6A4.17 4.17 0 0 1 11.33 10.17c0 2.3-1.42 4.33-3.33 5.16V18H4v-3.5c0-1.4.57-2.74 1.59-3.74A4.16 4.16 0 0 1 7.17 6Zm9 0A4.17 4.17 0 0 1 20.33 10.17c0 2.3-1.42 4.33-3.33 5.16V18h-4v-3.5c0-1.4.57-2.74 1.59-3.74A4.16 4.16 0 0 1 16.17 6Z'/%3E%3C/svg%3E") center / 26px 26px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.17 6A4.17 4.17 0 0 1 11.33 10.17c0 2.3-1.42 4.33-3.33 5.16V18H4v-3.5c0-1.4.57-2.74 1.59-3.74A4.16 4.16 0 0 1 7.17 6Zm9 0A4.17 4.17 0 0 1 20.33 10.17c0 2.3-1.42 4.33-3.33 5.16V18h-4v-3.5c0-1.4.57-2.74 1.59-3.74A4.16 4.16 0 0 1 16.17 6Z'/%3E%3C/svg%3E") center / 26px 26px no-repeat;
}

/* Book Now Modal */
.book-now-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.book-now-modal.active {
  display: flex;
}

.book-now-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.book-now-modal-content {
  position: relative;
  z-index: 10000;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.book-now-modal-header {
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.book-now-modal-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
}

.book-now-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--dark-grey);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.book-now-modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--black);
}

.book-now-modal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.book-now-option {
  display: block;
}

.book-now-option-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.book-now-option-link:hover {
  border-color: var(--soft-gold);
  background: rgba(192, 174, 162, 0.08);
  transform: translateX(4px);
}

.book-now-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(192, 174, 162, 0.15);
  border-radius: 8px;
  flex-shrink: 0;
  font-size: 24px;
  color: var(--soft-gold);
}

.book-now-option-content {
  flex: 1;
}

.book-now-option-content h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.book-now-option-content p {
  margin: 0;
  font-size: 13px;
  color: var(--dark-grey);
}

/* Adjust modal for mobile */
@media (max-width: 640px) {
  .book-now-modal-content {
    width: 95%;
    max-height: 70vh;
  }

  .book-now-modal-header {
    padding: 16px;
  }

  .book-now-modal-body {
    padding: 16px;
  }
}


@media (max-width: 1024px) {
  .areas-treat-section {
    padding: 80px 0;
  }

  .what-we-do-section {
    padding: 80px 0;
  }

  .what-we-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ll-treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}