/* ===================================================================
   CiseauxDorOnCall — Premium On-Call Barber CSS Design System
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-bg: #0B0B0C;
  --color-bg-alt: #131316;
  --color-card: #18181C;
  --color-card-hover: #222228;
  --color-primary: #C5A880; /* Premium Champagne Gold */
  --color-primary-hover: #E6CFA8; /* Light Gold */
  --color-text: #E5E5EA;
  --color-text-light: #FFFFFF;
  --color-text-muted: #8E8E93;
  --color-border: rgba(197, 168, 128, 0.12); /* Subtle Gold Border */
  --color-border-hover: rgba(197, 168, 128, 0.3);
  --color-success: #34C759;
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #20BA56;
  
  --font-heading: 'Marcellus', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --container-width: 1140px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --box-shadow-glow: 0 4px 20px rgba(197, 168, 128, 0.15);
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-light);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

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

p {
  margin-bottom: 1rem;
}

/* Helpers & Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

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

.eyebrow {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 16px auto 0;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 36px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  gap: 10px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #121212;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-glow);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-border);
  color: var(--color-text-light);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: rgba(197, 168, 128, 0.04);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Header & Navigation */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  position: fixed;
  background-color: rgba(11, 11, 12, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--color-primary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--color-text-muted);
}

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

.nav-cta {
  height: 42px;
  padding: 0 20px;
  font-size: 0.8rem;
  border-radius: 8px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(197, 168, 128, 0.05) 0%, rgba(11, 11, 12, 0.95) 75%),
              linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(197, 168, 128, 0.1);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--color-primary);
  display: block;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

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

/* On-Call Specs (Unique Mobile Feature showcase) */
.specs-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.spec-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--color-primary);
  transition: var(--transition);
}

.spec-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-hover);
  box-shadow: var(--box-shadow);
}

.spec-card:hover::before {
  height: 100%;
}

.spec-icon {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.spec-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.spec-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Service Menu List Style */
.services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.service-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--color-primary);
  background: var(--color-card-hover);
  transform: translateX(5px);
}

/* Haircut photo shown on each service card */
.service-img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 22px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.service-details {
  flex: 1;
  padding-right: 20px;
}

.service-title-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.service-name {
  font-size: 1.4rem;
  color: var(--color-text-light);
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  white-space: nowrap;
}

.service-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.service-oncall-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background: rgba(197, 168, 128, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 10px;
  font-family: var(--font-body);
  font-weight: 600;
}

.service-action {
  margin-left: 20px;
}

/* Interactive Booking & Calculator Block */
.booking-section {
  position: relative;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.booking-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.booking-card h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 15px;
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 8px;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  color: var(--color-text-light);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.15);
}

/* Service Checkboxes selector in booking */
.booking-services-picker {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-card {
  display: flex;
  align-items: center;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition);
}

.checkbox-card input[type="checkbox"] {
  display: none;
}

.checkbox-indicator {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: transparent;
  transition: var(--transition);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-indicator {
  background-color: var(--color-primary);
  color: #121212;
}

.checkbox-card.selected {
  border-color: var(--color-primary);
  background-color: rgba(197, 168, 128, 0.03);
}

.checkbox-label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.95rem;
}

.checkbox-price {
  font-weight: 700;
  color: var(--color-primary);
}



/* Booking Methods Tab Selector */
.method-tabs {
  display: flex;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 4px;
  margin-bottom: 24px;
}

.method-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.method-tab.active {
  background-color: var(--color-primary);
  color: #121212;
}

.method-tab.active[data-method="whatsapp"] {
  background-color: var(--color-whatsapp);
  color: #fff;
}

.method-pane {
  display: none;
}

.method-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* WhatsApp Message Preview Box */
.whatsapp-preview-box {
  background-color: #0E161C;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-whatsapp);
  padding: 20px;
  margin-bottom: 24px;
}

.wa-preview-header {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-whatsapp);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wa-preview-content {
  font-family: monospace;
  font-size: 0.85rem;
  color: #B4C6D4;
  white-space: pre-wrap;
  background-color: rgba(0,0,0,0.2);
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.05);
}

/* Summary Sidebar */
.summary-card {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  position: sticky;
  top: 120px;
  box-shadow: var(--box-shadow);
}

.summary-card h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
  color: var(--color-primary);
}

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

.summary-item span:first-child {
  color: var(--color-text-muted);
}

.summary-item span:last-child {
  font-weight: 600;
  color: var(--color-text-light);
}

.summary-services-list {
  list-style: none;
  font-size: 0.85rem;
  margin-top: 5px;
  padding-left: 10px;
  border-left: 2px solid var(--color-border);
}

.summary-services-list li {
  margin-bottom: 4px;
  color: var(--color-text-muted);
  display: flex;
  justify-content: space-between;
}

.summary-divider {
  border-top: 1px solid var(--color-border);
  margin: 18px 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.summary-total .total-price {
  font-size: 1.8rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--color-border);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 11, 12, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.gallery-title {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 4px;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-tag {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: translateY(10px);
  transition: var(--transition);
  transition-delay: 0.05s;
}

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

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

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-tag {
  transform: translateY(0);
}

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

.review-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 36px;
  position: relative;
}

.review-stars {
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.review-text {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
}

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

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-primary);
}

.client-info h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

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

/* FAQ Styles */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.faq-toggle-icon {
  color: var(--color-primary);
  transition: var(--transition);
  font-size: 0.9rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background-color: rgba(0,0,0,0.15);
}

.faq-answer-inner {
  padding: 24px 30px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.faq-card.open {
  border-color: var(--color-border-hover);
}

.faq-card.open .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-card.open .faq-answer {
  max-height: 1000px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

/* Footer Section */
.footer {
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 80px 0 30px;
}

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

.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--color-text-light);
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #121212;
  transform: translateY(-2px);
}

.footer-nav h4, .footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

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

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.footer-contact-list li i {
  color: var(--color-primary);
  margin-top: 4px;
}

.footer-contact-list a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Booking pages (success/cancel) styles */
.result-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
}

.result-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--box-shadow);
}

.result-icon {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.result-icon.cancel {
  color: #ea5959;
}

.result-card h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.result-card p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
  font-weight: 300;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Grid/Styles */
@media (max-width: 992px) {
  .site-header {
    background-color: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
    gap: 16px;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-cta {
    display: none !important;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .booking-grid {
    grid-template-columns: 1fr;
  }
  
  .summary-card {
    position: static;
    margin-top: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 1.3rem;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .service-action {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
  
  .booking-card {
    padding: 24px 16px;
  }

  .method-tabs {
    flex-direction: column;
    background: none;
    border: none;
    padding: 0;
    gap: 8px;
  }

  .method-tab {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background-color: var(--color-bg-alt);
    padding: 12px;
  }

  .method-tab.active {
    border-color: var(--color-primary);
    background-color: rgba(197, 168, 128, 0.05);
  }
}

/* Booking contrast refinement: keep the premium dark look, but avoid black-on-black controls. */
.booking-section .booking-card,
.booking-section .summary-card {
  background: linear-gradient(180deg, #302b34 0%, #25222a 100%);
  border-color: rgba(230, 207, 168, 0.34);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
}

.booking-section .method-tabs,
.booking-section .checkbox-card,
.booking-section input[type="text"],
.booking-section input[type="email"],
.booking-section input[type="tel"],
.booking-section input[type="date"],
.booking-section input[type="time"],
.booking-section select,
.booking-section textarea,
.booking-section .whatsapp-preview-box {
  background-color: #211f27;
  border-color: rgba(230, 207, 168, 0.32);
}

.booking-section .checkbox-card:hover,
.booking-section .checkbox-card.selected,
.booking-section input:focus,
.booking-section select:focus,
.booking-section textarea:focus {
  background-color: #2b2831;
  border-color: rgba(230, 207, 168, 0.62);
}

.booking-section label,
.booking-section .checkbox-label,
.booking-section .summary-card h4,
.booking-section .summary-total,
.booking-section .summary-item span:last-child {
  color: #ffffff;
}

.booking-section .checkbox-price,
.booking-section .summary-total .total-price {
  color: #e6cfa8;
}

.booking-section input::placeholder,
.booking-section textarea::placeholder,
.booking-section .method-tab,
.booking-section .summary-item span:first-child,
.booking-section .summary-services-list li,
.booking-section .section-desc {
  color: #c4c4cf;
}

.booking-section .method-tab.active,
.booking-section .checkbox-card input[type="checkbox"]:checked + .checkbox-indicator {
  color: #0b0b0c;
}

/* Whole-site lightening pass: warm charcoal instead of black-on-black. */
:root {
  --color-bg: #1c1a20;
  --color-bg-alt: #28242c;
  --color-card: #312c35;
  --color-card-hover: #3d3742;
  --color-text: #f0edf0;
  --color-text-muted: #d6cec7;
  --color-border: rgba(230, 207, 168, 0.3);
  --color-border-hover: rgba(230, 207, 168, 0.56);
  --box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

body {
  background: radial-gradient(circle at top left, rgba(197, 168, 128, 0.11), transparent 34rem), var(--color-bg);
}

.section-alt {
  background: linear-gradient(180deg, #28242c 0%, #201d24 100%);
}

.site-header,
.site-header.scrolled {
  background-color: rgba(29, 26, 32, 0.94);
  border-bottom-color: rgba(230, 207, 168, 0.28);
}

.hero-bg {
  filter: brightness(0.62) contrast(1.06);
}

.hero-gradient {
  background: radial-gradient(circle at 70% 30%, rgba(197, 168, 128, 0.18) 0%, rgba(28, 26, 32, 0.38) 62%),
              linear-gradient(to top, rgba(28, 26, 32, 0.78) 0%, rgba(28, 26, 32, 0.08) 72%);
}

.process-card,
.service-card,
.review-card,
.faq-card,
.gallery-item,
.result-card,
.social-link {
  background-color: var(--color-card);
  border-color: var(--color-border);
}

.process-card:hover,
.service-card:hover,
.review-card:hover,
.faq-card.open,
.social-link:hover {
  background-color: var(--color-card-hover);
  border-color: var(--color-border-hover);
}

.faq-answer {
  background-color: rgba(255, 255, 255, 0.06);
}

.footer {
  background: #211e25;
  border-top-color: rgba(230, 207, 168, 0.26);
}

.footer-bottom {
  border-top-color: rgba(230, 207, 168, 0.22);
}

/* ============================================================
   Kougouleu LIGHT THEME override (warm/premium) — appended
   ============================================================ */
:root{
  --color-bg:#faf6ee; --color-bg-alt:#ffffff; --color-card:#ffffff; --color-card-hover:#f6efe1;
  --color-primary:#b0831a; --color-primary-hover:#8a6410;
  --color-text:#2a2118; --color-text-muted:#6c6157;
  --color-border:rgba(184,134,11,.18); --color-border-hover:rgba(184,134,11,.42);
}
body{background:var(--color-bg);color:var(--color-text);}
h1,h2,h3,h4,h5,h6{color:var(--color-text) !important;}
/* hero sits on a dark image → keep its text light */
.hero-content h1,.hero-title,.hero-badge{color:#ffffff !important;}
.hero-title span{color:var(--color-primary) !important;}
.hero-desc{color:rgba(255,255,255,.9) !important;}

/* --- flip dark section gradients to light (were dark theme overrides) --- */
.section-alt{background:linear-gradient(180deg,#fffdf9 0%,#f6efe2 100%) !important;}
.booking-card,.booking-section .booking-card{background:#ffffff !important;}
.whatsapp-preview-box{background:#0e1b14 !important;}  /* chat preview stays dark like WhatsApp */
.footer{background:#241e18 !important;}                /* keep footer dark (premium) */

/* ================================================================
   HAIRSPRIT LOGO-COMPLIANT PASS — brushed-silver on charcoal.
   The identity logo is monochrome chrome/silver on a deep charcoal
   gradient (no gold). This pass keeps the light content sections but
   re-skins every DARK area (header, hero, booking card, footer) and
   every BUTTON to the same silver-on-charcoal system, and neutralises
   the champagne-gold accents to a premium graphite ink on light.
   It also repairs two contrast bugs the earlier light pass created
   (white-on-white "Select" buttons + invisible booking labels).
   ================================================================ */
:root{
  /* Metal system sampled from the logo */
  --metal-c1:#0e0e10;          /* deepest charcoal (logo backdrop) */
  --metal-c2:#1b1b1f;          /* mid charcoal */
  --metal-c3:#2b2b31;          /* graphite / lighter corner glow */
  --metal-silver:#cfd2d8;      /* brushed silver */
  --metal-silver-hi:#eef0f4;   /* chrome highlight */
  --metal-silver-mid:#a6a9b0;  /* muted steel */
  /* Re-point the template accent: graphite ink on light sections
     (silver would wash out on cream) so the whole site reads as one
     monochrome-luxury system with the logo. */
  --color-primary:#2b2b31;
  --color-primary-hover:#000000;
  --color-border:rgba(43,43,49,.16);
  --color-border-hover:rgba(43,43,49,.40);
}

/* drop the warm/gold radial tint → clean neutral cream */
body{background:var(--color-bg) !important;}

/* ---- Buttons: brushed-chrome (they all sit on dark contexts) ---- */
.btn-primary{
  background:linear-gradient(180deg,#f2f3f6 0%,#d3d6dc 48%,#b7bbc3 100%) !important;
  color:#141417 !important;
  border:1px solid rgba(255,255,255,.5) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7),0 8px 22px rgba(0,0,0,.28) !important;
  text-shadow:none !important;
}
.btn-primary:hover{
  background:linear-gradient(180deg,#ffffff 0%,#e2e4e9 48%,#c6c9d0 100%) !important;
  color:#000 !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85),0 12px 28px rgba(0,0,0,.34) !important;
}
/* Outline buttons on LIGHT sections → graphite (was invisible white) */
.btn-outline{color:#2b2b31 !important;border-color:rgba(43,43,49,.30) !important;}
.btn-outline:hover{color:#0f0f12 !important;border-color:#2b2b31 !important;background:rgba(43,43,49,.05) !important;}
/* …but outline buttons on the dark hero stay light */
.hero .btn-outline{color:#fff !important;border-color:rgba(255,255,255,.4) !important;}
.hero .btn-outline:hover{color:#fff !important;border-color:#fff !important;background:rgba(255,255,255,.08) !important;}

/* ---- Header: charcoal bar so the silver logo drops in perfectly ---- */
.site-header,.site-header.scrolled{
  background:linear-gradient(180deg,rgba(20,20,23,.96),rgba(14,14,16,.92)) !important;
  border-bottom-color:rgba(207,210,216,.14) !important;
}
.logo{color:var(--metal-silver-hi) !important;}
.logo span{color:var(--metal-silver) !important;}
.nav-link{color:rgba(207,210,216,.66) !important;}
.nav-link:hover,.nav-link.active{color:var(--metal-silver-hi) !important;}
.nav-toggle{color:var(--metal-silver-hi) !important;}
@media(max-width:992px){
  .nav-menu{background:linear-gradient(180deg,#1b1b1f,#0e0e10) !important;border-bottom-color:rgba(207,210,216,.14) !important;}
}
/* Uploaded logo renders cleanly + its own wordmark hides the text token */
.logo .kgl-logo-img{max-height:52px;width:auto;object-fit:contain;}
.logo:has(img.kgl-logo-img:not(.kgl-no-data)) .logo-wordmark{display:none;}

/* ---- Hero: charcoal wash + silver highlights (logo backdrop) ---- */
.hero-title span{color:var(--metal-silver-hi) !important;}
.hero-badge{
  color:var(--metal-silver) !important;
  border-color:rgba(207,210,216,.30) !important;
  background:rgba(207,210,216,.08) !important;
}
.hero-gradient{
  background:radial-gradient(circle at 72% 28%, rgba(207,210,216,.10) 0%, rgba(14,14,16,.55) 60%),
             linear-gradient(to top, rgba(14,14,16,.85) 0%, rgba(14,14,16,.10) 72%) !important;
}

/* ---- Booking: dark charcoal card (matches logo) — this also fixes
        the invisible white-on-white labels from the light pass ---- */
.booking-section .booking-card,
.booking-section .summary-card{
  background:linear-gradient(180deg,#1f1f24 0%,#141417 100%) !important;
  border-color:rgba(207,210,216,.18) !important;
}
/* Headings inside the dark cards must stay light (beats the light
   pass's `h1-h6{color:...!important}`) */
.booking-section .booking-card h3,
.booking-section .booking-card h4,
.booking-section .summary-card h4{color:var(--metal-silver-hi) !important;}
/* The booking SECTION frame is light cream → its intro copy is dark */
.booking-section > .container > .section-desc{color:var(--color-text-muted) !important;}
/* Submit / call buttons pop as chrome inside the dark card */
.booking-section .booking-card .btn-primary{color:#141417 !important;}
.booking-section .summary-total .total-price,
.booking-section .checkbox-price{color:var(--metal-silver-hi) !important;}

/* ---- Active method tab + checked checkbox → chrome (was gold) ---- */
.method-tab.active,
.checkbox-card input[type="checkbox"]:checked + .checkbox-indicator{
  background:linear-gradient(180deg,#eef0f4,#c3c6cd) !important;
  color:#141417 !important;
}
.method-tab.active[data-method="whatsapp"]{background:var(--color-whatsapp) !important;color:#fff !important;}
.checkbox-indicator{border-color:var(--metal-silver-mid) !important;}

/* ---- Social icons: default graphite on light, chrome-on-charcoal hover ---- */
.social-icon{background:#ffffff !important;border-color:rgba(43,43,49,.18) !important;color:#2b2b31 !important;}
.social-icon:hover{background:linear-gradient(180deg,#2b2b31,#141417) !important;border-color:transparent !important;color:var(--metal-silver-hi) !important;}
