/* ==========================================================================
   NISHU'S BEAUTY CARE - Editorial Aesthetic Stylesheet
   Luxury Editorial Makeup Artist & Beauty Salon Theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Editorial Palette */
  --rose-gold: #B76E79;
  --rose-gold-hover: #A55B66;
  --rose-gold-light: #FCE4EC;
  --rose-gold-tint: #FFF9FA;
  
  --primary-pink: #B76E79;
  --primary-hover: #A55B66;
  --primary-deep: #8E4A54;
  --secondary-blush: #FCE4EC;
  --secondary-soft: #FFF0F5;
  --cream-bg: #FFF9FA;
  --editorial-bg: #FFF9FA;
  
  --gold-accent: #D4AF37;
  --gold-light: #F4E5B8;
  --gold-border: #D4AF37;
  
  --editorial-dark: #1F191B;
  --text-dark: #221A1D;
  --text-medium: #54464B;
  --text-light: #7A6970;
  --border-color: #F8DCE2;
  --border-gold: #D4AF37;
  
  --white: #FFFFFF;
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1EBE5D;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 4px 16px rgba(183, 110, 121, 0.08);
  --shadow-md: 0 10px 30px rgba(183, 110, 121, 0.12);
  --shadow-lg: 0 20px 48px rgba(34, 26, 29, 0.1);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.2);
  
  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-arch: 200px 200px 20px 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-in-out;
}

/* --------------------------------------------------------------------------
   2. Base Reset & Global Typography
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--editorial-bg);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--editorial-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 400;
}

.serif {
  font-family: var(--font-heading);
}

.script {
  font-family: var(--font-script);
}

.body-font {
  font-family: var(--font-body);
}

.rose-gold {
  color: var(--rose-gold);
}

.bg-rose-gold {
  background-color: var(--rose-gold);
}

.gold-border {
  border-color: var(--gold-border);
}

.script-font {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--rose-gold);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-bg-cream {
  background-color: var(--cream-bg);
}

.section-bg-blush {
  background-color: var(--secondary-blush);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 600;
  color: var(--rose-gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.75rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 300;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -0.02em;
}

.section-title span,
.section-title em,
.section-title .italic {
  font-style: italic;
  font-weight: 400;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--rose-gold);
  margin: 1rem auto 0 auto;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   3. Buttons & Badges (Editorial Styling)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: normal;
  line-height: 1.35;
  box-sizing: border-box;
  max-width: 100%;
  text-decoration: none;
  user-select: none;
}

.btn svg,
.btn .icon-inline {
  flex-shrink: 0;
}

/* Button Variants */
.btn-primary {
  background-color: var(--rose-gold);
  color: var(--white);
  border-color: var(--rose-gold);
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.25);
}

.btn-primary:hover {
  background-color: var(--rose-gold-hover);
  border-color: var(--rose-gold-hover);
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.35);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-editorial-dark,
.btn-gold {
  background-color: var(--editorial-dark);
  color: var(--white);
  border-color: var(--editorial-dark);
}

.btn-editorial-dark:hover,
.btn-gold:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--rose-gold);
  border-color: var(--rose-gold);
}

.btn-outline:hover {
  background-color: var(--secondary-blush);
  color: var(--rose-gold);
  transform: translateY(-2px);
}

.btn-outline-pink {
  background: transparent;
  color: var(--rose-gold);
  border-color: var(--rose-gold);
}

.btn-outline-pink:hover {
  background-color: var(--secondary-blush);
  color: var(--rose-gold);
  transform: translateY(-2px);
}

/* Button Sizing Modifiers */
.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  gap: 0.35rem;
}

.btn-md {
  padding: 0.7rem 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.btn-lg {
  padding: 0.85rem 1.8rem;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

.btn-block,
.btn-full {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Icon Utilities */
.icon-inline {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.icon-md {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-lg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.star-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--gold-accent);
}

.star-rating-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.check-icon,
.pricing-check {
  width: 18px;
  height: 18px;
  color: var(--rose-gold);
  flex-shrink: 0;
}

.pricing-cross {
  width: 18px;
  height: 18px;
  color: #B5A8B0;
  flex-shrink: 0;
}

.link-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.service-link:hover .link-arrow,
.footer-links-list a:hover .link-arrow {
  transform: translateX(4px);
}

.contact-icon svg,
.feature-icon-wrapper svg,
.service-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-btn svg.stroke-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--rose-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.35;
  white-space: normal;
}

.badge-pink {
  background-color: var(--secondary-blush);
  color: var(--rose-gold);
  border: 1px solid var(--border-color);
}

.badge-gold {
  background-color: #FFF9FA;
  color: var(--rose-gold);
  border: 1px solid var(--border-color);
}

/* --------------------------------------------------------------------------
   4. Shared Navigation (Editorial Header)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-color);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  transition: var(--transition);
}

.site-header.scrolled .navbar {
  height: 72px;
}

.logo-brand {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-script);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--rose-gold);
  line-height: 1;
}

.logo-text span {
  color: var(--rose-gold);
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-medium);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 2px;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rose-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--rose-gold);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-cta {
  padding: 0.6rem 1.6rem;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
}

.mobile-nav-cta-item {
  display: none;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1001;
  padding: 0;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 1px;
  transition: var(--transition);
  position: absolute;
}

.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 9px; }
.hamburger-line:nth-child(3) { top: 18px; }

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--rose-gold);
}
.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--rose-gold);
}

/* --------------------------------------------------------------------------
   5. Hero Sections (Editorial Magazine Split & Arched Frame)
   -------------------------------------------------------------------------- */
.hero-home {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-color: var(--editorial-bg);
  color: var(--text-dark);
  padding: 7.5rem 0 3.5rem 0;
  overflow: hidden;
}

.hero-home-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-sparkles,
.floating-icon {
  display: none; /* Removed noisy clichés for clean editorial aesthetics */
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--rose-gold);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline span,
.hero-headline em,
.hero-headline .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rose-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-tagline span {
  color: #D4AF37;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Integrated Hero Stats Row */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  margin-top: 0.5rem;
}

.hero-stat-box {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.hero-stat-lbl {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-medium);
  margin-top: 0.3rem;
}

/* Hero Right Column: Arched Framing & Editorial Backdrop */
.hero-media-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-backdrop {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 90%;
  height: 95%;
  background-color: var(--secondary-blush);
  border-radius: 120px 0 0 0;
  z-index: 1;
}

.hero-arch-card {
  position: relative;
  width: 85%;
  height: 100%;
  border-radius: 200px 200px 12px 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--gold-border);
  z-index: 2;
}

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

.hero-arch-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: var(--white);
  text-align: center;
}

.hero-arch-caption p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--white);
}

/* --------------------------------------------------------------------------
   6. Editorial Quick Highlights Strip
   -------------------------------------------------------------------------- */
.editorial-strip {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.2rem 0;
}

.editorial-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.editorial-strip-item {
  padding: 0 1.8rem;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.editorial-strip-item:last-child {
  border-right: none;
}

.editorial-strip-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.editorial-strip-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-medium);
  line-height: 1.45;
}

/* Inner Page Hero */
.page-hero {
  padding: 9.5rem 0 4.5rem 0;
  position: relative;
  background-color: #FDF4F6;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  text-align: center;
}

.page-hero-title {
  font-size: 3.4rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-medium);
}

.breadcrumb a {
  color: var(--text-dark);
}

.breadcrumb a:hover {
  color: var(--rose-gold);
}

/* --------------------------------------------------------------------------
   7. About Section & Experience
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  background-color: var(--white);
}

.about-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-card:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--rose-gold);
  color: var(--white);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 3px solid var(--white);
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.experience-badge .label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.about-text-content h2,
.about-text-content h3 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.about-text-content p {
  color: var(--text-medium);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-medium);
}

/* --------------------------------------------------------------------------
   8. Service Cards Grid (Editorial Clean Cards)
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-gold);
}

.service-card-img {
  height: 240px;
  position: relative;
  overflow: hidden;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--rose-gold);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.service-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--secondary-blush);
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.service-card-desc {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-color);
}

.service-price {
  font-size: 0.85rem;
  color: var(--rose-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-link {
  color: var(--editorial-dark);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.service-link:hover {
  color: var(--rose-gold);
  gap: 0.6rem;
}

/* --------------------------------------------------------------------------
   9. Features / Why Choose Us
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-box {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-box:hover {
  border-color: var(--rose-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.4rem auto;
  background-color: var(--secondary-blush);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--rose-gold);
  transition: var(--transition);
}

.feature-box:hover .feature-icon-wrapper {
  background-color: var(--rose-gold);
  color: var(--white);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.feature-desc {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   10. Testimonials Grid
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.4rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-gold);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--secondary-blush);
  pointer-events: none;
}

.rating-stars {
  color: var(--gold-accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-text {
  color: var(--text-dark);
  font-size: 0.96rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--rose-gold);
}

.client-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.client-occasion {
  font-size: 0.78rem;
  color: var(--rose-gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   11. Instagram Feed Preview
   -------------------------------------------------------------------------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.insta-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xs);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(183, 110, 121, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rose-gold);
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   12. Call to Action (CTA) Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background-color: var(--secondary-blush);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
}

.cta-banner h2 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 650px;
  margin: 0 auto 2.2rem auto;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   13. Portfolio / Gallery Page & Filter
   -------------------------------------------------------------------------- */
.filter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--rose-gold);
  color: var(--white);
  border-color: var(--rose-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  background-color: var(--cream-bg);
  border: 1px solid var(--border-color);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item.hide {
  display: none;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.2rem 1.5rem;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.9) 0%, transparent 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

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

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

.gallery-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 15, 18, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background-color: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-img-wrapper {
  max-height: 70vh;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img-wrapper img {
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.lightbox-details {
  padding: 1.5rem 2rem;
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lightbox-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.lightbox-info p {
  color: var(--rose-gold);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--rose-gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-nav:hover {
  background: var(--rose-gold);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* --------------------------------------------------------------------------
   14. Before / After Comparison Sliders
   -------------------------------------------------------------------------- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}

.ba-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}

.ba-card h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.ba-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  margin-bottom: 1.2rem;
}

.ba-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  user-select: none;
  cursor: ew-resize;
  touch-action: pan-y;
}

.ba-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid var(--white);
}

.ba-before img {
  width: 100%;
  height: 100%;
  max-width: none;
}

.ba-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(34, 26, 29, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  z-index: 5;
  pointer-events: none;
}

.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--rose-gold);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--rose-gold);
  pointer-events: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ba-handle svg {
  width: 20px;
  height: 20px;
  stroke: var(--rose-gold);
}

.ba-container:hover .ba-handle,
.ba-container:active .ba-handle {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
}

/* --------------------------------------------------------------------------
   15. Service Detail Sections & Packages Table
   -------------------------------------------------------------------------- */
.service-detail-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-grid.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.service-detail-grid.reverse .service-detail-img {
  order: 2;
}

.service-detail-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.service-detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-detail-info h3 {
  font-size: 2.3rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.service-detail-info p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-checklist {
  list-style: none;
  margin-bottom: 2rem;
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.service-checklist li svg {
  color: var(--rose-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.service-pricing-action {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Packages Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 3rem 2.2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--rose-gold);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--editorial-dark);
  color: var(--white);
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rose-gold);
}

.pricing-price span {
  font-size: 0.85rem;
  color: var(--text-medium);
  font-family: var(--font-body);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.2rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px dashed var(--secondary-blush);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* --------------------------------------------------------------------------
   16. Brand Showcase & Salon Tour
   -------------------------------------------------------------------------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.brand-card {
  background-color: var(--white);
  padding: 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.brand-card:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.salon-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.salon-photo {
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.salon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* --------------------------------------------------------------------------
   17. Contact Page & Interactive Booking Form
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}

.contact-info-card {
  background-color: var(--white);
  padding: 3rem 2.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.contact-info-card p.intro {
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary-blush);
  border: 1px solid var(--border-color);
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.contact-item-text p,
.contact-item-text a {
  color: var(--text-medium);
  font-size: 0.92rem;
}

.contact-item-text a:hover {
  color: var(--rose-gold);
}

/* Form Styles */
.booking-form-card {
  background-color: var(--white);
  padding: 3.2rem 2.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.booking-form-card h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.booking-form-card p {
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-label span {
  color: var(--rose-gold);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--cream-bg);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--rose-gold);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* --------------------------------------------------------------------------
   18. FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--rose-gold);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

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

.faq-icon {
  font-size: 1.3rem;
  color: var(--rose-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 1.8rem;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.8rem 1.5rem 1.8rem;
}

/* Map Section */
.map-frame-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 400px;
}

.map-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   19. Shared Footer (Editorial Dark Canvas)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #221C1E;
  color: #D3CAD0;
  padding: 5rem 0 2rem 0;
  border-top: 3px solid var(--gold-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-script);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.footer-logo span {
  color: var(--rose-gold);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1.2rem;
  display: block;
}

.footer-about-text {
  font-size: 0.9rem;
  color: #A89FA4;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1.5px;
  background-color: var(--rose-gold);
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  color: #A89FA4;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-list a:hover {
  color: var(--rose-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: #A89FA4;
}

.footer-contact-item a:hover {
  color: var(--rose-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: #887E84;
}

/* --------------------------------------------------------------------------
   20. Floating WhatsApp Button (Mobile-First Premium FAB)
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  padding: 10px 20px 10px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.4), 0 3px 8px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.5), 0 4px 12px rgba(0, 0, 0, 0.16);
  color: var(--white);
}

.floating-whatsapp:active {
  transform: scale(0.94);
}

.wa-fab-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: #25D366;
  opacity: 0.5;
  z-index: -1;
  animation: wa-pulse 2.4s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.25, 1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.25, 1.4);
    opacity: 0;
  }
}

.wa-fab-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.wa-fab-svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  display: block;
}

.wa-online-dot {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 9px;
  height: 9px;
  background-color: #25D366;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.whatsapp-label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   21. Scroll Animations (IntersectionObserver)
   -------------------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* --------------------------------------------------------------------------
   22. Responsive Media Queries (Mobile-First Comprehensive Tuning)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .site-header {
    height: 74px;
  }

  .navbar {
    height: 74px;
  }

  .site-header.scrolled .navbar {
    height: 68px;
  }

  .logo-brand {
    flex: 1;
    min-width: 0;
  }

  .logo-text {
    font-size: 2.15rem;
    line-height: 1.05;
    white-space: nowrap;
  }

  .logo-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    margin-top: 1px;
    white-space: nowrap;
  }

  /* Remove Book Now from header in mobile view so parlour name has full width and visibility */
  .nav-cta {
    display: none !important;
  }

  .nav-actions {
    gap: 0;
    flex-shrink: 0;
  }

  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    margin-right: -8px;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    gap: 0.4rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    border-top: 1px solid var(--border-color);
    border-bottom: 2px solid var(--rose-gold);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.35s;
    z-index: 999;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    transition: var(--transition);
  }

  .nav-link:hover {
    background-color: var(--secondary-blush);
    color: var(--rose-gold);
  }

  .nav-link.active {
    background-color: var(--secondary-blush);
    color: var(--rose-gold);
    font-weight: 700;
    border-left: 4px solid var(--rose-gold);
    padding-left: 1.2rem;
  }

  .nav-link::after {
    display: none;
  }

  .mobile-nav-cta-item {
    display: block;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
  }

  .mobile-nav-cta-item .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.88rem;
  }

  .hero-home {
    min-height: auto;
    padding: 7rem 0 3.5rem 0;
  }

  .hero-home-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-headline {
    font-size: 3.2rem;
  }

  .hero-media-wrapper {
    height: 420px;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-media-backdrop {
    right: 0;
    width: 95%;
  }

  .editorial-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .editorial-strip-item {
    border-right: none;
    padding: 0.5rem 0;
  }

  .about-grid,
  .contact-grid,
  .service-detail-grid,
  .service-detail-grid.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-detail-grid.reverse .service-detail-img {
    order: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

  .hero-buttons {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
  }

  .hero-buttons .btn {
    flex: 1 1 auto;
    min-width: 150px;
  }

  .service-pricing-action {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  /* Mobile FAB Circular Action Button */
  .floating-whatsapp {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 6px 22px rgba(18, 140, 126, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .wa-fab-pulse {
    animation: wa-pulse-circle 2.4s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
  }

  @keyframes wa-pulse-circle {
    0% {
      transform: scale(0.95);
      opacity: 0.7;
    }
    70% {
      transform: scale(1.4);
      opacity: 0;
    }
    100% {
      transform: scale(1.4);
      opacity: 0;
    }
  }

  .wa-fab-icon-wrap {
    width: 32px;
    height: 32px;
  }

  .wa-fab-svg {
    width: 30px;
    height: 30px;
  }

  .whatsapp-label {
    display: none;
  }

  .wa-online-dot {
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
  }

  /* Filter category tabs scrollable on mobile */
  .gallery-filter-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.6rem;
    gap: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 2rem;
    justify-content: flex-start;
  }

  .gallery-filter-nav::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    padding: 0.5rem 1.1rem;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    min-width: unset;
  }

  .service-pricing-action {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    text-align: center;
  }

  .service-pricing-action .btn {
    width: 100%;
  }

  .service-pricing-action .pricing-price {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 70px;
  }

  .navbar {
    height: 70px;
  }

  .site-header.scrolled .navbar {
    height: 64px;
  }

  .logo-text {
    font-size: 2.05rem;
    line-height: 1.05;
  }

  .logo-tagline {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero-home {
    padding: 5.5rem 0 2.5rem 0;
  }

  .hero-badge {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
  }

  .hero-headline {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
  }

  .hero-subheadline {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }

  .hero-stat-num {
    font-size: 1.6rem;
  }

  .hero-stat-lbl {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    font-size: 0.8rem;
  }

  .hero-media-wrapper {
    height: 330px;
    max-width: 100%;
  }

  .hero-arch-card {
    width: 95%;
    border-radius: 140px 140px 12px 12px;
  }

  .hero-arch-caption p {
    font-size: 1.15rem;
  }

  .editorial-strip-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-grid,
  .gallery-grid,
  .testimonials-grid,
  .ba-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ba-container {
    aspect-ratio: 4 / 3;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .contact-info-card,
  .booking-form-card {
    padding: 2rem 1.4rem;
  }

  .contact-info-card h3,
  .booking-form-card h3 {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-control {
    font-size: 16px; /* Prevents iOS auto-zoom */
    padding: 0.75rem 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .salon-gallery-grid {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    position: static;
    margin-top: 1rem;
    display: inline-block;
  }

  .lightbox-content {
    max-width: 96vw;
    max-height: 85vh;
  }

  .lightbox-img-wrapper img {
    max-height: 60vh;
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 42px;
    height: 42px;
  }

  .lightbox-prev {
    left: 0.5rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-next {
    right: 0.5rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-details {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1.2rem;
  }

  .lightbox-details .btn {
    width: 100%;
  }

  .page-hero {
    padding: 6.5rem 0 3.2rem 0;
  }

  .page-hero-title {
    font-size: 2.4rem;
  }

  .page-hero-subtitle {
    font-size: 1rem;
  }

  .cta-banner {
    padding: 3.5rem 0;
  }

  .cta-banner h2 {
    font-size: 2.2rem;
  }

  .cta-banner p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .cta-banner .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.68rem 1.2rem;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    gap: 0.4rem;
  }

  .btn-lg {
    padding: 0.78rem 1.4rem;
    font-size: 0.82rem;
  }

  .btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.72rem;
  }

  .badge {
    font-size: 0.68rem;
    padding: 0.28rem 0.65rem;
    letter-spacing: 0.04em;
  }

  .contact-info-card,
  .booking-form-card {
    padding: 1.6rem 1.1rem;
  }

  .pricing-card {
    padding: 2.2rem 1.4rem;
  }
}

@media (max-width: 380px) {
  .logo-text {
    font-size: 1.75rem;
  }

  .logo-tagline {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

  .btn {
    padding: 0.62rem 0.95rem;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
  }
}
