/*
Theme Name: Beauty Crown Ladies Saloon
Theme URI: https://beautycrown.ae
Author: Beauty Crown Dev
Author URI: https://beautycrown.ae
Description: A premium luxury salon theme for Beauty Crown Ladies Saloon — pink & gold design, Elementor-compatible, fully responsive.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: beautycrown
Tags: beauty, salon, one-page, custom-header, custom-menu, featured-images, full-width-template
*/

/* ============================================================
   DESIGN SYSTEM — PINK & GOLD
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  /* Primary (Vibrant Pink) */
  --plum: #EB5A86;
  --plum-2: #F1759C;
  --plum-3: #D94874;
  --plum-dark: #C63260;

  /* Lighter pink backgrounds */
  --pink-bg: #F27C9F;
  --pink-light: #F79DB8;

  /* Gold Accent (Warm Bright Gold) */
  --gold: #e1b366;
  --gold-soft: #f2ce8a;
  --gold-dark: #cc9742;
  --gold-grad: linear-gradient(105deg, #e7c27d 0%, #f7e2af 50%, #d8a044 100%);

  /* Neutrals (Soft Warm Blush) */
  --ivory: #FFF8F7;
  --ivory-2: #FFE8E4;
  --white: #ffffff;

  /* Text */
  --ink: #2B1A20;
  --muted: rgba(255, 255, 255, 0.65);

  /* Borders & Shadows */
  --line: rgba(255, 255, 255, .15);
  --shadow-lg: 0 30px 70px -20px rgba(180, 50, 90, .3);
  --shadow-sm: 0 12px 30px -12px rgba(180, 50, 90, .2);

  /* Radius */
  --r: 18px;

  /* Font Families */
  --font-primary: 'Jost', Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--plum);
  color: var(--white);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

/* ============================================================
   ACCESSIBILITY & INTERACTIVITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  padding: 14px 22px;
  background: var(--gold);
  color: #2b2008;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  width: 90%;
  margin: 0 auto;
  max-width: 1240px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  text-transform: none;
  font-style: normal;
  letter-spacing: -0.015em;
}

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

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold-soft);
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ar {
  font-family: 'Amiri', serif;
  font-style: italic;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: .35s cubic-bezier(.2, .8, .2, 1);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn svg {
  width: 14px;
  height: 14px;
}

.btn-gold {
  background: var(--gold-grad);
  color: #2b2008;
  box-shadow: 0 10px 24px -8px rgba(201, 160, 80, .55);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  40% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(201, 160, 80, .7);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-dark {
  background: var(--plum-dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background: var(--gold);
  color: #2b2008;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-pink {
  background: var(--pink-accent);
  color: #fff;
}

.btn-pink:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

/* ============================================================
   GLOBAL COMPONENTS & DIVIDERS
   ============================================================ */
.crown-divider {
  display: flex;
  justify-content: center;
  margin: 0 0 18px;
}

.crown-divider svg {
  width: 60px;
  height: auto;
  opacity: .95;
}

/* ============================================================
   ANNOUNCEMENT BAR (Mobile-First)
   ============================================================ */
.announce {
  background: var(--plum);
  color: rgba(255, 255, 255, .75);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 0;
  min-height: 28px;
  display: flex;
  align-items: center;
}

.announce-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.announce-socials {
  display: none;
}

.announce-socials a {
  color: rgba(255, 248, 245, .65);
  transition: .3s;
  display: flex;
}

.announce-socials a:hover {
  color: var(--gold);
}

.announce b {
  color: var(--gold-soft);
  font-weight: 500;
}

/* ============================================================
   HEADER & NAVIGATION (Mobile-First)
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--plum);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all .3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  transition: height 0.3s ease;
}

header.scrolled {
  box-shadow: 0 8px 25px -15px rgba(45, 10, 30, .2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -4px rgba(45, 10, 30, .3);
  transition: all 0.3s ease;
}

.logo-text {
  line-height: 1.1;
}

.logo-text .display {
  font-family: var(--font-serif);
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  font-size: 16px;
  letter-spacing: .04em;
  color: var(--white);
  transition: all 0.3s ease;
}

.logo-text small {
  font-size: 7px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Desktop Menu (Hidden by default on mobile) */
.menu {
  display: none;
}

.nav-phone {
  display: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 100;
  position: relative;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: .3s ease;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION (Mobile-First)
   ============================================================ */
.hero {
  position: relative;
  background: var(--plum);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 100% 0%, rgba(255, 255, 255, .15), transparent 60%);
}

.hero .eyebrow {
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 6px rgba(45, 10, 30, 0.2);
  justify-content: center;
}

.hero .eyebrow::before {
  background: var(--white);
}

.hero-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 40px 0 50px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(22px, 4.5vw, 30px);
  letter-spacing: -0.015em;
  margin: 12px 0 6px;
  text-shadow: 0 2px 10px rgba(45, 10, 30, 0.25);
}

.hero h1 em {
  font-style: italic;
}

.hero .display .gold-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--gold-soft);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero .ar-line {
  font-size: clamp(18px, 4vw, 22px);
  color: var(--gold-soft);
  opacity: .9;
  margin-bottom: 12px;
}

.slogan-line {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 18px;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.hero p.lead {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--white);
  max-width: 500px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.hero-actions .btn {
  justify-content: center;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-trust .t {
  position: relative;
  min-width: 100px;
  text-align: center;
}

.hero-trust .t svg {
  display: inline-block;
}

.hero-trust .t b {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-trust .t>span {
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
  display: block;
}

/* Hero Visual & Placement */
.hero-visual {
  position: relative;
  max-width: 280px;
  width: 100%;
}

.hero-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-lg);
  padding: 4px;
  background: var(--plum);
}

.hero-frame img {
  border-radius: 196px 196px 16px 16px;
}

/* Full Hero Section Slider Styles */
.hero {
  position: relative;
  background: var(--plum);
  color: var(--white);
  overflow: hidden;
  height: auto;
  min-height: 550px;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
}

.hero-section-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  z-index: 1;
}

.hero-section-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Service Features Tags */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-features .feat-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(225, 179, 102, 0.25);
  color: var(--gold-soft);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Slider Controls */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(43, 26, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 18px;
  padding: 0;
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--gold);
  color: #2b2008;
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.h-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.h-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 10px var(--gold);
}

/* Vertical Slider Dots (Desktop) */
.hero-dots-vertical {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 15;
}

.v-dot-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.v-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.v-dot:hover,
.v-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--gold);
}

/* Tooltips */
.v-dot-tooltip {
  position: absolute;
  right: 24px;
  background: rgba(43, 26, 32, 0.95);
  border: 1px solid rgba(225, 179, 102, 0.4);
  color: var(--gold-soft);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
  font-family: var(--font-primary);
}

.v-dot-wrapper:hover .v-dot-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive visibility of dots */
@media (min-width: 992px) {
  .hero-dots {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .hero-dots-vertical {
    display: none !important;
  }
  .hero-dots {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-prev,
  .hero-next {
    display: none;
  }
  .hero-features {
    justify-content: center;
  }
}

.hero-card {
  position: absolute;
  bottom: 30px;
  right: -20px;
  z-index: 10;
  background: var(--white);
  color: var(--ink);
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-card .stars {
  color: var(--gold);
  letter-spacing: 1.5px;
  font-size: 12px;
}

.hero-card b {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
}

.hero-card small {
  display: block;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #999;
}

.hero-badge {
  position: absolute;
  right: -8px;
  top: 15px;
  width: 76px;
  height: 76px;
  animation: spin 18s linear infinite;
  z-index: 12;
}

/* ============================================================
   SUBPAGE HERO STYLING (Mobile-First)
   ============================================================ */
.hero-subpage {
  padding: 0;
}

.hero-subpage .wrap {
  padding: 48px 0 36px;
  position: relative;
  text-align: center;
}

.hero-subpage h1 {
  font-size: clamp(22px, 4.5vw, 30px);
  margin: 10px 0;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee {
  background: var(--gold-grad);
  color: #2b2008;
  overflow: hidden;
  padding: 10px 0;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marq 28s linear infinite;
  width: max-content;
}

.marquee span {
  display: flex;
  align-items: center;
  gap: 40px;
}

@keyframes marq {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 20px));
  }
}

/* ============================================================
   SECTIONS & TITLE HEADINGS
   ============================================================ */
section {
  padding: 54px 0;
}

.sec-head {
  max-width: 600px;
  margin: 0 auto 36px;
  text-align: center;
}

.sec-head h2 {
  font-size: clamp(24px, 5.5vw, 34px);
  margin: 10px 0;
}

.sec-head p {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  font-size: 14.5px;
}

/* ============================================================
   ROYAL BACKGROUND GLOW ANIMATION
   ============================================================ */
.royal-bg-wrap {
  position: relative;
  overflow: hidden;
}

.royal-bg-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  min-width: 600px;
  min-height: 600px;
  background: radial-gradient(circle, rgba(225, 179, 102, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: float-glow 20s ease-in-out infinite alternate;
}

.royal-bg-glow.left {
  top: -10%;
  left: -20%;
}

.royal-bg-glow.right {
  bottom: -10%;
  right: -20%;
  animation-delay: -10s;
}

@keyframes float-glow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, 12%) scale(1.1); }
  100% { transform: translate(-4%, -8%) scale(0.95); }
}

.royal-bg-wrap > .wrap {
  position: relative;
  z-index: 2;
}

/* ============================================================
   SERVICES SECTION (Mobile-First)
   ============================================================ */
.services {
  background: var(--plum);
  padding: 80px 0;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.svc {
  position: relative;
  background: var(--plum-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: .35s ease;
  display: flex;
  flex-direction: column;
}

.svc-top {
  padding: 30px 20px 20px;
  text-align: center;
  flex-grow: 1;
}

.svc-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 16px;
}

.svc-top h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}

.svc-top p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.svc-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  margin: 0 10px 10px 10px;
  aspect-ratio: 3/4;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.svc:hover {
  transform: translateY(-5px);
  background: var(--plum-3);
  border-color: rgba(225, 179, 102, 0.3);
  box-shadow: 0 15px 35px -10px rgba(180, 50, 90, 0.4);
}

.svc:hover .svc-img img {
  transform: scale(1.05);
}

.svc-hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(43, 26, 32, 0.95) 0%, rgba(43, 26, 32, 0.4) 60%, transparent 100%);
  padding: 24px 15px 15px;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 5;
}

.svc:hover .svc-hover-overlay {
  opacity: 1;
  transform: translateY(0);
}

.svc-hover-overlay span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-soft);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ============================================================
   CALL TO ACTION BAND (Mobile-First)
   ============================================================ */
.home-svc {
  background: var(--plum);
  color: var(--white);
  border-radius: 20px;
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 50% 50%, rgba(201, 160, 80, .18), transparent 60%);
  pointer-events: none;
}

.home-svc h3 {
  font-family: var(--font-primary);
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.015em;
  font-size: clamp(20px, 4.5vw, 26px);
  position: relative;
  text-shadow: 0 1px 4px rgba(45, 10, 30, 0.2);
}

.home-svc p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  position: relative;
  max-width: 520px;
  font-size: 14px;
  text-shadow: 0 1px 3px rgba(45, 10, 30, 0.15);
  margin-top: 8px;
}

.home-svc .btn {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

/* ============================================================
   ABOUT SECTION (Mobile-First)
   ============================================================ */
.about {
  background: var(--plum);
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.about-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.about-frame {
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-frame img {
  transition: transform .8s ease;
}

.about-frame:hover img {
  transform: scale(1.04);
}

.about-frame.second {
  position: absolute;
  width: 42%;
  right: 0;
  bottom: -20px;
  aspect-ratio: 1;
  border: 5px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.about-exp {
  position: absolute;
  left: -8px;
  top: 24px;
  background: var(--gold-grad);
  color: #2b2008;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.about-exp b {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 26px;
  display: block;
  line-height: 1;
}

.about-exp span {
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-copy {
  width: 100%;
}

.about-copy h2 {
  font-size: clamp(22px, 5vw, 32px);
  margin: 10px 0 16px;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-bottom: 14px;
  font-size: 14.5px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0 28px;
}

.about-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}

.about-points svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   EXCLUSIVE OFFERS (Mobile-First)
   ============================================================ */
.offers {
  background: var(--plum);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.offers::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 15% 10%, rgba(201, 160, 80, .12), transparent 60%),
    radial-gradient(400px 300px at 90% 90%, rgba(232, 131, 158, .1), transparent 60%);
}

.offers .sec-head p,
.branches .sec-head p,
.branches-section .sec-head p {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.offer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.offer {
  background: var(--plum-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r);
  padding: 30px 24px;
  position: relative;
  transition: .35s ease;
}

.offer .pill {
  display: inline-block;
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(225, 179, 102, .3);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 16px;
}

.offer h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 19px;
  margin-bottom: 8px;
}

.offer p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
  font-weight: 300;
  margin-bottom: 18px;
}

.offer .price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.offer .price-row b {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  color: var(--gold-soft);
}

.offer .price-row s {
  color: rgba(255, 255, 255, .35);
  font-size: 13.5px;
}

.offer.featured {
  background: linear-gradient(165deg, #501A35, #3D1228);
  border-color: var(--gold);
}

.offer .ribbon {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--gold-grad);
  color: #2b2008;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ============================================================
   POWERED BY BRANDS (Mobile-First)
   ============================================================ */
.brands {
  padding: 48px 0;
  background: transparent;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  align-items: center;
  margin-top: 6px;
}

.brand {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(14px, 3vw, 18px);
  letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  transition: color 0.3s;
}

.brand:hover {
  color: var(--gold-soft);
}

/* ============================================================
   TESTIMONIALS (Mobile-First)
   ============================================================ */
.reviews {
  background: transparent;
}

.rev-stage {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.rev-card {
  background: var(--plum-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: none;
}

.rev-card.active {
  display: block;
  animation: fadeUp .5s ease;
}

.rev-card .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.rev-card blockquote {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 20px;
  text-wrap: pretty;
}

.rev-card .who b {
  display: block;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.rev-card .who span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.rev-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.rev-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: .3s;
}

.rev-dot.active {
  background: var(--gold);
}

.rev-google {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   GALLERY SECTION (Mobile-First)
   ============================================================ */
.gallery .g-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 110px;
  gap: 10px;
}

.g-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.g-item img {
  transition: transform .6s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(123, 63, 85, .0);
  transition: .3s;
}

.g-item:hover img {
  transform: scale(1.06);
}

.g-item:hover::after {
  background: rgba(123, 63, 85, .3);
}

/* Mobile grid shapes overrides */
.g-item:nth-child(n) {
  grid-column: span 1;
  grid-row: span 1;
}

.g-item:nth-child(1),
.g-item:nth-child(4) {
  grid-column: span 2;
  grid-row: span 1;
}

.g-item .ph-label {
  font-size: 8px;
  padding: 4px 8px;
}

.ig-cta {
  text-align: center;
  margin-top: 28px;
}

/* ============================================================
   BRANCHES SECTION (Mobile-First)
   ============================================================ */
.branches,
.branches-section {
  background: var(--plum);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 54px 0;
}

.branches::before,
.branches-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 85% 15%, rgba(201, 160, 80, .1), transparent 60%);
  pointer-events: none;
}

.branch-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.branch {
  background: var(--plum-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r);
  padding: 28px 22px;
  transition: .35s ease;
}

.branch .num {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .15em;
  margin-bottom: 10px;
  display: block;
}

.branch h2,
.branch h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}

.branch p {
  font-size: 13.5px;
  color: var(--white);
  opacity: 0.8;
  font-weight: 400;
  margin-bottom: 16px;
}

.branch .b-meta {
  display: grid;
  gap: 8px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 14px;
}

.branch .b-meta div {
  display: flex;
  gap: 8px;
  align-items: center;
}

.branch .b-meta svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.branch .b-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}

.branch .b-actions a {
  width: 100%;
  text-align: center;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.branch .b-actions a:hover {
  background: var(--gold);
  color: #2b2008;
  border-color: var(--gold);
}

.branch .b-actions svg {
  width: 12px;
  height: 12px;
}

.hours-band {
  position: relative;
  margin-top: 24px;
  background: var(--plum-dark);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.hours-band b {
  color: var(--gold-soft);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 17px;
  text-shadow: 0 1px 4px rgba(45, 10, 30, 0.25);
}

.hours-band span {
  color: var(--white);
  font-size: 13.5px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(45, 10, 30, 0.15);
}

/* ============================================================
   BOOKING CTA SECTION (Mobile-First)
   ============================================================ */
.book {
  background: transparent;
}

.book-card {
  position: relative;
  background: var(--gold-grad);
  border-radius: 22px;
  padding: 40px 20px;
  text-align: center;
  color: #2b2008;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.book-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(42, 26, 8, .2);
  border-radius: 16px;
  pointer-events: none;
}

.book-card h2 {
  font-size: clamp(24px, 5.5vw, 36px);
  margin: 12px 0;
}

.book-card p {
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 14px;
}

.book-card .eyebrow {
  color: #5c4314;
}

.book-card .eyebrow::before {
  background: #5c4314;
}

.book-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.book-actions .btn {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

/* ============================================================
   FOOTER (Mobile-First)
   ============================================================ */
footer {
  background: linear-gradient(175deg, var(--plum) 0%, var(--plum-3) 100%);
  color: rgba(255, 255, 255, .75);
  padding: 54px 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 300px at 20% 90%, rgba(212, 168, 84, .1), transparent 60%),
    radial-gradient(400px 300px at 85% 10%, rgba(232, 160, 176, .08), transparent 60%);
  pointer-events: none;
}

.f-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding-bottom: 40px;
  text-align: center;
}

.f-brand p {
  font-weight: 300;
  font-size: 13.5px;
  margin: 14px auto 20px;
  max-width: 280px;
}

.f-grid h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 14px;
}

.f-grid li {
  margin-bottom: 8px;
  font-size: 13.5px;
  font-weight: 300;
}

.f-grid li a:hover {
  color: var(--gold-soft);
}

.socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 168, 84, .4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .6);
}

.socials a:hover {
  background: var(--gold);
  color: #2b2008;
  border-color: var(--gold);
}

.socials svg {
  width: 14px;
  height: 14px;
}

.f-contact li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
}

.f-contact svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .4);
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px -8px rgba(37, 211, 102, .6);
  transition: .3s;
  animation: pulse 2.4s infinite;
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 98;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--white);
  border: 1px solid rgba(212, 168, 84, .25);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .35s ease;
  box-shadow: 0 6px 20px -6px rgba(90, 44, 61, .3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  background: var(--gold);
  color: #2b2008;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   MOBILE DRAWER MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--plum-dark);
  color: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all .4s cubic-bezier(.2, .8, .2, 1);
  display: flex;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mm-inner {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  list-style: none;
}

.mm-inner li {
  list-style: none;
}

.mobile-menu a {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(15px);
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
}

.mobile-menu.open a {
  opacity: 1;
  transform: none;
}

.mobile-menu.open a:nth-child(1) {
  transition-delay: .08s;
}

.mobile-menu.open a:nth-child(2) {
  transition-delay: .12s;
}

.mobile-menu.open a:nth-child(3) {
  transition-delay: .16s;
}

.mobile-menu.open a:nth-child(4) {
  transition-delay: .2s;
}

.mobile-menu.open a:nth-child(5) {
  transition-delay: .24s;
}

.mobile-menu.open a:nth-child(6) {
  transition-delay: .28s;
}

.mobile-menu a:hover {
  color: var(--gold-soft);
}

/* ============================================================
   RETAIL PRODUCTS GRID (Mobile-First)
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-card {
  background: var(--plum-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r);
  overflow: hidden;
  transition: .35s ease;
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r);
  background: var(--gold-grad);
  opacity: 0;
  z-index: -1;
  transition: opacity .4s;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 160, 80, .4);
}

.product-card .product-img {
  aspect-ratio: 1;
  position: relative;
  background: rgba(0, 0, 0, 0.05);
}

.product-card .product-body {
  padding: 14px;
}

.product-card .product-body h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 4px;
}

.product-card .product-body .product-price {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.product-card .product-body .btn {
  width: 100%;
  justify-content: center;
  font-size: 10px;
  padding: 10px 14px;
}

/* ============================================================
   SMART SERVICES pricing component (Mobile-First)
   ============================================================ */
.sbu-section {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  font-family: var(--font-primary);
}

.sbu-sidebar {
  width: 100%;
}

.sbu-sidebar-header h3,
.sbu-bottom-sheet-header h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  font-size: 19px;
  margin-bottom: 16px;
}

.sbu-nav {
  display: none;
}

.sbu-mobile-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--plum-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  cursor: pointer;
  font-weight: 500;
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  white-space: nowrap;
  margin-bottom: 20px;
}

.sbu-content {
  width: 100%;
}

.sbu-search-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.sbu-group-filter-wrapper {
  position: relative;
  width: 100%;
}

.sbu-group-filter-wrapper select {
  width: 100%;
  padding: 12px 20px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--white);
  background-color: var(--plum-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(90, 43, 62, 0.02);
}

.sbu-search-box {
  position: relative;
  width: 100%;
}

.sbu-search-box svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  opacity: 0.6;
  pointer-events: none;
}

.sbu-search-box input {
  width: 100%;
  padding: 12px 20px 12px 42px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
  font-family: var(--font-primary);
  color: var(--white);
  background: var(--plum-dark);
  outline: none;
}

.sbu-search-box input:focus {
  border-color: var(--gold);
}

.sbu-group-header h2 {
  font-family: var(--font-primary);
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--white);
  font-size: 22px;
  margin-bottom: 6px;
}

.sbu-pricing-note {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  font-style: italic;
}

.sbu-table-wrapper {
  background: var(--plum-dark);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  overflow-x: auto;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sbu-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.sbu-table th {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.sbu-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 14px;
}

.sbu-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.sbu-service-name {
  font-weight: 500;
  color: var(--white);
}

.sbu-category-desc {
  padding: 14px;
  background: var(--plum-dark);
  border-radius: 10px;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* Bottom Sheet and Backdrop */
.sbu-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.sbu-mobile-backdrop.open {
  display: block;
  opacity: 1;
}

.sbu-mobile-bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--plum);
  border-radius: 20px 20px 0 0;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 80vh;
  overflow-y: auto;
  z-index: 999;
  display: none;
}

.sbu-mobile-bottom-sheet.open {
  display: block;
  transform: translateY(0);
}

.sbu-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sbu-sheet-title {
  font-family: var(--font-primary);
  color: var(--gold);
  font-size: 18px;
  margin: 0;
}

.sbu-sheet-close {
  cursor: pointer;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  border: none;
  background: none;
}

.sbu-sheet-handle {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: -8px auto 12px;
}

.sbu-sheet-options {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sbu-sheet-option {
  display: block;
  padding: 10px 14px;
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}

.sbu-sheet-option:hover {
  background: rgba(187, 141, 68, 0.05);
  color: var(--gold-soft);
}

.sbu-sheet-option.selected {
  background: rgba(187, 141, 68, 0.1);
  border-color: rgba(187, 141, 68, 0.3);
  color: var(--gold);
  font-weight: 600;
}

.sbu-flat-rate-cell {
  text-align: center !important;
  font-weight: 600;
  color: var(--gold-soft) !important;
  background: rgba(255, 255, 255, 0.03);
}

.sbu-flat-rate-cell span {
  display: none;
}

.sbu-no-results {
  display: none;
  text-align: center;
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}


/* ============================================================
   RESPONSIVE — LARGE MOBILE (min-width: 480px)
   ============================================================ */
@media (min-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery .g-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 120px;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {

  /* Layout */
  .wrap {
    width: 92%;
  }

  section {
    padding: 72px 0;
  }

  /* Hero Subpages */
  .hero-subpage .wrap {
    padding: 72px 0 54px;
    text-align: left;
  }

  /* Hero Main */
  .hero-grid {
    flex-direction: row;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    padding: 70px 0 90px;
    text-align: left;
  }

  .hero .eyebrow {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(34px, 5vw, 54px);
  }

  .hero-actions {
    flex-direction: row;
    max-width: none;
    justify-content: flex-start;
  }

  .hero-actions .btn {
    width: auto;
  }

  .hero-trust {
    justify-content: flex-start;
    gap: 34px;
  }

  .hero-trust .t {
    flex: none;
    min-width: auto;
    text-align: left;
  }

  .hero-trust .t:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(212, 168, 84, .2);
  }

  .hero-visual {
    max-width: 420px;
  }

  .hero-card {
    position: absolute;
    left: -30px;
    bottom: 30px;
    margin-top: 0;
    justify-content: flex-start;
  }

  .hero-badge {
    width: 96px;
    right: -15px;
    top: 25px;
  }

  /* About */
  .about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 50px;
  }

  .about-frame.second {
    right: -15px;
    bottom: -30px;
  }

  .about-exp {
    left: -15px;
  }

  .about-points {
    grid-template-columns: 1fr 1fr;
  }

  /* Grids */
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .branch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .f-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  /* Gallery Grid Restructure */
  .gallery .g-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 130px;
  }

  .g-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .g-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .g-item:nth-child(6) {
    grid-column: span 2;
  }

  /* Booking Card */
  .book-card {
    padding: 60px 40px;
  }

  .book-actions {
    flex-direction: row;
    justify-content: center;
  }

  .book-actions .btn {
    width: auto;
  }

  /* Call to Action Band */
  .home-svc {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 46px 54px;
    gap: 30px;
    margin-top: 60px;
  }

  .home-svc>div {
    max-width: 600px;
  }

  .home-svc .btn {
    width: auto;
  }

  /* Smart Services Component tablet */
  .sbu-search-wrapper {
    flex-direction: row;
  }

  .sbu-group-filter-wrapper {
    width: 220px;
  }

  .sbu-search-box {
    flex-grow: 1;
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP (min-width: 992px)
   ============================================================ */
@media (min-width: 992px) {

  /* Layout */
  section {
    padding: 96px 0;
  }

  /* Announcement Bar */
  .announce {
    font-size: 11px;
    padding: 8px 0;
  }

  .announce-wrap {
    flex-direction: row;
    justify-content: space-between;
  }

  .announce-socials {
    display: flex;
    gap: 16px;
  }

  /* Header & Navigation */
  .nav {
    height: 80px;
  }

  header.scrolled .nav {
    height: 64px;
  }

  .logo-mark {
    width: 48px;
    height: 48px;
  }

  .logo-text .display {
    font-size: 20px;
  }

  .logo-text small {
    font-size: 9px;
  }

  /* Header & Navigation Display */
  .burger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .menu {
    display: flex;
    gap: 30px;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    list-style: none;
  }

  .menu li {
    list-style: none;
  }

  .menu a {
    position: relative;
    padding: 6px 0;
    color: var(--white);
  }

  .menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: .4s cubic-bezier(.2, .8, .2, 1);
    transform: translateX(-50%);
  }

  .menu a:hover::after,
  .menu a.active::after,
  .menu a.current-menu-item::after {
    width: 100%;
  }

  .nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--white);
  }

  .nav-phone svg {
    width: 15px;
    height: 15px;
    color: var(--gold);
  }

  /* Grids */
  .svc-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .branch-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .f-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 46px;
    text-align: left;
  }

  .f-brand p {
    margin: 16px 0 22px;
  }

  .socials {
    justify-content: flex-start;
  }

  .f-contact li {
    justify-content: flex-start;
  }

  .f-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  footer {
    padding: 78px 0 0;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    padding: 90px 0 110px;
    min-height: 640px;
  }

  .hero h1 {
    font-size: clamp(38px, 5.4vw, 72px);
  }

  .hero-visual {
    max-width: none;
  }

  .hero-card {
    left: -46px;
    bottom: 42px;
    padding: 18px 22px;
  }

  .hero-badge {
    width: 108px;
    right: -20px;
    top: 30px;
  }

  /* Smart Services Component desktop */
  .sbu-section {
    flex-direction: row;
    gap: 40px;
  }

  .sbu-sidebar {
    width: 280px;
    flex-shrink: 0;
  }

  .sbu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
  }

  .sbu-link {
    display: block;
    padding: 12px 16px;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid transparent;
  }

  .sbu-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-soft);
  }

  .sbu-link.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    font-weight: 600;
  }

  .sbu-mobile-trigger {
    display: none;
  }

  .sbu-content {
    flex-grow: 1;
  }
}

/* ============================================================
   RESPONSIVE — LARGE DESKTOP (min-width: 1200px)
   ============================================================ */
@media (min-width: 1200px) {
  .wrap {
    width: 92%;
  }
}

/* ============================================================
   PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track,
  .hero-badge,
  .hero-card,
  .wa-float {
    animation: none;
  }
}

/* ============================================================
   WordPress-specific overrides
   ============================================================ */
.entry-content>* {
  max-width: none;
}

.wp-block-group {
  padding: 0;
}

body.page-template-default {
  background: var(--plum);
}

.elementor-section.elementor-section-boxed>.elementor-container {
  max-width: 1240px;
}

/* ============================================================
   FAQs SECTION
   ============================================================ */
.faqs {
  background: var(--plum);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.faqs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 500px at 0% 100%, rgba(225, 179, 102, 0.04), transparent 60%);
  pointer-events: none;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: var(--plum-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(225, 179, 102, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  font-family: var(--font-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
  color: var(--gold-soft);
}

.faq-trigger {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-trigger::before,
.faq-trigger::after {
  content: "";
  position: absolute;
  background-color: var(--gold);
  transition: transform 0.35s ease, background-color 0.3s ease;
}

/* Horizontal line */
.faq-trigger::before {
  width: 14px;
  height: 2px;
}

/* Vertical line */
.faq-trigger::after {
  width: 2px;
  height: 14px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 0 28px;
}

.faq-answer-content {
  padding-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* Active FAQ Item State */
.faq-item.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-question h3 {
  color: var(--gold);
}

/* Rotate vertical line to make a minus sign */
.faq-item.active .faq-trigger::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-trigger::before {
  transform: rotate(90deg);
}