/* ============================================
   ROYAL MEDICAL SPA — REDESIGNED STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --gold-dark: #A88B50;
  --cream: #FAF7F2;
  --charcoal: #2C2C2C;
  --soft-black: #1A1A1A;
  --warm-gray: #8A8278;
  --light-gray: #B5AFA6;
  --blush: #E8D5C4;
  --white: #FFFFFF;
  --sage: #A8B5A0;
  --section-bg: #F5F2ED;
  --border-light: rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-y: scroll;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--warm-gray);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 16px auto 0;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--soft-black);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,162,101,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--soft-black);
}

.btn-dark {
  background: var(--soft-black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== STICKY HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--soft-black);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 500;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  position: relative;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--gold-light);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

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

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: -200px;
  width: 680px;
  background: var(--soft-black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
  margin-top: 20px;
}

.mega-menu-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mega-menu-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.mega-menu-col a:hover {
  color: var(--gold-light);
}

.mega-menu-col a::after { display: none; }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-review {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.header-review .stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}

.header-chat-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.header-chat-btn:hover {
  background: var(--gold);
  color: var(--soft-black);
}

.header-chat-btn svg { flex-shrink: 0; }

.header-phone {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.header-phone:hover { color: var(--gold-light); }

.header-cta {
  background: var(--gold);
  color: var(--soft-black);
  padding: 8px 16px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile nav - hidden by default */
.mobile-nav {
  display: none;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1e1b18 0%, #2d2925 40%, #1e1b18 100%);
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.4) 60%, rgba(26,26,26,0.2) 100%);
  z-index: 1;
}

.hero-video-placeholder {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.png') center center / cover no-repeat;
  z-index: 0;
}

.hero-video-label {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
  border: 1px dashed rgba(255,255,255,0.12);
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: var(--white);
  padding: 40px 0;
}

.hero-content .section-label {
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust-badge {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.trust-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--white);
}

.trust-card .stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.trust-card .rating {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.trust-card .count {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.trust-card .source {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 22px 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--warm-gray);
  font-weight: 500;
}

.trust-icon {
  width: 38px;
  height: 38px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

/* ===== TREATMENTS / SERVICES ===== */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border-light);
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.treatment-img {
  height: 200px;
  background: linear-gradient(135deg, #d4c5b5, #c4a89a);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-img-placeholder {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.treatment-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(26,26,26,0.7);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.treatment-info {
  padding: 24px;
}

.treatment-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.treatment-desc {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.treatment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.treatment-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}

.treatment-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--warm-gray);
}

.treatment-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.treatment-link:hover { color: var(--gold-dark); }

.treatment-link::after {
  content: '→';
  transition: transform var(--transition);
}

.treatment-link:hover::after {
  transform: translateX(4px);
}

/* Filter buttons */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-gray);
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.filter-btn:hover { border-color: var(--gold); color: var(--gold); }

.filter-btn.active {
  background: var(--soft-black);
  color: var(--white);
  border-color: var(--soft-black);
}

/* ===== BEFORE & AFTER ===== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ba-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
  position: relative;
}

.ba-before, .ba-after {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ba-before {
  background: linear-gradient(135deg, #c8beb0, #b5a898);
  color: rgba(255,255,255,0.7);
}

.ba-after {
  background: linear-gradient(135deg, #d8cfc0, #c8bca8);
  color: rgba(255,255,255,0.7);
}

.ba-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
}

.ba-info {
  padding: 18px;
}

.ba-treatment {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 4px;
}

.ba-detail {
  font-size: 12px;
  color: var(--warm-gray);
}

.ba-consent {
  text-align: center;
  font-size: 11px;
  color: var(--light-gray);
  margin-top: 24px;
  font-style: italic;
}

/* ===== TEAM SECTION ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.team-photo {
  width: 200px;
  height: 200px;
  background-color: #e8e4de;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 20%;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.9);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-placeholder {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.team-role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto 16px;
}

.team-book-btn {
  display: inline-flex;
  padding: 10px 24px;
  border: 1.5px solid var(--gold);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.team-book-btn:hover {
  background: var(--gold);
  color: var(--soft-black);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 22px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-service {
  font-size: 12px;
  color: var(--warm-gray);
  margin-top: 2px;
}

/* ===== PARTNERS CAROUSEL ===== */
.partners {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.partners-wrapper {
  overflow: hidden;
  padding: 36px 0;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scroll-partners 25s linear infinite;
  width: max-content;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 70px;
  flex-shrink: 0;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: all var(--transition);
}

.partner-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: var(--soft-black);
  color: var(--white);
  padding: 70px 0 30px;
}

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

.footer-brand .logo-text {
  font-size: 22px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.footer-contact-item .icon { font-size: 16px; flex-shrink: 0; }

.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--gold-light); }

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,162,101,0.08);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--soft-black) 0%, #2d2925 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 20px;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ===== TREATMENT DETAIL PAGE ===== */
.treatment-hero {
  background: linear-gradient(135deg, #1e1b18, #2d2925);
  padding: 120px 0 80px;
  margin-top: var(--header-height);
  color: var(--white);
}

.treatment-hero .section-label { color: var(--gold); }

.treatment-hero h1 { margin-bottom: 16px; }

.treatment-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.treatment-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.treatment-sidebar {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 32px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.treatment-sidebar h4 {
  margin-bottom: 16px;
}

.sidebar-detail {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.sidebar-detail .label { color: var(--warm-gray); }
.sidebar-detail .value { font-weight: 600; }

.treatment-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.area-chip {
  background: var(--section-bg);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  text-align: center;
  font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.contact-building-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
}

.contact-building-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  background: var(--section-bg);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-trust-badge { display: none; }
  .header-review { display: none; }
  .header-phone { display: none; }
  .mega-menu { width: 500px; left: -100px; grid-template-columns: repeat(2, 1fr); }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .treatment-detail-grid { grid-template-columns: 1fr; }
  .treatment-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --header-height: 68px; }

  .header-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-right { gap: 12px; }

  /* Mobile nav overlay */
  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--soft-black);
    z-index: 999;
    padding: 30px;
    display: none;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
  }

  .mobile-nav.open { display: flex; }

  .mobile-nav > a,
  .mobile-nav > button {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    text-align: left;
    font-family: inherit;
    text-decoration: none;
  }

  .mobile-nav > a:hover,
  .mobile-nav > button:hover { color: var(--gold-light); }

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

  .mobile-nav-dropdown-toggle .mobile-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: rgba(255,255,255,0.4);
    margin-left: 8px;
  }

  .mobile-nav-dropdown-toggle.open {
    color: var(--gold);
  }

  .mobile-nav-dropdown-toggle.open .mobile-arrow {
    transform: rotate(180deg);
    color: var(--gold);
  }

  .mobile-nav-services {
    display: none;
    flex-direction: column;
    padding: 4px 0 8px 20px;
  }

  .mobile-nav-services.open {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .mobile-nav-services-group-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 12px 0 4px;
    pointer-events: none;
  }

  .mobile-nav-services a {
    display: block;
    padding: 9px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    border-bottom: none;
    text-decoration: none;
  }

  .mobile-nav-services a:hover {
    color: var(--gold-light);
  }

  .mobile-nav .mobile-cta {
    margin-top: 20px;
    text-align: center;
  }

  .hero { min-height: 80vh; }
  .hero-content { padding: 30px 0; }
  .hero-content h1 { font-size: 32px; }

  .container { padding: 0 20px; }
  .section { padding: 70px 0; }

  .treatments-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-building-photo { height: 260px; }
  .contact-map { height: 260px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .trust-bar-inner { gap: 24px; padding: 18px 0; }
  .trust-item { font-size: 12px; }

  .mega-menu { display: none; }
}

/* ===== UTILITY ===== */
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-section { background: var(--section-bg); }
.bg-dark { background: var(--soft-black); color: var(--white); }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
