/* ==========================================================================
   MAISON MELYANA BY SM - DESIGN SYSTEM & LUXURY STYLES
   Colors: Olive / Sage Green (#4D5844), Champagne Gold (#D4AF37), Silk Cream (#FAF8F5)
   ========================================================================== */

@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:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Palette */
  --primary-olive: #4D5844;
  --primary-olive-dark: #374030;
  --primary-olive-deeper: #252B20;
  --primary-olive-light: #64735B;
  --primary-olive-soft: #85957A;
  --primary-olive-bg: #F2F5F0;
  
  --gold-primary: #D4AF37;
  --gold-champagne: #E6C875;
  --gold-light: #F7E8BA;
  --gold-dark: #A88722;
  --gold-gradient: linear-gradient(135deg, #F8E9C0 0%, #D4AF37 50%, #B58E22 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --cream-silk: #FAF8F5;
  --cream-paper: #F5F1EA;
  --surface-white: #FFFFFF;
  
  --text-main: #242B1F;
  --text-muted: #5F6B58;
  --text-light: #8C9985;
  --text-inverse: #FFFFFF;
  
  --border-light: rgba(77, 88, 68, 0.12);
  --border-gold: rgba(212, 175, 55, 0.35);
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(36, 43, 31, 0.04);
  --shadow-md: 0 10px 30px rgba(36, 43, 31, 0.08);
  --shadow-lg: 0 20px 40px rgba(36, 43, 31, 0.12);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transition */
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-lux);
  --transition-normal: 0.4s var(--ease-lux);
  --transition-slow: 0.8s var(--ease-lux);
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream-silk);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--primary-olive-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 40px auto;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary-olive);
  color: var(--cream-silk);
  box-shadow: 0 4px 20px rgba(77, 88, 68, 0.25);
}

.btn-primary:hover {
  background: var(--primary-olive-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(77, 88, 68, 0.35);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--primary-olive-deeper);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-olive);
  color: var(--primary-olive);
}

.btn-outline:hover {
  background: var(--primary-olive);
  color: var(--cream-silk);
  transform: translateY(-3px);
}

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

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: var(--primary-olive-deeper);
}

/* Header & Top Bar */
.top-bar {
  background: var(--primary-olive-deeper);
  color: var(--cream-silk);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.top-bar-info {
  display: flex;
  gap: 24px;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.header-main.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(250, 248, 245, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Brand Logo (Matching attached logo design) */
.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--primary-olive);
  text-align: center;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.02);
}

.logo-main-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  line-height: 1;
  text-transform: uppercase;
}

.logo-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 3px 0;
}

.logo-divider::before,
.logo-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-primary);
}

.logo-sub-by {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
}

.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--primary-olive-dark);
  text-transform: uppercase;
  font-weight: 600;
}

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

.nav-link {
  text-decoration: none;
  color: var(--primary-olive-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-normal);
}

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary-olive-dark);
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-olive-deeper) 0%, var(--primary-olive-dark) 60%, var(--primary-olive) 100%);
  color: var(--cream-silk);
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--gold-champagne);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--cream-silk);
}

.hero-title span.highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(250, 248, 245, 0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--gold-champagne);
  line-height: 1;
}

.stat-item p {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.7);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.hero-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease-lux);
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(36, 43, 31, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}

.floating-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-olive-deeper);
  font-size: 1.4rem;
}

.floating-text h4 {
  font-size: 1.1rem;
  color: var(--gold-champagne);
}

.floating-text p {
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.8);
}

/* FEATURES BAR */
.features-bar {
  background: var(--primary-olive-dark);
  color: var(--cream-silk);
  padding: 30px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1.05rem;
  color: var(--gold-champagne);
}

.feature-info p {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.7);
}

/* ABOUT SECTION */
.about-section {
  padding: 100px 0;
  background: var(--cream-silk);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-img-main {
  width: 85%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--cream-silk);
  box-shadow: var(--shadow-lg);
}

.about-badge-gold {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 110px;
  height: 110px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-olive-deeper);
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.about-badge-gold span.years {
  font-size: 2rem;
  line-height: 1;
}

.about-badge-gold span.txt {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlight-box i {
  color: var(--gold-dark);
  font-size: 1.2rem;
  margin-top: 3px;
}

.highlight-box h5 {
  font-size: 1rem;
  color: var(--primary-olive-dark);
  margin-bottom: 4px;
}

.highlight-box p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* SERVICES SECTION */
.services-section {
  padding: 100px 0;
  background: var(--cream-paper);
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.tab-btn {
  padding: 12px 26px;
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary-olive);
  color: var(--cream-silk);
  border-color: var(--primary-olive);
  box-shadow: var(--shadow-md);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

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

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

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-lux);
}

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

.service-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(36, 43, 31, 0.8);
  backdrop-filter: blur(8px);
  color: var(--gold-champagne);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid var(--border-gold);
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.service-title {
  font-size: 1.4rem;
  color: var(--primary-olive-dark);
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.service-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
}

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

/* PACKAGE ESTIMATOR WIDGET */
.estimator-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-olive-deeper) 0%, var(--primary-olive-dark) 100%);
  color: var(--cream-silk);
}

.estimator-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
}

.estimator-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.estimator-checkbox {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.estimator-checkbox:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-primary);
}

.estimator-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.estimator-item-info h5 {
  font-size: 0.95rem;
  color: var(--cream-silk);
  font-family: var(--font-sans);
}

.estimator-item-info span {
  font-size: 0.8rem;
  color: var(--gold-champagne);
}

.estimator-summary {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.summary-row.total {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
  margin-top: 16px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-champagne);
}

/* GALLERY SECTION */
.gallery-section {
  padding: 100px 0;
  background: var(--cream-silk);
}

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

.gallery-item {
  position: relative;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(36, 43, 31, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--cream-silk);
}

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

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

.gallery-overlay h4 {
  font-size: 1.3rem;
  color: var(--gold-champagne);
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.8);
}

/* REVIEWS SECTION */
.reviews-section {
  padding: 100px 0;
  background: var(--cream-paper);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--surface-white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.review-stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.review-client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-olive-bg);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-olive);
}

.client-info h5 {
  font-size: 1rem;
  color: var(--primary-olive-dark);
  font-family: var(--font-sans);
}

.client-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* CONTACT & LOCATION */
.contact-section {
  padding: 100px 0;
  background: var(--cream-silk);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-box {
  background: var(--primary-olive-dark);
  color: var(--cream-silk);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-gold);
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-detail h4 {
  font-size: 1.1rem;
  color: var(--gold-champagne);
  margin-bottom: 4px;
}

.info-detail p, .info-detail a {
  font-size: 0.95rem;
  color: rgba(250, 248, 245, 0.85);
  text-decoration: none;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--gold-champagne);
  font-weight: 600;
}

.contact-form {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-olive-dark);
  margin-bottom: 8px;

}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--cream-silk);
  color: var(--text-main);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* FAQ ACCORDION */
.faq-section {
  padding: 80px 0;
  background: var(--cream-paper);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-olive-dark);
  font-size: 1.05rem;
}

.faq-header i {
  transition: transform var(--transition-fast);
  color: var(--gold-dark);
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
}

.faq-item.active .faq-body {
  display: block;
}

/* FOOTER */
.site-footer {
  background: var(--primary-olive-deeper);
  color: var(--cream-silk);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(250, 248, 245, 0.7);
  margin: 20px 0;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--gold-gradient);
  color: var(--primary-olive-deeper);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.2rem;
  color: var(--gold-champagne);
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(250, 248, 245, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.7);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.85rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.5);
}

/* BOOKING MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 34, 24, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--cream-silk);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: translateY(30px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-header {
  background: var(--primary-olive-dark);
  color: var(--cream-silk);
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.5rem;
  color: var(--gold-champagne);
}

.modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--gold-champagne);
}

.modal-body {
  padding: 30px;
}

.step-wizard {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.step-wizard::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--border-light);
  z-index: 1;
}

.wizard-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-paper);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.wizard-step.active .step-num {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  color: var(--primary-olive-deeper);
}

.wizard-step.completed .step-num {
  background: var(--primary-olive);
  color: var(--cream-silk);
  border-color: var(--primary-olive);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.booking-step-content {
  display: none;
}

.booking-step-content.active {
  display: block;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.time-slot-btn {
  padding: 10px;
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
}

.time-slot-btn:hover,
.time-slot-btn.selected {
  background: var(--primary-olive);
  color: #fff;
  border-color: var(--primary-olive);
}

/* TOAST NOTIFICATION */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--primary-olive-deeper);
  color: var(--cream-silk);
  border: 1px solid var(--border-gold);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInRight 0.4s var(--ease-lux);
}

.toast i {
  color: var(--gold-champagne);
  font-size: 1.3rem;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .nav-container .btn {
    padding: 9px 16px;
    font-size: 0.85rem;
    gap: 6px;
  }

  .hero-grid,
  .about-grid,
  .estimator-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .nav-links {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: var(--cream-silk);
    flex-direction: column;
    padding: 40px;
    transition: left var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .about-img-secondary {
    display: none;
  }
  
  .about-img-main {
    width: 100%;
  }
  
  .top-bar-info span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 576px) {
  .nav-container .btn {
    padding: 8px 12px;
    font-size: 0.78rem;
    letter-spacing: 0;
  }

  .hero-stats {
    gap: 20px;
  }
  .stat-item h3 {
    font-size: 1.7rem;
  }
  .estimator-items {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .nav-btn-extra {
    display: none; /* Hide 'un Soin' on extremely small screens */
  }
}
