/* ═══════════════════════════════════════════════════════════════════════════
   SALONIQUE LIMITED — Custom Stylesheet
   Palette: Gold · Blush · Black · White
   Fonts: Cormorant Garamond (serif headings) + Inter (sans body)
═══════════════════════════════════════════════════════════════════════════ */

/* ─── 1. CSS VARIABLES ─────────────────────────────────────────────────────── */
:root {
  /* Gold spectrum */
  --gold:          #C9963B;
  --gold-rgb:      201, 150, 59;
  --gold-light:    #E2C070;
  --gold-dark:     #9A7020;
  --gold-pale:     #F5EDD8;
  --gold-gradient: linear-gradient(135deg, #9A7020 0%, #C9963B 45%, #E2C070 100%);
  --gold-gradient-rev: linear-gradient(135deg, #E2C070 0%, #C9963B 55%, #9A7020 100%);

  /* Blush */
  --blush:         #F5D0D3;
  --blush-light:   #FDF0F2;
  --blush-dark:    #E0B0B5;

  /* Neutrals */
  --black:         #0D0D0D;
  --dark:          #1A1A1A;
  --dark-2:        #252525;
  --dark-3:        #333333;
  --text-dark:     #2D2D2D;
  --text-body:     #4A4A4A;
  --text-muted:    #777777;
  --border:        #E8E0D4;
  --border-gold:   rgba(201, 150, 59, 0.25);
  --bg-light:      #FAFAF8;
  --bg-blush:      #FDF5F6;
  --white:         #FFFFFF;

  /* Typography */
  --font-serif: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py:    100px;
  --section-py-sm: 60px;

  /* Shadows */
  --shadow-xs:   0 1px 6px rgba(0,0,0,.06);
  --shadow-sm:   0 4px 18px rgba(0,0,0,.08);
  --shadow-md:   0 10px 40px rgba(0,0,0,.12);
  --shadow-lg:   0 24px 70px rgba(0,0,0,.16);
  --shadow-gold: 0 8px 32px rgba(201,150,59,.30);

  /* Transitions */
  --ease:        all 0.3s ease;
  --ease-slow:   all 0.5s ease;

  /* Radii */
  --r-sm: 4px;
  --r:    8px;
  --r-lg: 16px;
  --r-xl: 24px;
}

/* ─── 2. GLOBAL RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--white);
  overflow-x: clip;
  min-height: 100vh;
}

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

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

ul { list-style: none; padding: 0; margin: 0; }

/* ─── 3. TYPOGRAPHY ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }

.section-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-badge.light {
  background: rgba(255,255,255,0.1);
  color: var(--gold-light);
  border-color: rgba(226,192,112,.3);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 50px;
  line-height: 1.8;
}
.section-subtitle.light { color: rgba(255,255,255,0.75); }

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 18px auto 28px;
  border-radius: 2px;
}

.gold-divider.left { margin-left: 0; }

/* ─── 4. BUTTONS ───────────────────────────────────────────────────────────── */
.btn { font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.04em; border-radius: var(--r); transition: var(--ease); }

.btn-gold {
  background: var(--gold-gradient);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-gradient-rev);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,150,59,.45);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 12px 31px;
}
.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-dark-luxury {
  background: var(--dark);
  color: var(--white);
  border: 1.5px solid var(--dark-2);
  padding: 13px 32px;
}
.btn-dark-luxury:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #1EBD5A 0%, #25D366 100%);
  color: var(--white) !important;
  border: none;
  padding: 16px 40px;
  box-shadow: 0 10px 30px rgba(37,211,102,.3), inset 0 1px 1px rgba(255,255,255,.3);
  font-size: 1.05rem;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #189e4b 0%, #1EBD5A 100%);
  color: var(--white) !important;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37,211,102,.45), inset 0 1px 1px rgba(255,255,255,.3);
}

.btn-whatsapp-footer {
  background: rgba(37,211,102,.12);
  color: #25D366;
  border: 1px solid rgba(37,211,102,.3);
  padding: 10px 22px;
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.btn-whatsapp-footer:hover { background: #25D366; color: var(--white); }

.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 9px 22px; font-size: 0.87rem; }

/* ─── 5. NAVBAR ────────────────────────────────────────────────────────────── */
#mainNav {
  background: rgba(13,13,13,0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  padding: 18px 0;
  transition: var(--ease-slow);
  z-index: 12000;
}

#mainNav.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

#mainNav .container,
.navbar-brand,
.navbar-toggler,
.navbar-collapse {
  position: relative;
  z-index: 2;
}

/* Brand */
.brand-wrap { display: flex; align-items: center; gap: 10px; }
.brand-icon {
  width: 38px; height: 38px;
  background: var(--gold-gradient);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}
.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* Nav links */
.navbar-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.82) !important;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--ease);
}
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px;
  width: 0; height: 1px;
  background: var(--gold-gradient);
  transition: var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-light) !important;
}
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: calc(100% - 28px);
}

/* Enable hover on desktop for dropdown */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIndropdown 0.2s ease forwards;
  }
}
@keyframes fadeIndropdown {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Dropdown */
.dropdown-menu-luxury {
  background: var(--dark);
  border: 1px solid rgba(201,150,59,.2);
  border-radius: var(--r);
  padding: 10px 0;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  margin-top: 0 !important;
}
.dropdown-menu-luxury::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}
.dropdown-menu-luxury .dropdown-item {
  color: rgba(255,255,255,.8);
  font-size: 0.875rem;
  padding: 9px 20px;
  transition: var(--ease);
  display: flex;
  align-items: center;
}
.dropdown-menu-luxury .dropdown-item i { color: var(--gold); font-size: 1rem; }
.dropdown-menu-luxury .dropdown-item:hover,
.dropdown-menu-luxury .dropdown-item.active {
  background: rgba(201,150,59,.12);
  color: var(--gold-light);
}
.dropdown-menu-luxury .dropdown-divider { border-color: rgba(255,255,255,.08); }

/* Nav CTA */
.btn-nav-cta {
  font-size: 0.83rem;
  padding: 10px 22px;
  border-radius: 50px;
}

/* Toggler */
.toggler-icon { 
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.navbar-toggler { 
  border: 1px solid rgba(201,150,59,.35); 
  background: rgba(13,13,13,.6); 
  padding: 8px 10px; 
  min-width: 46px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r); 
  position: relative;
  z-index: 12001;
}
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
.navbar-toggler:focus { 
  box-shadow: 0 0 0 3px rgba(201,150,59,.3) !important; 
  outline: none !important;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon {
  opacity: .85;
}

/* ─── 6. HERO SECTION ──────────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
  transform: scale(1.04);
  animation: hero-zoom 12s ease infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,.92) 0%, rgba(26,16,4,.85) 60%, rgba(13,13,13,.6) 100%);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; padding: 140px 0 80px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-eyebrow::before,
.hero-eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--gold); opacity: .5; width: 28px; }

.hero-section h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero-section h1 .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-trust-line {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
}
.hero-trust-line .stars { color: var(--gold); letter-spacing: 2px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 14px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-anim 1.8s ease infinite;
}
@keyframes scroll-anim {
  0%   { top: 7px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ─── 7. PAGE HERO (inner pages) ───────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,.9) 0%, rgba(26,16,4,.85) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.page-hero .breadcrumb {
  justify-content: center;
  background: none;
  padding: 0;
  margin-top: 16px;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.55); font-size: 0.85rem; }
.page-hero .breadcrumb-item.active { color: var(--gold-light); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ─── 8. PAIN POINTS SECTION ───────────────────────────────────────────────── */
.pain-points { padding: var(--section-py) 0; background: var(--white); }
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  height: 100%;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ease);
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}
.pain-card:hover::before { transform: scaleX(1); }

.pain-icon {
  width: 58px; height: 58px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: var(--ease);
}
.pain-card:hover .pain-icon {
  background: var(--gold-gradient);
  color: var(--white);
}
.pain-card h4 { font-family: var(--font-serif); color: var(--text-dark); margin-bottom: 10px; }
.pain-card p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin: 0; }

/* ─── 9. SERVICES SECTION ──────────────────────────────────────────────────── */
.services-section { padding: var(--section-py) 0; background: var(--bg-blush); }

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 38px 30px;
  height: 100%;
  border: 1px solid transparent;
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px);
}

.service-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 22px;
  background: var(--gold-pale);
  color: var(--gold);
  transition: var(--ease);
}
.service-card:hover .service-icon-wrap {
  background: var(--gold-gradient);
  color: var(--white);
}

.service-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-card p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.75; margin-bottom: 20px; }

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.service-link i { transition: var(--ease); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ─── 10. WHY CHOOSE US ────────────────────────────────────────────────────── */
.why-us-section { padding: var(--section-py) 0; background: var(--dark); }
.why-us-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 30px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-xl);
  transition: var(--ease);
  background: rgba(255,255,255,.015);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.why-us-item::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(201,150,59,.15), transparent 70%);
  opacity: 0;
  transition: var(--ease);
  pointer-events: none;
}
.why-us-item:hover { 
  background: rgba(255,255,255,.03); 
  border-color: rgba(201,150,59,.2); 
  transform: translateY(-4px); 
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
}
.why-us-item:hover::before { opacity: 1; }

.why-icon {
  width: 48px; height: 48px;
  background: rgba(201,150,59,.1);
  border: 1px solid rgba(201,150,59,.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: var(--ease);
  position: relative;
  z-index: 1;
}
.why-us-item:hover .why-icon {
  background: var(--gold-gradient);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.05);
}
.why-us-item h5 { font-family: var(--font-serif); color: var(--white); font-size: 1.15rem; margin-bottom: 4px; position: relative; z-index: 1; }
.why-us-item p  { color: rgba(255,255,255,.65); font-size: 0.92rem; margin: 0; line-height: 1.7; position: relative; z-index: 1; }

/* ─── 11. STATS COUNTER ────────────────────────────────────────────────────── */
.stats-section {
  padding: 40px 0;
  background: var(--gold-gradient);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30 L30 0 M30 30 L60 30 M30 30 L30 60 M30 30 L0 30' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3C/svg%3E");
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: 0.06em;
  margin-top: 6px;
  display: block;
}

/* ─── 12. TESTIMONIALS ─────────────────────────────────────────────────────── */
.testimonials-section { padding: var(--section-py) 0; background: var(--white); }
.testimonial-card {
  background: var(--bg-blush);
  border: 1px solid var(--blush);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  height: 100%;
  position: relative;
  transition: var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.quote-icon {
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.testimonial-text { font-size: 0.97rem; color: var(--text-body); line-height: 1.85; font-style: italic; margin-bottom: 24px; }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 600; color: var(--text-dark); font-size: 0.92rem; line-height: 1.3; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }

/* ─── 12b. TESTIMONIALS MARQUEE SLIDER ─────────────────────────────────────── */
.testi-marquee-wrap {
  overflow: hidden;
  background: var(--bg-blush);
  border-top: 1px solid var(--blush);
  border-bottom: 1px solid var(--blush);
  padding: 36px 0;
  position: relative;
}
.testi-marquee-wrap::before,
.testi-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.testi-marquee-wrap::before { left: 0;  background: linear-gradient(to right,  var(--bg-blush), transparent); }
.testi-marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg-blush), transparent); }

.testi-marquee {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testi-scroll 50s linear infinite;
}
.testi-marquee:hover { animation-play-state: paused; }

@keyframes testi-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-slide-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--r-xl);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
}
.testi-slide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-slide-text { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; font-style: italic; margin-bottom: 0; }

/* ─── 13. TRUST BADGES ─────────────────────────────────────────────────────── */
.trust-section { padding: 70px 0; background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  height: 100%;
  transition: var(--ease);
}
.trust-badge-item:hover { border-color: var(--border-gold); box-shadow: var(--shadow-sm); }
.trust-badge-icon { font-size: 1.8rem; color: var(--gold); flex-shrink: 0; }
.trust-badge-text { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); line-height: 1.4; }

/* ─── 14. CONSULTATION FORM ────────────────────────────────────────────────── */
.consultation-section {
  padding: var(--section-py) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.consultation-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,150,59,.12) 0%, transparent 70%);
  pointer-events: none;
}
.consultation-form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,150,59,.2);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  backdrop-filter: blur(10px);
}
.consultation-form-wrap .form-label {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.65);
  margin-bottom: 7px;
  text-transform: uppercase;
}
.consultation-form-wrap .form-control,
.consultation-form-wrap .form-select {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  border-radius: var(--r);
  padding: 13px 16px;
  font-size: 0.95rem;
  transition: var(--ease);
}
.consultation-form-wrap .form-control:focus,
.consultation-form-wrap .form-select:focus {
  background: rgba(255,255,255,.09);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(201,150,59,.15);
  outline: none;
}
.consultation-form-wrap .form-control::placeholder { color: rgba(255,255,255,.3); }
.consultation-form-wrap .form-select option { background: var(--dark-2); color: var(--white); }

/* ─── 15. WHATSAPP CTA SECTION ─────────────────────────────────────────────── */
.whatsapp-cta-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.whatsapp-cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(37,211,102,.06) 0%, transparent 60%);
  pointer-events: none;
}
.whatsapp-cta-section .container { position: relative; z-index: 1; }
.whatsapp-cta-section h2 { color: var(--text-dark) !important; }
.whatsapp-cta-section p { color: var(--text-muted) !important; }
.whatsapp-cta-section .section-badge { 
  background: rgba(37,211,102,.12) !important; 
  color: #25D366 !important; 
  border-color: rgba(37,211,102,.3) !important; 
  letter-spacing: 0.25em;
}

/* ─── 16. FLOATING WHATSAPP ────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  z-index: 11990;
  text-decoration: none;
  transition: var(--ease);
  animation: wa-pulse 2.5s ease infinite;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
}
.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 0;
}
.whatsapp-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.whatsapp-float:hover {
  background: #1EBD5A;
  color: var(--white);
  transform: scale(1.12) translateY(-2px);
  animation: none;
  box-shadow: 0 10px 36px rgba(37,211,102,.6);
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 6px 28px rgba(37,211,102,.5); }
  50%  { box-shadow: 0 6px 28px rgba(37,211,102,.5), 0 0 0 12px rgba(37,211,102,.12); }
  100% { box-shadow: 0 6px 28px rgba(37,211,102,.5); }
}

.whatsapp-tooltip {
  position: absolute;
  right: 74px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--ease);
  box-shadow: var(--shadow-sm);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ─── 17. FOOTER ───────────────────────────────────────────────────────────── */
.site-footer { background: #0D0D0D; color: rgba(255,255,255,.7); }
.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,.07); }

.footer-brand .brand-name { font-size: 1.3rem; }

.footer-about { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,.55); max-width: 320px; }

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: var(--ease);
}
.social-btn:hover { background: var(--gold-gradient); border-color: transparent; color: var(--white); transform: translateY(-2px); }

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 4px;
  transition: var(--ease);
}
.footer-links a i { color: var(--gold); font-size: 0.9rem; transition: var(--ease); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; gap: 12px; font-size: 0.88rem; color: rgba(255,255,255,.55); align-items: flex-start; }
.contact-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-list a { color: rgba(255,255,255,.55); }
.footer-contact-list a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 22px 0;
  background: rgba(0,0,0,.3);
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
}
.footer-legal a { color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: var(--gold-light); }

/* ─── 18. FORMS (contact / general) ───────────────────────────────────────── */
.form-luxury .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-luxury .form-control,
.form-luxury .form-select {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--ease);
}
.form-luxury .form-control:focus,
.form-luxury .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,150,59,.15);
  outline: none;
}
.form-luxury textarea.form-control { min-height: 130px; resize: vertical; }

/* ─── 19. CARD — GENERAL ───────────────────────────────────────────────────── */
.luxury-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--ease);
}
.luxury-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-gold); transform: translateY(-4px); }

/* ─── 20. FEATURE LIST ─────────────────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text-body);
}
.feature-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── 21. PROCESS STEPS ────────────────────────────────────────────────────── */
.process-section { padding: var(--section-py) 0; background: var(--white); }
.step-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.step-number {
  width: 62px; height: 62px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
}
.step-item h5 { font-family: var(--font-serif); color: var(--text-dark); margin-bottom: 10px; }
.step-item p { font-size: 0.92rem; color: var(--text-muted); }
.step-connector {
  position: absolute;
  top: 50px; right: -50%;
  width: 100%;
  height: 1px;
  background: var(--border-gold);
  border-top: 1px dashed var(--gold-light);
  z-index: 0;
}

/* ─── 22. PACKAGES / PRICING ───────────────────────────────────────────────── */
.package-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 34px;
  height: 100%;
  position: relative;
  transition: var(--ease);
}
.package-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.package-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.package-card h4 { font-family: var(--font-serif); color: var(--text-dark); margin-bottom: 8px; }
.package-price {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.package-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; }
.package-price span { font-size: 0.9rem; font-family: var(--font-sans); color: var(--text-muted); font-weight: 400; }

/* ─── 23. CASE STUDY CARDS ─────────────────────────────────────────────────── */
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--ease);
  height: 100%;
}
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.case-card-header {
  padding: 30px;
  background: var(--gold-gradient);
  position: relative;
}
.case-card-header h5 { color: var(--white); font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 4px; }
.case-card-header span { font-size: 0.8rem; color: rgba(255,255,255,.75); }
.case-card-body { padding: 28px 30px; }
.case-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.case-stat:last-child { border-bottom: none; }
.case-stat-icon { color: var(--gold); font-size: 1.2rem; }
.case-stat-label { font-size: 0.82rem; color: var(--text-muted); }
.case-stat-value { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }

/* ─── 24. ACCORDION ────────────────────────────────────────────────────────── */
.accordion-luxury .accordion-item {
  border: none;
  background: var(--white);
  border-radius: var(--r-xl) !important;
  margin-bottom: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.03);
  overflow: hidden;
  transition: var(--ease);
}
.accordion-luxury .accordion-item:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.accordion-luxury .accordion-button {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-dark);
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 24px 30px;
  transition: var(--ease);
}
.accordion-luxury .accordion-button:not(.collapsed) {
  color: var(--gold);
  background: transparent;
  box-shadow: none;
}
.accordion-luxury .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9963B' 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");
  transition: var(--ease);
}
.accordion-luxury .accordion-body { 
  font-size: 0.95rem; 
  color: var(--text-muted); 
  line-height: 1.8; 
  padding: 0 30px 24px; 
}

/* ─── 25. UTILITIES / HELPERS ──────────────────────────────────────────────── */
.bg-dark-luxury { background: var(--dark); }
.bg-gold-gradient { background: var(--gold-gradient); }
.text-gold { color: var(--gold) !important; }
.text-gold-light { color: var(--gold-light) !important; }
.border-gold { border-color: var(--border-gold) !important; }
.section-py { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section-py-sm { padding-top: var(--section-py-sm); padding-bottom: var(--section-py-sm); }
.overflow-hidden { overflow: hidden; }

/* Decorative lines */
.deco-line {
  display: inline-block;
  width: 1px;
  height: 60px;
  background: var(--gold-gradient);
  margin: 0 auto;
}

/* Alert styles */
.alert-success-luxury {
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  color: #0f6e38;
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 0.92rem;
}
.alert-error-luxury {
  background: rgba(220,53,69,.08);
  border: 1px solid rgba(220,53,69,.25);
  color: #842029;
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 0.92rem;
}

/* Click-to-call */
.tel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
}
.tel-link:hover { color: var(--gold-dark); }

/* ─── 26. RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  :root { --section-py: 70px; }

  #mainNav {
    background: rgba(13,13,13,.97) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 14px 0;
  }
  .navbar-collapse { background: rgba(13,13,13,.98); border-top: 1px solid rgba(255,255,255,.07); padding: 16px 0; }
  .navbar-nav .nav-link { padding: 10px 20px !important; }
  .navbar-nav .nav-link::after { display: none; }
  .btn-nav-cta { margin: 14px 20px 6px; display: block; text-align: center; }
  .dropdown-menu-luxury { border: none; background: rgba(255,255,255,.05); box-shadow: none; }
  .dropdown-menu-luxury .dropdown-item { padding-left: 36px; }

  .hero-content { padding: 120px 0 60px; }
  .hero-scroll { display: none; }
  .consultation-form-wrap { padding: 32px 24px; }

  .step-connector { display: none; }
}

@media (max-width: 767.98px) {
  :root { --section-py: 60px; }

  h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  h2 { font-size: clamp(1.7rem, 5vw, 2.2rem); }

  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-cta-group .btn { width: 100%; text-align: center; }

  .service-card { text-align: center; }
  .service-icon-wrap { margin-left: auto; margin-right: auto; }
  .service-link { justify-content: center; }

  .whatsapp-float { width: 54px; height: 54px; font-size: 1.5rem; bottom: 20px; right: 20px; }
  .whatsapp-icon { width: 26px; height: 26px; }

  .stats-section .col-6 { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 24px; margin-bottom: 8px; }

  .consultation-form-wrap { padding: 28px 18px; }
  .footer-top { padding: 50px 0 40px; }
}

@media (max-width: 575.98px) {
  .section-subtitle { font-size: 0.97rem; }
  .pain-card, .service-card { padding: 28px 22px; }
  .testimonial-card { padding: 28px 22px; }
  .package-card { padding: 32px 22px; }
}
