/* ==========================================================================
   LUXCARE SERVICES – PREMIUM STYLESHEET
   Artisanal Dry Cleaning & Premium Laundry Care
   ========================================================================== */

:root {
  --navy-950: #050b14;
  --navy-900: #0a1424;
  --navy-850: #0f1c30;
  --navy-800: #15253e;
  --navy-700: #1d3354;
  
  --gold-500: #D4AF37;
  --gold-400: #E6CA65;
  --gold-300: #F3DC87;
  --gold-600: #B8860B;
  --gold-gradient: linear-gradient(135deg, #F3C64F 0%, #D4AF37 50%, #B8860B 100%);
  
  --teal-600: #0D9488;
  --teal-500: #14B8A6;
  --teal-400: #2DD4BF;
  
  --emerald-600: #16A34A;
  --emerald-500: #22C55E;
  
  --bg-light: #F8FAFC;
  --bg-slate: #F1F5F9;
  --card-bg: #FFFFFF;
  --border-light: rgba(226, 232, 240, 0.9);
  --border-gold: rgba(212, 175, 55, 0.35);
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --shadow-sm: 0 2px 8px rgba(10, 20, 36, 0.05);
  --shadow-md: 0 8px 24px rgba(10, 20, 36, 0.08);
  --shadow-lg: 0 16px 40px rgba(10, 20, 36, 0.12);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, .font-heading {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* Reusable Badges & Section Headers */
.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-600);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  animation: pulseDot 2s infinite;
}

.pulse-dot.teal {
  background: var(--teal-500);
  box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7);
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* ==========================================================================
   NAVIGATION BAR – STREAMLINED SINGLE-LINE LUXURY HEADER
   ========================================================================== */
.lux-navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  padding: 10px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1030;
  box-shadow: 0 2px 14px rgba(10, 20, 36, 0.04);
}

.lux-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 24px rgba(10, 20, 36, 0.08);
  padding: 7px 0;
}

.lux-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-monogram {
  width: 38px;
  height: 38px;
  background: var(--navy-900);
  border-radius: 10px;
  border: 1.5px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(10, 20, 36, 0.15);
  flex-shrink: 0;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.3px;
  line-height: 1.05;
}

.brand-subtitle {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav Links - Strict Single Line */
.lux-navbar .nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b !important;
  padding: 6px 11px !important;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  letter-spacing: 0.2px;
  position: relative;
  transition: all 0.2s ease;
}

.lux-navbar .nav-link:hover {
  color: var(--gold-600) !important;
  background: rgba(212, 175, 55, 0.08);
}

.lux-navbar .nav-link.active {
  color: var(--gold-600) !important;
  background: rgba(212, 175, 55, 0.12);
  font-weight: 700;
}

/* Compact CTA Action Buttons - Single Line */
.header-actions-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.btn-whatsapp-header {
  background: #25D366;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.28);
  white-space: nowrap;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-whatsapp-header:hover {
  background: #20BA5A;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(37, 211, 102, 0.4);
}

.btn-gold-header {
  background: var(--gold-gradient);
  color: #091322 !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 15px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-gold-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
  color: #050b14 !important;
}

/* ==========================================================================
   HERO SECTION – SOBER, AIRY LIGHT LUXURY
   ========================================================================== */
.lux-hero {
  position: relative;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12) 0%, #FAF8F5 45%, #F4EFE6 100%);
  color: var(--text-main);
  padding: 85px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.hero-ambient-shape-1 {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-ambient-shape-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: #B8860B;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #0F172A;
}

.hero-title .text-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 60%, #92400e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.12rem;
  color: #475569;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Dual Service Hero Cards */
.hero-service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hero-vertical-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.35s cubic-bezier(0.3, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
  color: #0F172A;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.hero-vertical-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  border-color: var(--gold-500);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1), 0 0 20px rgba(212, 175, 55, 0.2);
  color: #0F172A;
}

.hero-vertical-card .card-thumb-wrap {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}

.hero-vertical-card .card-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-vertical-card:hover .card-thumb-wrap img {
  transform: scale(1.08);
}

.hero-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.hero-card-tag.laundry {
  background: rgba(13, 148, 136, 0.9);
  color: #ffffff;
}

.hero-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0F172A;
}

.hero-card-desc {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.hero-card-action {
  font-size: 0.86rem;
  font-weight: 700;
  color: #B8860B;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-card-action i {
  transition: transform 0.2s ease;
}

.hero-vertical-card:hover .hero-card-action i {
  transform: translateX(4px);
}

/* Trust Bar */
.trust-bar {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-item.teal .trust-icon {
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-600);
}

.trust-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.2;
}

.trust-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   VERTICAL SELECTOR & FILTER BAR
   ========================================================================== */
.service-nav-bar {
  position: sticky;
  top: 72px;
  z-index: 1020;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.filter-btn-group {
  display: inline-flex;
  background: #ffffff;
  padding: 5px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.filter-btn {
  border: none;
  background: transparent;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-btn.active {
  background: var(--navy-900);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(10, 20, 36, 0.18);
}

.filter-btn.active .badge-service {
  background: rgba(212, 175, 55, 0.25);
  color: var(--gold-300);
}

/* ==========================================================================
   SECTION: DRY CLEANING & LAUNDRY CARE
   ========================================================================== */
.service-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.service-section > .container-fluid,
.service-section > .container {
  position: relative;
  z-index: 2;
}

.bg-pattern-laundry {
  background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.04) 0%, transparent 60%);
}

.laundry-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.4, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.laundry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: var(--shadow-lg);
}

.laundry-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.laundry-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.laundry-card:hover .laundry-img-wrap img {
  transform: scale(1.06);
}

.laundry-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 20, 36, 0.85);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.laundry-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.laundry-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.laundry-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.laundry-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.price-starting-label {
  font-size: 0.76rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
}

.price-starting-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal-600);
}

/* Process Timeline */
.process-pill-step {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

.process-pill-step:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FAF8F5;
  color: #B8860B;
  border: 2px solid var(--gold-500);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   SECTION: ATELIER CRAFTSMANSHIP & CARE STANDARDS
   ========================================================================== */
.craftsmanship-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.4, 1);
  position: relative;
}

.craftsmanship-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-lg);
}

.craftsmanship-thumb {
  height: 160px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}

.craftsmanship-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.4, 1);
}

.craftsmanship-card:hover .craftsmanship-thumb img {
  transform: scale(1.08);
}

.craftsmanship-thumb-tag {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(10, 20, 36, 0.82);
  backdrop-filter: blur(8px);
  color: #FCD34D;
  border: 1px solid rgba(252, 211, 77, 0.3);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.craftsmanship-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.craftsmanship-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-600);
  margin-bottom: 16px;
}

.craftsmanship-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.craftsmanship-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.craftsmanship-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy-800);
  background: var(--bg-slate);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-top: auto;
  align-self: flex-start;
}

.atelier-banner {
  background: linear-gradient(135deg, #FAF8F5 0%, #FFFFFF 50%, #F1F5F9 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  box-shadow: var(--shadow-md);
}

.atelier-badge-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

/* ==========================================================================
   INTERACTIVE COST ESTIMATOR / CALCULATOR – SOBER LIGHT DESIGN
   ========================================================================== */
.calc-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.calc-header {
  background: linear-gradient(135deg, #FAF8F5 0%, #F1F5F9 100%);
  color: #0F172A;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 1px solid var(--border-light);
}

.calc-header h4 {
  color: #0F172A;
}

.calc-header .small {
  color: #64748B !important;
}

.calc-nav-tabs .nav-link {
  color: #64748B !important;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 8px 20px !important;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.calc-nav-tabs .nav-link.active {
  background: var(--gold-gradient);
  color: #091322 !important;
  border-color: transparent;
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.35);
}

.calc-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.calc-item-info {
  display: flex;
  flex-direction: column;
}

.calc-item-name {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.98rem;
}

.calc-item-price {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.calc-counter-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-slate);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.calc-btn-qty {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--navy-900);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calc-btn-qty:hover {
  background: var(--gold-500);
  color: #091322;
  border-color: var(--gold-500);
}

.calc-qty-display {
  font-weight: 800;
  min-width: 24px;
  text-align: center;
  font-size: 0.95rem;
}

.calc-summary-card {
  background: #FAF8F5;
  color: #0F172A;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-md);
  padding: 26px;
  position: sticky;
  top: 140px;
}

.calc-summary-card .text-secondary {
  color: #64748B !important;
}

.calc-summary-card hr {
  border-color: rgba(226, 232, 240, 0.9) !important;
}

.calc-summary-card .text-light {
  color: #1E293B !important;
}

.calc-total-val {
  font-size: 2.3rem;
  font-weight: 800;
  color: #B8860B;
  font-family: var(--font-heading);
}

/* ==========================================================================
   RATE CARD TABLE – SOBER LIGHT LUXURY
   ========================================================================== */
.table-luxury-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  margin-bottom: 24px;
}

.table-luxury-header {
  background: linear-gradient(135deg, #FAF8F5 0%, #F1F5F9 100%);
  color: #0F172A;
  border-bottom: 2.5px solid var(--gold-500);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table-luxury-header h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #0F172A;
}

.table-luxury {
  width: 100%;
  margin-bottom: 0;
}

.table-luxury tr {
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.2s ease;
}

.table-luxury tr:last-child {
  border-bottom: none;
}

.table-luxury tr:hover {
  background-color: rgba(212, 175, 55, 0.05);
}

.table-luxury td {
  padding: 14px 24px;
  font-size: 0.94rem;
  color: #1e293b;
}

.table-luxury td.price-col {
  text-align: right;
  font-weight: 800;
  color: var(--teal-600);
  font-size: 1.05rem;
}

/* ==========================================================================
   BOOKING MODAL & APPOINTMENT FORM – SOBER LIGHT
   ========================================================================== */
.modal-luxury-content {
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  overflow: hidden;
}

.modal-luxury-header {
  background: #FAF8F5;
  color: #0F172A;
  padding: 22px 30px;
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.3);
}

.modal-luxury-header h5 {
  color: #0F172A;
}

.modal-luxury-header .btn-close {
  filter: none;
}

.form-control-luxury {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.form-control-luxury:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  outline: none;
}

/* ==========================================================================
   FOOTER – SOBER WARM LIGHT LUXURY
   ========================================================================== */
.lux-footer {
  background: #FAF8F5;
  color: #64748B;
  padding: 80px 0 35px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
}

.lux-footer a {
  color: #475569;
}

.lux-footer a:hover {
  color: var(--gold-600);
}

.footer-col-title {
  color: #0F172A;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding-top: 30px;
  margin-top: 50px;
  font-size: 0.84rem;
  color: #64748B;
}

/* Floating WhatsApp Quick Action Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 48px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: all 0.3s ease;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-service-split {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.85rem;
  }
  .filter-btn-group {
    display: flex;
    flex-wrap: wrap;
    border-radius: var(--radius-md);
  }
  .floating-whatsapp-btn {
    bottom: 44px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   ARCHITECTURAL & BESPOKE LINE SKETCHES (BACKGROUND GRAPHICS)
   Watermark vector illustrations for Fabric Care & Laundry Services
   ========================================================================== */
.bg-sketch-element {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 0.24;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  filter: drop-shadow(0 6px 16px rgba(184, 134, 11, 0.12));
}

.bg-sketch-element:hover {
  opacity: 0.45;
  transform: scale(1.05);
}

/* Subtle floating animations for dynamism */
@keyframes sketchFloatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(1.5deg);
  }
}

@keyframes sketchFloatReverse {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(-1.5deg);
  }
}

.animate-sketch-float {
  animation: sketchFloatSlow 9s ease-in-out infinite;
}

.animate-sketch-sway {
  animation: sketchFloatReverse 11s ease-in-out infinite;
}

/* Specific Section Placements Across All Empty Locations */

/* Hero Section Empty Locations */
.sketch-hero-hanger {
  top: 45px;
  left: 2%;
  width: 185px;
  height: 220px;
  opacity: 0.25;
  transform: rotate(-5deg);
}

.sketch-hero-center {
  top: 15%;
  left: 48%;
  width: 160px;
  height: 190px;
  opacity: 0.18;
  transform: rotate(6deg);
}

.sketch-hero-wardrobe {
  bottom: 20px;
  right: 2%;
  width: 230px;
  height: 230px;
  opacity: 0.24;
  transform: rotate(3deg);
}

/* Trust Bar Empty Locations */
.sketch-trust-left {
  top: -15px;
  left: 1%;
  width: 120px;
  height: 120px;
  opacity: 0.20;
  transform: rotate(-8deg);
}

.sketch-trust-right {
  top: -15px;
  right: 1%;
  width: 130px;
  height: 130px;
  opacity: 0.20;
  transform: rotate(8deg);
}

/* Service Filter Nav Bar Empty Locations */
.sketch-filter-left {
  top: 50%;
  left: 3%;
  transform: translateY(-50%) rotate(-4deg);
  width: 110px;
  height: 90px;
  opacity: 0.22;
}

.sketch-filter-right {
  top: 50%;
  right: 3%;
  transform: translateY(-50%) rotate(4deg);
  width: 110px;
  height: 90px;
  opacity: 0.22;
}

/* Laundry Care Section Empty Locations */
.sketch-laundry-saree {
  top: 75px;
  right: 2.5%;
  width: 200px;
  height: 240px;
  opacity: 0.24;
  transform: rotate(4deg);
}

.sketch-laundry-sneaker {
  bottom: 30px;
  left: 2.5%;
  width: 220px;
  height: 170px;
  opacity: 0.25;
  transform: rotate(-6deg);
}

.sketch-laundry-bag {
  top: 45%;
  left: 1%;
  width: 165px;
  height: 165px;
  opacity: 0.22;
  transform: rotate(5deg);
}

/* Inside 5-Step Process White Protocol Card */
.sketch-card-watermark-tr {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 140px;
  height: 160px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  transform: rotate(4deg);
}

.sketch-card-watermark-bl {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 150px;
  height: 110px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-5deg);
}



/* Interactive Cost Estimator Empty Locations */
.sketch-calc-hanger {
  top: 35px;
  left: 2%;
  width: 175px;
  height: 205px;
  opacity: 0.22;
  transform: rotate(-5deg);
}

.sketch-calc-shoerack {
  bottom: 30px;
  right: 2%;
  width: 205px;
  height: 185px;
  opacity: 0.22;
  transform: rotate(4deg);
}

/* Inside Calculator Summary Card Watermark */
.sketch-summary-watermark {
  position: absolute;
  bottom: 8px;
  right: 10px;
  width: 120px;
  height: 120px;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
  transform: rotate(5deg);
}

/* Rate Card Table Section Empty Locations */
.sketch-rate-saree {
  top: 40px;
  left: 2%;
  width: 190px;
  height: 230px;
  opacity: 0.22;
  transform: rotate(-4deg);
}

.sketch-rate-bag {
  bottom: 35px;
  right: 2%;
  width: 175px;
  height: 175px;
  opacity: 0.22;
  transform: rotate(4deg);
}

/* Contact & FAQ Section Empty Locations */
.sketch-contact-hanger {
  bottom: 30px;
  left: 3%;
  width: 180px;
  height: 210px;
  opacity: 0.24;
  transform: rotate(-5deg);
}

.sketch-contact-wardrobe {
  top: 30px;
  right: 3%;
  width: 220px;
  height: 220px;
  opacity: 0.24;
  transform: rotate(4deg);
}

.sketch-contact-handbag {
  bottom: 25px;
  right: 4%;
  width: 160px;
  height: 160px;
  opacity: 0.20;
  transform: rotate(-6deg);
}

/* Footer Empty Locations */
.sketch-footer-left {
  bottom: 20px;
  left: 2%;
  width: 190px;
  height: 190px;
  opacity: 0.18;
  transform: rotate(-4deg);
}

.sketch-footer-right {
  top: 25px;
  right: 2%;
  width: 180px;
  height: 180px;
  opacity: 0.18;
  transform: rotate(4deg);
}

/* Booking Modal Watermark */
.sketch-modal-watermark {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 150px;
  height: 180px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  transform: rotate(6deg);
}

/* Ensure parents of card watermarks are positioned correctly */
.calc-summary-card,
.modal-luxury-content,
.lux-footer,
.trust-bar {
  position: relative;
  overflow: hidden;
}

.lux-footer > .container-fluid,
.calc-summary-card > * {
  position: relative;
  z-index: 2;
}

/* Responsive adjustment for sketches */
@media (max-width: 1199.98px) {
  .bg-sketch-element {
    opacity: 0.16;
  }
}

@media (max-width: 991.98px) {
  .bg-sketch-element {
    opacity: 0.12 !important;
    width: 120px !important;
    height: auto !important;
  }
  .sketch-laundry-bag,
  .sketch-contact-handbag,
  .sketch-hero-center {
    display: none;
  }
}

@media (max-width: 576px) {
  .bg-sketch-element {
    opacity: 0.08 !important;
    width: 90px !important;
  }
  .sketch-filter-left,
  .sketch-filter-right,
  .sketch-trust-left,
  .sketch-trust-right {
    display: none;
  }
}

/* ==========================================================================
   SECTION: VISUAL SERVICE SHOWCASE & ATELIER PHOTO GALLERY
   ========================================================================== */
.bg-light-atelier {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%, #F8FAFC 100%);
}

.gallery-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.4, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.45);
}

.gallery-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #0F172A;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.4, 1);
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.08);
}

.gallery-overlay-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #FCD34D;
  border: 1px solid rgba(252, 211, 77, 0.3);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 2;
}

.gallery-zoom-indicator {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 2;
}

.gallery-card:hover .gallery-zoom-indicator {
  opacity: 1;
  transform: scale(1);
}

.gallery-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.gallery-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.gallery-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-700);
  background: rgba(20, 184, 166, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.gallery-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

/* ==========================================================================
   UNIVERSAL BRAND ENDORSEMENT STRIP (P0 Rule 17)
   "Powered by Hiranyam AI Labs"
   ========================================================================== */
body {
  padding-bottom: 34px;
}

.hiranyam-endorsement-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #FFFFFF;
  border-top: 1px solid #E2E0EE;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.04);
  padding: 6px 16px calc(6px + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: auto;
}

.hiranyam-endorsement-strip .sparkle-icon {
  color: #EA892F;
  font-size: 12.5px;
  line-height: 1;
}

.hiranyam-endorsement-strip .endorsement-text {
  color: #393185;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.35px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  text-decoration: none;
}



