/* ==========================================================================
   RUSSIANSPA GURGAON — BOUTIQUE EUROPEAN LUXURY DESIGN SYSTEM
   Domain: RussianSpaGurgaon.com
   CTA System: Green WhatsApp + Blue Call Us Now (Exact Reference Match)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette — Warm Ivory & Soft Stone Luxury */
  --bg-ivory: #FDFBF7;
  --bg-stone: #F4F1EA;
  --bg-charcoal: #141619;
  --bg-charcoal-card: #1C1F24;
  --bg-white: #FFFFFF;

  --text-dark: #1C1F1D;
  --text-secondary: #58605B;
  --text-muted: #8E9690;
  --text-light: #F4F1EA;

  --accent-sage: #4E6050;
  --accent-champagne: #C5A059;
  --accent-champagne-light: #DFB95A;

  /* CTA Reference Colors: Green WhatsApp + Blue Call Us Now */
  --cta-wa-green: #25D366;
  --cta-wa-green-hover: #1EBE59;
  --cta-call-blue: #0066FF;
  --cta-call-blue-hover: #0052CC;

  --border-light: rgba(28, 31, 29, 0.1);
  --border-stone: rgba(28, 31, 29, 0.15);
  --border-gold: rgba(197, 160, 89, 0.35);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout Variables */
  --container-max: 1240px;
  --section-space: 6rem 1.5rem;
  
  --radius-sm: 6px;
  --radius-pill: 50px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --transition-normal: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s ease;
}

/* --------------------------------------------------------------------------
   Reset & Baseline
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-ivory);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: 65px;
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: var(--accent-sage);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-champagne);
}

/* Typography Hierarchy */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-champagne);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.25rem;
  }
}

.section-desc {
  font-size: 1.075rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.75;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Accessibility Focus States */
:focus-visible {
  outline: 3px solid var(--cta-call-blue);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Header Navigation
   -------------------------------------------------------------------------- */
.top-bar {
  background: var(--bg-charcoal);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

.top-bar-phone {
  color: #FFFFFF !important;
  font-weight: 700;
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.3px;
}

.top-bar-phone:hover {
  color: var(--accent-champagne) !important;
}

.top-bar-wa {
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.top-bar-wa:hover {
  color: var(--cta-wa-green) !important;
}

@media (max-width: 767px) {
  .top-bar {
    padding: 0.35rem 0;
    font-size: 0.75rem;
  }
  
  .top-bar-content {
    gap: 0.5rem;
  }

  .top-bar-info .hours-info {
    display: none;
  }

  .top-bar-links .top-bar-wa {
    display: none;
  }

  .top-bar-phone {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 84px;
  }
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: 0.8px;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-sage);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

@media (min-width: 768px) {
  .brand-name {
    font-size: 1.65rem;
    letter-spacing: 1px;
  }

  .brand-sub {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
  }
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-champagne);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent-champagne);
}

/* Header CTAs (Green WhatsApp + Blue Call Us Now) */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .header-actions {
    display: flex;
  }
}

.mobile-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-header-right {
    display: none;
  }
}

.mobile-header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--cta-call-blue);
  color: #FFFFFF !important;
  font-family: var(--font-sans);
  font-size: 0.775rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap !important;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.25);
}

.mobile-header-call-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-stone);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-size: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-ivory);
  z-index: 2000;
  padding: 2.5rem 1.75rem;
  transition: right var(--transition-normal);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 22, 25, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: 2.5rem;
}

.mobile-nav-link {
  color: var(--text-dark);
  font-size: 1.15rem;
  font-family: var(--font-serif);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   EXACT REFERENCE CTA BUTTON SYSTEM (Green WhatsApp + Blue Call Us Now)
   -------------------------------------------------------------------------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 700;
  color: #FFFFFF !important;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  min-height: 48px;
  white-space: nowrap;
}

.btn-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* 1. Green WhatsApp Button */
.btn-whatsapp {
  background: var(--cta-wa-green);
}

.btn-whatsapp:hover, .btn-whatsapp:focus {
  background: var(--cta-wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* 2. Blue Call Us Now Button */
.btn-call {
  background: var(--cta-call-blue);
}

.btn-call:hover, .btn-call:focus {
  background: var(--cta-call-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
}

.btn-cta-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.825rem;
  min-height: 40px;
}

.btn-cta-sm svg {
  width: 17px;
  height: 17px;
}

.btn-cta-full {
  width: 100%;
}

/* Stacked CTA Container (Desktop Order: WhatsApp ↓ Call Us Now) */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 320px;
}

@media (min-width: 576px) {
  .cta-stack-row {
    flex-direction: row;
    max-width: none;
  }
}

/* --------------------------------------------------------------------------
   Section 01: Hero Design
   -------------------------------------------------------------------------- */
.hero-editorial {
  padding: 4rem 0 6rem;
  background: var(--bg-ivory);
}

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

@media (min-width: 992px) {
  .hero-editorial-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-editorial-h1 {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  line-height: 1.1;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0.75rem 0 1.5rem;
}

@media (min-width: 768px) {
  .hero-editorial-h1 {
    font-size: 4rem;
  }
}

.hero-editorial-p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 540px;
}

.hero-editorial-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 3rem;
  max-width: 340px;
}

@media (min-width: 576px) {
  .hero-editorial-ctas {
    flex-direction: row;
    max-width: none;
  }
}

.hero-editorial-frame {
  position: relative;
}

.hero-editorial-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 140px 140px 12px 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.floating-location-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.floating-location-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 700;
}

.floating-location-sub {
  font-size: 0.8rem;
  color: var(--accent-sage);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   Section 02: Short Brand Statement
   -------------------------------------------------------------------------- */
.brand-statement-section {
  padding: 5rem 0;
  background: var(--bg-stone);
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.brand-statement-quote {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  line-height: 1.4;
  color: var(--text-dark);
  max-width: 860px;
  margin: 0 auto 1.5rem;
  font-style: italic;
}

@media (min-width: 768px) {
  .brand-statement-quote {
    font-size: 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   Section 03: Editorial Treatment Cards
   -------------------------------------------------------------------------- */
.treatments-section {
  padding: var(--section-space);
  background: var(--bg-ivory);
}

.treatment-editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .treatment-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.treatment-editorial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.treatment-editorial-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-champagne);
}

.treatment-editorial-img-box {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

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

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

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

.treatment-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-champagne);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.treatment-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}

.treatment-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.treatment-card-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   Section 04 & 05: Asymmetric 70/30 Image & Storytelling Sections
   -------------------------------------------------------------------------- */
.asymmetric-section {
  padding: var(--section-space);
}

.asymmetric-section.stone-bg {
  background: var(--bg-stone);
}

.asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .asymmetric-grid.ratio-70-30 {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .asymmetric-grid.ratio-30-70 {
    grid-template-columns: 0.7fr 1.3fr;
  }
}

.asymmetric-img-frame {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.asymmetric-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.asymmetric-content h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.asymmetric-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   Section 07: Why Guests Choose Us
   -------------------------------------------------------------------------- */
.why-editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .why-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-editorial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-editorial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 2.25rem;
  border-radius: var(--radius-md);
}

.why-editorial-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.why-editorial-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Section 09: Editorial Masonry Gallery
   -------------------------------------------------------------------------- */
.masonry-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .masonry-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.masonry-item.tall {
  grid-row: span 2;
  aspect-ratio: 3/4;
}

.masonry-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.masonry-item.square {
  aspect-ratio: 1/1;
}

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

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

/* --------------------------------------------------------------------------
   Section 11: FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-accordion {
  max-width: 860px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent-champagne);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.75rem;
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.7;
}

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

/* --------------------------------------------------------------------------
   Section 12: Minimal Dark CTA Section ("Make Time For Yourself")
   -------------------------------------------------------------------------- */
.dark-cta-section {
  padding: 6rem 1.5rem;
  background: var(--bg-charcoal);
  color: var(--text-light);
  text-align: center;
}

.dark-cta-h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--bg-ivory);
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .dark-cta-h2 {
    font-size: 4rem;
  }
}

.dark-cta-p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.dark-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

@media (min-width: 576px) {
  .dark-cta-buttons {
    flex-direction: row;
  }
}

/* --------------------------------------------------------------------------
   Section 13: Premium Footer
   -------------------------------------------------------------------------- */
.main-footer {
  background: #0D0E10;
  color: var(--text-muted);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  }
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--bg-ivory);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-champagne);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.825rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* --------------------------------------------------------------------------
   Desktop Floating Quick Contact Widget (Bottom Right Stack: WhatsApp ↓ Call)
   -------------------------------------------------------------------------- */
.desktop-float-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1500;
  display: none;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 1024px) {
  .desktop-float-widget {
    display: flex;
  }
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF !important;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-normal);
}

.float-btn.whatsapp {
  background: var(--cta-wa-green);
}

.float-btn.whatsapp:hover {
  background: var(--cta-wa-green-hover);
  transform: translateY(-2px);
}

.float-btn.call {
  background: var(--cta-call-blue);
}

.float-btn.call:hover {
  background: var(--cta-call-blue-hover);
  transform: translateY(-2px);
}

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

/* --------------------------------------------------------------------------
   Mobile Sticky Bottom Action Bar (Fixed Full-Width 50/50 Split)
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: #101214;
  z-index: 1500;
  display: flex;
  align-items: center;
  padding: 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.sticky-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 100%;
  color: #FFFFFF !important;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.sticky-action-btn.whatsapp {
  background: var(--cta-wa-green);
}

.sticky-action-btn.whatsapp:hover, .sticky-action-btn.whatsapp:active {
  background: var(--cta-wa-green-hover);
}

.sticky-action-btn.call {
  background: var(--cta-call-blue);
}

.sticky-action-btn.call:hover, .sticky-action-btn.call:active {
  background: var(--cta-call-blue-hover);
}

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

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs span {
  color: var(--accent-champagne);
}
