/* =====================================================
   DREAMS THE UNISEX SALON — style.css
   Full responsive stylesheet
   ===================================================== */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #ffffff; color: #333333;
  line-height: 1.6; overflow-x: hidden; width: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === LAYOUT === */
.container { max-width: 1080px; margin: 0 auto; padding: 0 16px; width: 100%; }
.section { padding: 48px 0; }

/* === TYPOGRAPHY === */
.section-heading {
  font-size: 1.5rem; font-weight: 700; color: #7a1515;
  margin-bottom: 6px; display: inline-block;
}
.section-heading::after {
  content: ''; display: block; width: 40px; height: 3px;
  background: #b05a2a; margin-top: 5px;
}
.section-sub { font-size: 0.9rem; color: #666; margin-top: 6px; }
.section-header { margin-bottom: 28px; }

/* === BUTTONS === */
.btn-primary {
  display: inline-block; background: #7a1515; color: #fff;
  padding: 11px 24px; font-size: 0.9rem; font-weight: 600;
  border-radius: 4px; border: 2px solid #7a1515;
  transition: background 0.2s; text-align: center; cursor: pointer;
}
.btn-primary:hover { background: #5e1010; border-color: #5e1010; }
.btn-outline {
  display: inline-block; background: transparent; color: #fff;
  padding: 10px 22px; font-size: 0.9rem; font-weight: 600;
  border-radius: 4px; border: 2px solid #fff;
  transition: background 0.2s, color 0.2s; text-align: center;
}
.btn-outline:hover { background: #fff; color: #7a1515; }

.btn-whatsapp {
  display: inline-block; background: #25d366; color: #fff;
  padding: 11px 24px; font-size: 0.9rem; font-weight: 600;
  border-radius: 4px; border: 2px solid #25d366;
  transition: background 0.2s; text-align: center;
}
.btn-whatsapp:hover { background: #1da851; }
.btn-full { width: 100%; display: block; text-align: center; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #7a1515; border-bottom: 2px solid #5e1010;
}

/* Top info strip */
.nav-topbar {
  background: #5e1010;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 4px 0;
}
.nav-topbar-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.nav-topbar-left { display: flex; align-items: center; gap: 16px; }
.nav-topbar-link {
  font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.82);
  transition: color 0.2s; white-space: nowrap;
}
.nav-topbar-link:hover { color: #fff; }
.nav-topbar-wa { color: #7debb0; }
.nav-topbar-wa:hover { color: #a8f5cc; }
.nav-topbar-timing { font-size: 0.72rem; color: rgba(255,255,255,0.72); white-space: nowrap; }

/* Main nav row */
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 52px; max-width: 1080px; margin: 0 auto; padding: 0 16px; gap: 8px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-scissors { font-size: 1.3rem; color: #f5e6d0; }
.logo-main { display: block; font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.1; }
.logo-sub { display: block; font-size: 0.55rem; color: #f0d8c0; letter-spacing: 0.06em; text-transform: uppercase; }

/* Desktop nav links */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 6px 10px; font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.88); border-radius: 3px;
  transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.15); }

/* Nav controls */
.nav-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.btn-book-nav {
  padding: 7px 14px; background: #fff; color: #7a1515;
  font-size: 0.76rem; font-weight: 700; border-radius: 3px;
  white-space: nowrap; flex-shrink: 0; transition: background 0.2s;
}
.btn-book-nav:hover { background: #f5e6d0; }
.btn-lang, .btn-theme {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; flex-shrink: 0;
}
.btn-lang:hover, .btn-theme:hover { background: rgba(255,255,255,0.25); border-color: #fff; }
.btn-theme { font-size: 1rem; }

/* Hamburger — hidden on desktop */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; transition: all 0.22s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
/* navbar = ~28px topbar + 52px main row = ~82px total */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding-top: 82px;
  background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1400&q=80') center/cover no-repeat;
}
.hero-bg-overlay { position: absolute; inset: 0; background: rgba(70,8,8,0.72); }
.hero-content {
  position: relative; z-index: 2; padding: 48px 16px;
  max-width: 580px; margin-left: 5%; width: 100%;
}
.hero-location { font-size: 1rem; color: #f0d8c0; margin-bottom: 10px; }
.hero-title { font-size: clamp(2rem, 5vw, 72px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 12px; }
.hero-subtitle { font-size: clamp(0.9rem, 1.5vw, 1.1rem); color: #f0d8c0; margin-bottom: 24px; line-height: 1.55; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-timing {
  font-size: 0.88rem; color: #f0d8c0;
  background: rgba(0,0,0,0.38); display: inline-block; padding: 5px 12px; border-radius: 3px;
}

/* === INFO BAR === */
.info-bar { background: #5e1010; color: #f0d8c0; padding: 10px 16px; }
.info-bar-inner {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  font-size: 0.82rem; font-weight: 500; max-width: 1080px; margin: 0 auto;
}

/* === ABOUT === */
.about { background: #fdf5ec; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: center; }
.about-img-wrap { border: 2px solid #e8d5be; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 320px; object-fit: cover; display: block; }
.about-text p { font-size: 0.9rem; color: #555; margin-bottom: 12px; line-height: 1.7; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 18px; }
.highlight-item {
  background: #fff; border: 1px solid #ddd; border-left: 3px solid #7a1515;
  padding: 8px 12px; font-size: 0.8rem; font-weight: 500; color: #333;
}

/* === SERVICES === */
.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 14px; border: 1px solid #ddd; border-top: 3px solid #7a1515;
  background: #fff; transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.1); }
.service-icon-wrap { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.service-info h3 { font-size: 0.92rem; font-weight: 700; color: #222; margin-bottom: 5px; }
.service-info p { font-size: 0.8rem; color: #666; line-height: 1.55; margin-bottom: 8px; }
.price-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; color: #7a1515;
  background: #fff5f5; border: 1px solid #e8b4b4; padding: 2px 8px; border-radius: 3px;
}

/* === OFFERS === */
.offers { background: #fff; }
.offers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 14px; }
.offer-card {
  position: relative; padding: 20px 16px 18px; border: 1px solid #ddd; border-radius: 4px;
  background: #fff; display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow 0.2s, transform 0.2s; overflow: hidden;
}
.offer-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); transform: translateY(-2px); }
.offer-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.offer-hot::before   { background: linear-gradient(90deg,#e05555,#b03030); }
.offer-bridal::before { background: linear-gradient(90deg,#c06090,#8b3060); }
.offer-hair::before  { background: linear-gradient(90deg,#5090d0,#2060a0); }
.offer-facial::before { background: linear-gradient(90deg,#50b080,#207050); }
.offer-badge {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  padding: 3px 8px; border-radius: 20px; width: fit-content;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.offer-hot .offer-badge   { background:#fff0f0; color:#c03030; border:1px solid #f0b0b0; }
.offer-bridal .offer-badge { background:#fff0f8; color:#8b3060; border:1px solid #e0a0c0; }
.offer-hair .offer-badge  { background:#f0f4ff; color:#2060a0; border:1px solid #a0b8e0; }
.offer-facial .offer-badge { background:#f0fff8; color:#207050; border:1px solid #90d0b0; }
.offer-icon { font-size: 2rem; line-height: 1; }
.offer-card h3 { font-size: 0.92rem; font-weight: 700; color: #222; line-height: 1.3; }
.offer-card p { font-size: 0.78rem; color: #666; line-height: 1.55; flex: 1; }
.offer-price { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.offer-old { font-size: 0.82rem; color: #999; text-decoration: line-through; font-weight: 500; }
.offer-new { font-size: 1.1rem; font-weight: 700; color: #7a1515; }
.offer-btn { margin-top: 4px; padding: 8px 16px; font-size: 0.8rem; }
.offers-note { font-size: 0.75rem; color: #888; font-style: italic; text-align: center; margin-top: 4px; }

/* === GALLERY === */
.gallery { background: #fdf5ec; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; background: #e8d5be; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.25s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(122,21,21,0.52);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s;
}
.gallery-overlay span {
  color: #fff; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; border: 1px solid rgba(255,255,255,0.75); padding: 4px 10px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:focus-visible { outline: 2px solid #7a1515; }

/* === LIGHTBOX === */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center; padding: 14px;
}
.lightbox[hidden] { display: none; }
.lightbox-img-wrap { max-width: 90vw; max-height: 88vh; overflow: hidden; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 88vh; object-fit: contain; display: block; }
.lightbox-close {
  position: absolute; top: 12px; right: 16px; color: #fff; font-size: 1.3rem;
  padding: 5px 9px; background: rgba(255,255,255,0.15); border-radius: 3px; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%); color: #fff;
  font-size: 2rem; padding: 8px 12px; background: rgba(255,255,255,0.1);
  border-radius: 3px; transition: background 0.2s; line-height: 1;
}
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(122,21,21,0.55); }

/* === REVIEWS === */
.reviews { background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { padding: 18px 16px; border: 1px solid #ddd; border-top: 3px solid #7a1515; background: #fdf5ec; }
.review-stars { color: #d4920a; font-size: 1rem; margin-bottom: 10px; letter-spacing: 1px; }
.review-card p { font-size: 0.84rem; color: #555; line-height: 1.65; margin-bottom: 12px; font-style: italic; }
.reviewer-name { font-size: 0.78rem; font-weight: 600; color: #7a1515; }

/* === APPOINTMENT === */
.appointment { background: #fdf5ec; }
.appt-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px; align-items: start; }
.appt-info p { font-size: 0.88rem; color: #555; margin-bottom: 18px; line-height: 1.65; }
.appt-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.appt-link { font-size: 1.05rem; font-weight: 600; color: #7a1515; transition: color 0.2s; }
.appt-link:hover { color: #5e1010; }
.whatsapp-link { color: #1a8c42; }
.whatsapp-link:hover { color: #146b32; }
.appt-hours {
  font-size: 0.88rem; color: #555; background: #fff; border: 1px solid #ddd;
  border-left: 3px solid #7a1515; padding: 10px 14px; line-height: 1.7;
}
.appt-form-wrap { background: #fff; border: 1px solid #ddd; padding: 24px 22px; }
.appt-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 5px; }
.form-row label { font-size: 0.8rem; font-weight: 600; color: #333; }
.form-row input, .form-row select, .form-row textarea {
  border: 1px solid #ccc; border-radius: 3px; padding: 10px 12px;
  font-family: inherit; font-size: 0.88rem; color: #333; background: #fff;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: #7a1515; }
.form-row input.error, .form-row select.error, .form-row textarea.error { border-color: #cc2222; }
.form-error { font-size: 0.72rem; color: #cc2222; min-height: 14px; }

/* === POPUP === */
.popup-overlay {
  position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.popup-overlay[hidden] { display: none; }
.popup { background: #fff; border: 2px solid #7a1515; padding: 30px 24px; text-align: center; max-width: 340px; width: 100%; border-radius: 4px; }
.popup-check {
  width: 52px; height: 52px; border-radius: 50%; background: #7a1515; color: #fff;
  font-size: 1.4rem; font-weight: 700; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px;
}
.popup h3 { font-size: 1.1rem; font-weight: 700; color: #222; margin-bottom: 8px; }
.popup p { font-size: 0.86rem; color: #555; margin-bottom: 20px; line-height: 1.55; }

/* === CONTACT === */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border: 1px solid #ddd; background: #fdf5ec; }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.75rem; font-weight: 700; color: #7a1515; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-item p { font-size: 0.86rem; color: #555; line-height: 1.55; }
.contact-item a { color: #555; transition: color 0.2s; }
.contact-item a:hover { color: #7a1515; }
.contact-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-map { border: 1px solid #ddd; overflow: hidden; }
.contact-map iframe { display: block; width: 100%; }

/* === FEEDBACK SECTION === */
.feedback-section { background: #fdf5ec; }
.feedback-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; align-items: start; }
.fb-panel-title { font-size: 0.9rem; font-weight: 600; color: #555; margin-bottom: 14px; }
.fb-star-cards { display: flex; flex-direction: column; gap: 10px; }
.fb-star-card {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  border: 2px solid #e0d0c0; border-radius: 4px; background: #fff;
  cursor: pointer; font-family: inherit; transition: border-color 0.18s, background 0.18s, transform 0.12s;
  text-align: left; width: 100%;
}
.fb-star-card:hover { border-color: #7a1515; background: #fff5f5; transform: translateX(4px); }
.fb-star-card[aria-pressed="true"] { border-color: #7a1515; background: #fff0f0; box-shadow: 0 0 0 2px rgba(122,21,21,0.15); }
.fb-card-stars { font-size: 1rem; color: #d4920a; letter-spacing: 1px; flex-shrink: 0; min-width: 80px; }
.fb-card-label { font-size: 0.85rem; font-weight: 600; color: #333; flex: 1; }
.fb-card-emoji { font-size: 1.3rem; flex-shrink: 0; }
.feedback-form-panel { background: #fff; border: 1px solid #ddd; padding: 22px 20px; }
.feedback-form { display: flex; flex-direction: column; gap: 14px; }
.fb-selected-hint {
  display: flex; align-items: center; gap: 10px; background: #fff5e6;
  border: 1px solid #e8c88a; border-left: 4px solid #d4920a; padding: 10px 14px; border-radius: 3px;
}
.fb-hint-stars { font-size: 1.1rem; color: #d4920a; letter-spacing: 1px; flex-shrink: 0; }
.fb-hint-text { font-size: 0.82rem; font-weight: 600; color: #7a5500; }
.feedback-form .form-row label { font-size: 0.8rem; font-weight: 600; color: #333; }
.feedback-form .form-row input,
.feedback-form .form-row select,
.feedback-form .form-row textarea {
  border: 1px solid #ccc; border-radius: 3px; padding: 10px 12px;
  font-family: inherit; font-size: 0.88rem; color: #333; background: #fff;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.feedback-form .form-row input:focus,
.feedback-form .form-row select:focus,
.feedback-form .form-row textarea:focus { border-color: #7a1515; }

/* === FOOTER === */
.footer { background: #5e1010; color: #f0d8c0; padding: 28px 0 0; }
.footer-top { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer-brand .logo-main { color: #fff; }
.footer-brand .logo-sub { color: #f0d8c0; }
.footer-brand .logo-scissors { color: #f5e6d0; font-size: 1.1rem; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 14px 0; font-size: 0.75rem; color: rgba(255,255,255,0.45); text-align: center; }

/* === FLOATING WHATSAPP === */
.float-whatsapp {
  position: fixed; bottom: 72px; right: 16px; z-index: 900;
  width: 50px; height: 50px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25); transition: background 0.2s;
}
.float-whatsapp:hover { background: #1da851; }

/* === MOBILE STICKY CALL BAR === */
.mobile-call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 900; background: #7a1515;
}
.mobile-call-bar a {
  flex: 1; text-align: center; padding: 13px 8px;
  font-size: 0.88rem; font-weight: 700; color: #fff; transition: background 0.2s;
}
.mobile-call-bar a:first-child { border-right: 1px solid rgba(255,255,255,0.2); }
.mobile-call-bar a:hover { background: #5e1010; }

/* === FADE IN === */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.45s ease, transform 0.45s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   DARK MODE
   ===================================================== */
[data-theme="dark"] { --bg-main:#121212; --bg-alt:#1a1a1a; --bg-card:#1e1e1e; --text-main:#e8e8e8; --text-muted:#aaa; --border:#333; --accent:#e05555; }
[data-theme="dark"] body { background-color: var(--bg-main); color: var(--text-main); }
[data-theme="dark"] .about, [data-theme="dark"] .gallery, [data-theme="dark"] .appointment, [data-theme="dark"] .footer, [data-theme="dark"] .feedback-section { background: var(--bg-alt); }
[data-theme="dark"] .services, [data-theme="dark"] .reviews, [data-theme="dark"] .contact, [data-theme="dark"] .offers { background: var(--bg-main); }
[data-theme="dark"] .service-card, [data-theme="dark"] .review-card, [data-theme="dark"] .appt-form-wrap, [data-theme="dark"] .contact-item, [data-theme="dark"] .highlight-item, [data-theme="dark"] .offer-card, [data-theme="dark"] .fb-star-card, [data-theme="dark"] .feedback-form-panel { background: var(--bg-card); border-color: var(--border); }
[data-theme="dark"] .service-card, [data-theme="dark"] .review-card { border-top-color: var(--accent); }
[data-theme="dark"] .section-heading, [data-theme="dark"] .service-info h3, [data-theme="dark"] .reviewer-name, [data-theme="dark"] .contact-item strong, [data-theme="dark"] .offer-new { color: var(--accent); }
[data-theme="dark"] .section-sub, [data-theme="dark"] .about-text p, [data-theme="dark"] .service-info p, [data-theme="dark"] .review-card p, [data-theme="dark"] .appt-info p, [data-theme="dark"] .contact-item p, [data-theme="dark"] .offer-card p, [data-theme="dark"] .fb-panel-title, [data-theme="dark"] .fb-card-label { color: var(--text-muted); }
[data-theme="dark"] .offer-card h3, [data-theme="dark"] .fb-card-label { color: var(--text-main); }
[data-theme="dark"] .highlight-item { border-left-color: var(--accent); color: var(--text-main); }
[data-theme="dark"] .price-tag { background: #2a1010; border-color: #6b2020; color: #e05555; }
[data-theme="dark"] .appt-hours { background: var(--bg-card); border-color: var(--border); border-left-color: var(--accent); color: var(--text-muted); }
[data-theme="dark"] .form-row input, [data-theme="dark"] .form-row select, [data-theme="dark"] .form-row textarea,
[data-theme="dark"] .feedback-form .form-row input, [data-theme="dark"] .feedback-form .form-row select, [data-theme="dark"] .feedback-form .form-row textarea { background: #2a2a2a; border-color: #444; color: var(--text-main); }
[data-theme="dark"] .form-row input:focus, [data-theme="dark"] .form-row select:focus, [data-theme="dark"] .form-row textarea:focus,
[data-theme="dark"] .feedback-form .form-row input:focus, [data-theme="dark"] .feedback-form .form-row select:focus, [data-theme="dark"] .feedback-form .form-row textarea:focus { border-color: var(--accent); }
[data-theme="dark"] .form-row label, [data-theme="dark"] .feedback-form .form-row label { color: var(--text-main); }
[data-theme="dark"] .contact-item a { color: var(--text-muted); }
[data-theme="dark"] .contact-item a:hover, [data-theme="dark"] .contact-map { border-color: var(--border); }
[data-theme="dark"] .popup { background: var(--bg-card); border-color: var(--accent); }
[data-theme="dark"] .popup h3 { color: var(--text-main); }
[data-theme="dark"] .popup p { color: var(--text-muted); }
[data-theme="dark"] .info-bar { background: #3a0a0a; }
[data-theme="dark"] .about-img-wrap { border-color: var(--border); }
[data-theme="dark"] .gallery-item { background: #2a2a2a; }
[data-theme="dark"] .fb-star-card:hover { border-color: var(--accent); background: #2a1010; }
[data-theme="dark"] .fb-star-card[aria-pressed="true"] { border-color: var(--accent); background: #2a1010; }
[data-theme="dark"] .fb-selected-hint { background: #2a2010; border-color: #6a5010; border-left-color: #d4920a; }
[data-theme="dark"] .fb-hint-text { color: #d4a040; }
[data-theme="dark"] .offer-hot .offer-badge   { background:#2a1010; color:#e05555; border-color:#5a2020; }
[data-theme="dark"] .offer-bridal .offer-badge { background:#2a1020; color:#d070a0; border-color:#5a2040; }
[data-theme="dark"] .offer-hair .offer-badge  { background:#101828; color:#6090d0; border-color:#204060; }
[data-theme="dark"] .offer-facial .offer-badge { background:#101a14; color:#50b080; border-color:#205040; }

/* =====================================================
   RESPONSIVE — TABLET (max-width: 900px)
   ===================================================== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .offers-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 24px; }
  .about-img-wrap img { height: 260px; }
  .appt-grid     { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 24px; }
  .feedback-layout { grid-template-columns: 1fr; gap: 24px; }
  .contact-map iframe { height: 300px; }
}

/* =====================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   Hamburger menu + full mobile layout
   ===================================================== */
@media (max-width: 768px) {
  /* --- Top bar: hide on mobile to save space --- */
  .nav-topbar { display: none; }

  /* --- Navbar: show hamburger, hide desktop nav --- */
  .hamburger { display: flex; }
  .btn-book-nav { display: none; }

  /* Nav links: hidden by default, shown when .open is toggled */
  .nav-links {
    display: none;
    position: fixed;
    top: 52px; left: 0; right: 0;
    background: #5e1010;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 16px;
    z-index: 999;
    max-height: calc(100vh - 52px);
    overflow-y: auto;
    border-top: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  }
  .nav-links.open { display: flex; }

  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-link {
    display: block; padding: 13px 20px;
    font-size: 0.95rem; font-weight: 500;
    color: rgba(255,255,255,0.9); border-radius: 0; white-space: normal;
  }
  .nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.12); color: #fff; }

  /* Reduce lang/theme button size */
  .btn-lang, .btn-theme { width: 30px; height: 30px; font-size: 0.7rem; }
  .nav-controls { gap: 5px; }

  /* Hero: adjust for smaller navbar (52px, no topbar) */
  .hero { min-height: 60vh; padding-top: 52px; }
  .hero-content { margin-left: 0; padding: 32px 16px; max-width: 100%; text-align: center; }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-location { font-size: 0.85rem; }
  .hero-timing { font-size: 0.8rem; }
  .hero-btns { flex-direction: column; gap: 10px; align-items: center; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; max-width: 320px; padding: 13px 20px; }

  /* --- Info bar --- */
  .info-bar-inner { gap: 8px 16px; justify-content: flex-start; font-size: 0.78rem; }

  /* --- Sections --- */
  .section { padding: 32px 0; }
  .section-header { margin-bottom: 20px; }
  .section-heading { font-size: 1.25rem; }
  .section-sub { font-size: 0.82rem; }

  /* --- About --- */
  .about-grid { grid-template-columns: 1fr; gap: 18px; }
  .about-img-wrap img { height: 220px; }
  .about-highlights { grid-template-columns: 1fr; gap: 6px; }
  .about-text p { font-size: 0.86rem; }

  /* --- Services --- */
  .services-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card { padding: 14px 12px; gap: 12px; }
  .service-info h3 { font-size: 0.9rem; }
  .service-info p { font-size: 0.78rem; }

  /* --- Offers --- */
  .offers-grid { grid-template-columns: 1fr; gap: 12px; }
  .offer-card { padding: 16px 14px; }
  .offer-card h3 { font-size: 0.9rem; }
  .offer-card p { font-size: 0.78rem; }

  /* --- Gallery --- */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .gallery-overlay span { font-size: 0.62rem; padding: 3px 7px; }

  /* --- Reviews --- */
  .reviews-grid { grid-template-columns: 1fr; gap: 10px; }
  .review-card { padding: 14px 13px; }
  .review-card p { font-size: 0.82rem; }

  /* --- Appointment --- */
  .appt-grid { grid-template-columns: 1fr; gap: 20px; }
  .appt-link { font-size: 0.95rem; }
  .appt-form-wrap { padding: 18px 14px; }
  .appt-form { gap: 12px; }
  .form-row input, .form-row select, .form-row textarea { padding: 11px 12px; font-size: 0.9rem; }

  /* --- Contact --- */
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-map iframe { height: 250px; }
  .contact-btns { flex-direction: column; gap: 8px; }
  .contact-btns .btn-primary, .contact-btns .btn-whatsapp { width: 100%; padding: 13px; }

  /* --- Feedback --- */
  .feedback-layout { grid-template-columns: 1fr; gap: 18px; }
  .fb-star-card { padding: 11px 13px; gap: 10px; }
  .fb-card-stars { font-size: 0.88rem; min-width: 70px; }
  .fb-card-label { font-size: 0.82rem; }
  .feedback-form-panel { padding: 16px 14px; }
  .feedback-form { gap: 12px; }

  /* --- Footer --- */
  .footer-links { gap: 10px 14px; }
  .footer-tagline { font-size: 0.78rem; }

  /* --- Popup --- */
  .popup { padding: 24px 18px; }
  .popup h3 { font-size: 1rem; }
  .popup p { font-size: 0.82rem; }

  /* --- Fixed elements --- */
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 52px; }
  .float-whatsapp { bottom: 64px; right: 12px; width: 46px; height: 46px; }

  /* --- Lightbox --- */
  .lightbox-prev { left: 4px; padding: 6px 8px; font-size: 1.6rem; }
  .lightbox-next { right: 4px; padding: 6px 8px; font-size: 1.6rem; }
}

/* =====================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ===================================================== */
@media (max-width: 480px) {
  html { font-size: 15px; }

  .nav-container { height: 50px; }
  .nav-links { top: 50px; max-height: calc(100vh - 50px); }
  .hero { padding-top: 50px; min-height: 55vh; }
  .hero-content { padding: 24px 14px; }
  .hero-title { font-size: clamp(1.4rem, 8vw, 2rem); }
  .hero-subtitle { font-size: 0.85rem; }

  .section { padding: 24px 0; }
  .container { padding: 0 12px; }

  .services-grid { gap: 8px; }
  .service-card { padding: 12px 10px; gap: 10px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }

  .btn-lang, .btn-theme { width: 28px; height: 28px; font-size: 0.65rem; }
  .nav-controls { gap: 4px; }

  .fb-card-stars { min-width: 62px; font-size: 0.82rem; }
  .contact-map iframe { height: 220px; }

  .popup { padding: 20px 14px; }
  .float-whatsapp { bottom: 62px; right: 10px; width: 44px; height: 44px; }
}

/* =====================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   Used for consistent theming across the entire site
   ===================================================== */

:root {
  /* Brand Colors */
  --color-primary:        #7a1515;
  --color-primary-dark:   #5e1010;
  --color-primary-light:  #a02020;
  --color-accent:         #b05a2a;
  --color-whatsapp:       #25d366;
  --color-whatsapp-dark:  #1da851;

  /* Neutral Colors */
  --color-white:          #ffffff;
  --color-black:          #000000;
  --color-text:           #333333;
  --color-text-muted:     #666666;
  --color-text-light:     #999999;
  --color-bg:             #ffffff;
  --color-bg-alt:         #fdf5ec;
  --color-border:         #dddddd;
  --color-border-light:   #eeeeee;

  /* Cream / Warm tones */
  --color-cream:          #f0d8c0;
  --color-cream-dark:     #e8d5be;
  --color-cream-light:    #fdf5ec;

  /* Typography */
  --font-family:          'Poppins', Arial, sans-serif;
  --font-size-xs:         0.72rem;
  --font-size-sm:         0.82rem;
  --font-size-base:       1rem;
  --font-size-md:         1.1rem;
  --font-size-lg:         1.3rem;
  --font-size-xl:         1.5rem;
  --font-size-2xl:        2rem;
  --font-size-3xl:        3rem;

  /* Spacing */
  --space-xs:             4px;
  --space-sm:             8px;
  --space-md:             16px;
  --space-lg:             24px;
  --space-xl:             32px;
  --space-2xl:            48px;
  --space-3xl:            64px;

  /* Border Radius */
  --radius-sm:            3px;
  --radius-md:            6px;
  --radius-lg:            12px;
  --radius-full:          9999px;

  /* Shadows */
  --shadow-sm:            0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow-md:            0 3px 12px rgba(0, 0, 0, 0.10);
  --shadow-lg:            0 6px 24px rgba(0, 0, 0, 0.14);
  --shadow-xl:            0 12px 40px rgba(0, 0, 0, 0.18);

  /* Transitions */
  --transition-fast:      0.15s ease;
  --transition-base:      0.25s ease;
  --transition-slow:      0.45s ease;

  /* Z-index layers */
  --z-base:               1;
  --z-dropdown:           100;
  --z-sticky:             500;
  --z-navbar:             1000;
  --z-lightbox:           2000;
  --z-popup:              3000;
  --z-toast:              4000;

  /* Navbar heights */
  --navbar-topbar-h:      30px;
  --navbar-main-h:        52px;
  --navbar-total-h:       82px;
}

/* =====================================================
   UTILITY CLASSES
   Reusable helper classes for layout and styling
   ===================================================== */

/* Display utilities */
.d-flex        { display: flex; }
.d-grid        { display: grid; }
.d-block       { display: block; }
.d-none        { display: none; }
.d-inline      { display: inline; }
.d-inline-flex { display: inline-flex; }

/* Flex utilities */
.flex-center   { display: flex; align-items: center; justify-content: center; }
.flex-between  { display: flex; align-items: center; justify-content: space-between; }
.flex-col      { flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1        { flex: 1; }

/* Text utilities */
.text-center   { text-align: center; }
.text-left     { text-align: left; }
.text-right    { text-align: right; }
.text-upper    { text-transform: uppercase; }
.text-bold     { font-weight: 700; }
.text-semibold { font-weight: 600; }
.text-primary  { color: var(--color-primary); }
.text-muted    { color: var(--color-text-muted); }
.text-white    { color: var(--color-white); }
.text-sm       { font-size: var(--font-size-sm); }
.text-xs       { font-size: var(--font-size-xs); }

/* Spacing utilities */
.mt-0  { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-0  { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.p-sm  { padding: var(--space-sm); }
.p-md  { padding: var(--space-md); }
.p-lg  { padding: var(--space-lg); }

/* Width utilities */
.w-full  { width: 100%; }
.w-auto  { width: auto; }
.mw-sm   { max-width: 480px; }
.mw-md   { max-width: 720px; }
.mw-lg   { max-width: 1080px; }

/* Border utilities */
.border        { border: 1px solid var(--color-border); }
.border-top    { border-top: 1px solid var(--color-border); }
.border-bottom { border-bottom: 1px solid var(--color-border); }
.border-primary { border-color: var(--color-primary); }
.rounded-sm    { border-radius: var(--radius-sm); }
.rounded-md    { border-radius: var(--radius-md); }
.rounded-full  { border-radius: var(--radius-full); }

/* Background utilities */
.bg-white      { background-color: var(--color-white); }
.bg-alt        { background-color: var(--color-bg-alt); }
.bg-primary    { background-color: var(--color-primary); }

/* Overflow utilities */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* Visibility */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =====================================================
   KEYFRAME ANIMATIONS
   Reusable CSS animations used across the site
   ===================================================== */

/* Fade in from bottom */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in from top */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in from left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade in from right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Simple fade in */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scale in */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pulse glow for CTA buttons */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(122, 21, 21, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(122, 21, 21, 0);
  }
}

/* Bounce for back-to-top arrow */
@keyframes bounceUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

/* Shimmer loading effect */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Counter number roll */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Spin for loading indicators */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Slide in from bottom (mobile menu) */
@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   SCROLL PROGRESS BAR
   Fixed bar at top showing page scroll percentage
   ===================================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #b05a2a, #7a1515, #e05555);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* =====================================================
   BACK TO TOP BUTTON
   Appears after scrolling down, smooth scroll to top
   ===================================================== */

.back-to-top {
  position: fixed;
  bottom: 130px;
  right: 20px;
  z-index: 850;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s;
  box-shadow: var(--shadow-md);
  font-family: inherit;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: bounceUp 2s ease-in-out infinite;
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  animation: none;
  transform: translateY(-2px);
}

[data-theme="dark"] .back-to-top {
  background: #e05555;
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .back-to-top:hover {
  background: #c03030;
}

/* =====================================================
   STATS / ACHIEVEMENTS SECTION
   Animated counter numbers showing salon achievements
   ===================================================== */

.stats {
  background: var(--color-primary);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  display: inline-block;
  animation: countUp 0.6s ease forwards;
}

.stat-plus {
  display: inline-block;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--color-cream);
  vertical-align: top;
  margin-top: 4px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Dark mode stats */
[data-theme="dark"] .stats {
  background: #2a0808;
}

/* Stats responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 12px;
  }
  .stat-item:nth-child(2),
  .stat-item:nth-child(4) {
    border-right: none;
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .stat-number { font-size: 1.8rem; }
  .stat-label  { font-size: 0.72rem; }
}

/* =====================================================
   FAQ SECTION
   Accordion-style frequently asked questions
   ===================================================== */

.faq {
  background: var(--color-white);
}

[data-theme="dark"] .faq {
  background: #121212;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
}

/* Each FAQ item container */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(122, 21, 21, 0.08);
}

[data-theme="dark"] .faq-item {
  border-color: #333;
}

[data-theme="dark"] .faq-item.open {
  border-color: #e05555;
  box-shadow: 0 0 0 2px rgba(224, 85, 85, 0.1);
}

/* FAQ question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--color-white);
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.faq-question:hover {
  background: #fdf5ec;
  color: var(--color-primary);
}

.faq-item.open .faq-question {
  background: #fff5f5;
  color: var(--color-primary);
}

[data-theme="dark"] .faq-question {
  background: #1e1e1e;
  color: #e8e8e8;
}

[data-theme="dark"] .faq-question:hover {
  background: #2a1010;
  color: #e05555;
}

[data-theme="dark"] .faq-item.open .faq-question {
  background: #2a1010;
  color: #e05555;
}

/* FAQ icon (+/-) */
.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition-base), color var(--transition-fast);
  width: 22px;
  text-align: center;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

[data-theme="dark"] .faq-icon {
  color: #e05555;
}

/* FAQ answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: var(--color-white);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 18px 18px;
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--color-border-light);
  padding-top: 14px;
}

[data-theme="dark"] .faq-answer {
  background: #1e1e1e;
}

[data-theme="dark"] .faq-answer p {
  color: #aaa;
  border-top-color: #2a2a2a;
}

/* FAQ responsive */
@media (max-width: 768px) {
  .faq-list { max-width: 100%; }
  .faq-question { font-size: 0.88rem; padding: 14px 14px; }
  .faq-answer p { font-size: 0.82rem; padding: 0 14px 14px; padding-top: 12px; }
}

@media (max-width: 480px) {
  .faq-question { font-size: 0.84rem; padding: 12px 12px; gap: 10px; }
  .faq-icon { font-size: 1.1rem; width: 18px; }
}
