/* ==========================================================================
   HAYAL MASAJ SPA SALONU - PREMIUM LUXURY STYLESHEET
   Location: Ceylanpınar / Şanlıurfa
   Domain: https://hayalmasajspaceylanpinar.com/
   Palette: Warm Beige, Cream, Deep Charcoal / Coffee, Soft Gold Details
   Typography: Cormorant Garamond (Serif), Plus Jakarta Sans (Sans-serif)
   Google Ads Compliant, Clean, Fast, High Aesthetics
   ========================================================================== */

/* --- 1. CSS VARIABLES & TOKENS --- */
:root {
  /* Color System */
  --bg-primary: #121110;
  --bg-secondary: #181614;
  --bg-card: #201d1a;
  --bg-card-hover: #27231f;
  --bg-surface: #2d2823;
  --bg-overlay: rgba(18, 17, 16, 0.85);

  --text-main: #f5f2ec;
  --text-muted: #b8b0a5;
  --text-dim: #8c8378;

  --gold-primary: #d4af37;
  --gold-light: #f4e8c1;
  --gold-dark: #9c7f28;
  --gold-gradient: linear-gradient(135deg, #f7e8b6 0%, #d4af37 50%, #aa820a 100%);
  --gold-glow: rgba(212, 175, 55, 0.18);
  --gold-border: rgba(212, 175, 55, 0.28);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold-subtle: rgba(212, 175, 55, 0.22);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);

  /* Layout */
  --container-max: 1180px;
  --header-height: 84px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --tr-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  background-color: var(--bg-primary);
  color: var(--text-main);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
}

/* --- 3. AMBIENT GLOWS & UTILITIES --- */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
}

.glow-top {
  top: -150px;
  right: -100px;
}

.glow-middle {
  top: 45%;
  left: -200px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

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

.text-gold {
  color: var(--gold-primary);
}

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

.section {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
}

/* --- 4. BUTTONS & CTA --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--tr-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0e0d0b;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

.btn-gold-solid {
  background: var(--gold-gradient);
  color: #12100d;
  font-weight: 700;
}

.btn-gold-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-lg {
  padding: 15px 34px;
  font-size: 0.92rem;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.8rem;
}

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

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn-primary:hover .btn-shine {
  left: 150%;
}

/* --- 5. HEADER / NAVIGATION --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--tr-smooth);
  background: rgba(18, 17, 16, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header.scrolled {
  height: 72px;
  background: rgba(18, 17, 16, 0.96);
  border-bottom-color: var(--border-gold-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--text-main);
  font-weight: 600;
}

.logo-symbol {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.logo-text span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  display: block;
  font-weight: 500;
}

.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color var(--tr-fast);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone-btn {
  padding: 9px 16px;
  font-size: 0.84rem;
}

.header-cta-btn {
  padding: 9px 20px;
  font-size: 0.84rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 8px;
}

.hamburger-line {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--gold-primary);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 290px;
  height: 100vh;
  background-color: var(--bg-secondary);
  border-left: 1px solid var(--border-gold-subtle);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  transition: right var(--tr-smooth);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
}

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

.drawer-close {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav-link:hover {
  color: var(--gold-primary);
}

.drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.drawer-contact-info .drawer-loc {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-main);
}

.drawer-contact-info .drawer-subloc {
  font-size: 0.82rem;
  color: var(--gold-primary);
}

.drawer-contact-info .drawer-tel {
  display: inline-block;
  margin-top: 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-smooth);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- 6. HERO SECTION (PURE CSS LUXURY) --- */
.hero-pure-luxury {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 70px;
  background: radial-gradient(circle at 50% 20%, #29241f 0%, #161413 55%, #121110 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-primary);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--text-main);
}

.hero-subtitle-lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 14px;
}

.hero-description {
  font-size: clamp(0.96rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 32px auto;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* Business Info Pill */
.business-info-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 26px;
  background: rgba(32, 29, 26, 0.85);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  margin-top: 10px;
  flex-wrap: wrap;
}

.info-pill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.info-pill-divider {
  width: 1px;
  height: 16px;
  background: var(--border-gold-subtle);
}

.pill-tel-link {
  color: var(--gold-primary);
  font-weight: 700;
}

.pill-tel-link:hover {
  text-decoration: underline;
}

/* --- 7. ABOUT SECTION & INFO BRAND CARD --- */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.info-brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.brand-card-icon {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.info-brand-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

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

.brand-card-divider {
  height: 1px;
  background: var(--border-gold-subtle);
  margin-bottom: 20px;
}

.brand-card-detail {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.brand-card-detail strong {
  color: var(--text-main);
}

.lead-text {
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 14px;
}

.body-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.features-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-main);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: bold;
}

/* --- 8. SERVICES & PRICING GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  transition: all var(--tr-smooth);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-subtle);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}

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

.card-header-group {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  gap: 8px;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
}

.service-price {
  text-align: right;
  white-space: nowrap;
}

.service-price .currency {
  font-size: 0.8rem;
  color: var(--gold-primary);
  margin-right: 2px;
}

.service-price .amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
  flex: 1;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.card-features span {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
}

.btn-card-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-card-action:hover {
  background: var(--gold-gradient);
  color: #100f0d;
}

.service-card-signature {
  border-color: var(--border-gold-subtle);
  background: linear-gradient(180deg, #25201c 0%, #1c1916 100%);
}

/* --- 9. APPOINTMENT FORM SECTION --- */
.appointment-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.appointment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.appointment-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.appointment-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.appointment-direct-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.direct-contact-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
}

.direct-contact-box .contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.direct-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.direct-phone {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
}

.direct-contact-badge {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
}

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-main);
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(18, 17, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--gold-primary);
}

.form-select option {
  background: #1e1b18;
  color: #fff;
}

.form-error {
  display: none;
  font-size: 0.78rem;
  color: #ff7b7b;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select {
  border-color: #ff5e5e;
}

.form-group.has-error .form-error {
  display: block;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.form-checkbox {
  margin-top: 4px;
  accent-color: var(--gold-primary);
  width: 17px;
  height: 17px;
}

.checkbox-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.legal-inline-link {
  color: var(--gold-light);
  text-decoration: underline;
}

.form-disclaimer-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}

/* Success Box */
.booking-success-box {
  background: rgba(33, 40, 30, 0.9);
  border: 1px solid rgba(100, 200, 100, 0.3);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(100, 200, 100, 0.2);
  color: #7ce87c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.booking-success-box h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 10px;
}

.booking-success-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- 10. GALLERY NOTICE CARD --- */
.gallery-notice-card {
  max-width: 680px;
  margin: 40px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
}

.notice-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.gallery-notice-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.gallery-notice-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

/* --- 11. FAQ ACCORDION --- */
.faq-accordion-wrapper {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--border-gold-subtle);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
}

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

.faq-icon {
  font-size: 1.3rem;
  color: var(--gold-primary);
  transition: transform var(--tr-smooth);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-smooth);
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- 12. CONTACT SECTION --- */
.contact-card-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-lead {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.info-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.info-val {
  font-size: 0.92rem;
  color: var(--text-main);
}

.info-phone-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
}

.verified-location-card {
  background: rgba(18, 17, 16, 0.75);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.loc-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loc-symbol {
  font-size: 1.3rem;
}

.loc-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-light);
}

.loc-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.loc-details strong {
  color: var(--text-main);
}

.loc-details a {
  color: var(--gold-primary);
  font-weight: 700;
}

.loc-notice {
  background: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--gold-primary);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.loc-notice p {
  font-size: 0.8rem;
  color: var(--gold-light);
  line-height: 1.5;
}

/* --- 13. MOBILE STICKY CTA BAR --- */
.mobile-sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(18, 17, 16, 0.96);
  border-top: 1px solid var(--border-gold-subtle);
  backdrop-filter: blur(12px);
  z-index: 1500;
  padding: 8px 14px;
  gap: 10px;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cta-call {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-gold-subtle);
  color: var(--gold-light);
}

.cta-book {
  background: var(--gold-gradient);
  color: #12100d;
}

/* --- 14. FOOTER --- */
.site-footer {
  background: #0d0c0b;
  border-top: 1px solid var(--border-subtle);
  padding-top: 70px;
  padding-bottom: 36px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 36px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 14px;
}

.footer-about {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-nap p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-tel {
  color: var(--gold-primary);
  font-weight: 700;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

.hours-text {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.legal-link-nav {
  color: var(--text-muted);
}

.legal-link-nav:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}

.footer-legal-links .sep {
  color: var(--text-dim);
}

/* --- 15. REVEAL ANIMATIONS --- */
.reveal-fade,
.reveal-fade-up,
.reveal-fade-left,
.reveal-fade-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up { transform: translateY(24px); }
.reveal-fade-left { transform: translateX(24px); }
.reveal-fade-right { transform: translateX(-24px); }

.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- 16. RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 868px) {
  .desktop-nav,
  .header-actions .header-phone-btn,
  .header-actions .header-cta-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .editorial-grid,
  .appointment-grid,
  .contact-card-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .appointment-card,
  .contact-card-wrapper {
    padding: 26px 18px;
  }

  .mobile-sticky-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .business-info-pill {
    flex-direction: column;
    gap: 8px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
  }

  .info-pill-divider {
    display: none;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
