/* ==========================================================================
   HAYAL MASAJ SPA SALONU - PREMIUM LUXURY STYLESHEET
   Location: Ceylanpınar / Şanlıurfa
   Palette: Warm Beige, Cream, Charcoal / Deep Coffee, Champagne Soft Gold
   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: #191715;
  --bg-card: #211e1b;
  --bg-card-hover: #292521;
  --bg-surface: #2e2924;
  --bg-overlay: rgba(18, 17, 16, 0.82);
  --bg-glass: rgba(28, 25, 22, 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.22);
  --gold-border: rgba(212, 175, 55, 0.3);

  --accent-warm: #362a22;
  --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);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.18);

  /* Layout */
  --container-max: 1200px;
  --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);
  --tr-slow: 0.7s 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;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
}

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

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

.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: 100px;
  padding-bottom: 100px;
  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;
  position: relative;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  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.9rem;
  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 26px rgba(212, 175, 55, 0.45);
}

.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 30px rgba(212, 175, 55, 0.45);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

.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.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

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

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

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

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

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

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--tr-smooth);
}

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

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

.header-phone-btn {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.header-cta-btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.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);
  transition: all var(--tr-smooth);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  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 24px;
  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: 36px;
  padding-bottom: 16px;
  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.4rem;
  color: var(--text-muted);
  padding: 4px;
}

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

.mobile-nav-link {
  font-size: 1.1rem;
  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: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

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

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

.drawer-contact-info .drawer-tel {
  display: inline-block;
  margin-top: 6px;
  font-size: 1.1rem;
  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 --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.38) contrast(1.05);
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(18, 17, 16, 0.7) 0%,
    rgba(18, 17, 16, 0.5) 45%,
    rgba(18, 17, 16, 0.95) 100%
  );
}

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

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

.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.8rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--text-main);
}

.hero-subtitle-lead {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-description {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 34px auto;
  font-weight: 300;
}

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

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

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

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

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

.pill-tel-link strong {
  color: var(--gold-primary);
}

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

/* --- 7. EDITORIAL ABOUT SECTION --- */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-lg);
}

.editorial-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.image-frame:hover .editorial-img {
  transform: scale(1.03);
}

.frame-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 8px 16px;
  background: rgba(18, 17, 16, 0.85);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}

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

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

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

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

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

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

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

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

.card-media {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.service-card:hover .card-media img {
  transform: scale(1.06);
}

.card-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(33, 30, 27, 0.9) 100%);
}

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

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

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

.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.45rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--font-sans);
}

.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.76rem;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  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.86rem;
  font-weight: 600;
  transition: all var(--tr-fast);
}

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

/* Signature Card (Padişah Masajı) */
.service-card-signature {
  border-color: var(--border-gold-subtle);
  background: linear-gradient(180deg, #24201c 0%, #1c1916 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.signature-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background: var(--gold-gradient);
  color: #12100d;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-sub-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.signature-price .amount {
  color: #ffde7a;
  font-size: 1.6rem;
}

/* --- 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: 48px;
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.direct-contact-box .contact-icon {
  width: 48px;
  height: 48px;
  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.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

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

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

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

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

.form-input,
.form-select {
  width: 100%;
  padding: 13px 16px;
  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.95rem;
  outline: none;
  transition: all var(--tr-fast);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  background: rgba(18, 17, 16, 0.9);
}

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

.form-error {
  display: none;
  font-size: 0.8rem;
  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: 12px;
  margin-top: 4px;
}

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

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

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

.legal-inline-link:hover {
  color: var(--gold-primary);
}

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

/* 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: 36px;
  text-align: center;
}

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

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

.booking-success-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

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

/* --- 10. GALLERY SECTION --- */
.editorial-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

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

.gallery-item.item-large {
  grid-column: span 2;
}

.gallery-item.item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 17, 16, 0.7);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--tr-smooth);
}

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

.overlay-content {
  display: flex;
  flex-direction: column;
}

.gallery-brand {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.gallery-sub {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 6px;
}

.zoom-btn {
  font-size: 0.8rem;
  color: var(--gold-light);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-smooth);
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox-content-box {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 1.8rem;
  color: #fff;
}

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

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

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

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color var(--tr-fast);
}

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

.faq-icon {
  font-size: 1.4rem;
  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 24px;
}

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

.faq-answer p {
  font-size: 0.92rem;
  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: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

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

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

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

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

.contact-icon {
  width: 44px;
  height: 44px;
  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.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

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

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

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

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

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

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

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

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

.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: 12px 14px;
  border-radius: var(--radius-sm);
}

.loc-notice p {
  font-size: 0.82rem;
  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: 64px;
  background: rgba(18, 17, 16, 0.96);
  border-top: 1px solid var(--border-gold-subtle);
  backdrop-filter: blur(14px);
  z-index: 1500;
  padding: 8px 16px;
  gap: 12px;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  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: 80px;
  padding-bottom: 40px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

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

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

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

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--tr-fast);
}

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

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

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

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

.legal-link-nav {
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--tr-fast);
}

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

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

/* --- 15. POLICY MODALS --- */
.policy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-smooth);
}

.policy-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.policy-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.policy-modal-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 680px;
  max-height: 80vh;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.policy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.2);
}

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

.policy-close-btn {
  font-size: 1.4rem;
  color: var(--text-muted);
  padding: 4px;
}

.policy-modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.policy-modal-body h4 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-top: 18px;
  margin-bottom: 8px;
}

.policy-modal-body p {
  margin-bottom: 12px;
}

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

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

.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; }

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

@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: 36px;
  }

  .editorial-img {
    height: 340px;
  }

  .appointment-card,
  .contact-card-wrapper {
    padding: 28px 20px;
  }

  .editorial-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.item-large,
  .gallery-item.item-wide {
    grid-column: span 1;
  }

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

  body {
    padding-bottom: 64px;
  }
}

@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: 16px 20px;
    border-radius: var(--radius-md);
  }

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

  .editorial-gallery-grid {
    grid-template-columns: 1fr;
  }

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

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