/* ============================================
   MUSKAN RUSSIAN SPA — Shared Stylesheet v2.0
   Clean rebuild for SEO performance
   ============================================ */

/* Google Fonts - loaded via HTML link */
:root {
  --primary:     #8b1a6b;
  --primary-dark:#5a0f45;
  --gold:        #c9952a;
  --gold-light:  #f0c040;
  --teal:        #1a5f5f;
  --teal-dark:   #0d3d3d;
  --bg-dark:     #0f0f1a;
  --bg-mid:      #1a1a2e;
  --bg-card:     #16213e;
  --white:       #ffffff;
  --off-white:   #f5f0eb;
  --text-light:  #ccc8d4;
  --text-body:   #e8e4f0;
  --border:      rgba(201,149,42,0.25);
  --shadow:      0 8px 32px rgba(0,0,0,0.4);
  --radius:      12px;
  --radius-sm:   6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--text-light); }
a  { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }

/* ── TOP ANNOUNCEMENT BAR ───────────────────── */
.top-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.top-bar a { color: var(--gold-light); font-weight: 700; }

/* ── NAVIGATION ─────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15,15,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(201,149,42,0.15); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(15,15,26,0.98);
    flex-direction: column;
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ── HERO SECTION ───────────────────────────── */
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(139,26,107,0.85) 0%, rgba(15,15,26,0.92) 60%),
    url('/assets/hero-bg.jpg') center/cover no-repeat;
  padding: 80px 20px;
}
.hero-inner { max-width: 760px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,149,42,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.82); margin-bottom: 32px; max-width: 620px; }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stat strong { display: block; font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.hero-stat span   { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(139,26,107,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,26,107,0.6); color: var(--white); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); color: var(--white); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--bg-dark); }

/* ── BREADCRUMB ─────────────────────────────── */
.breadcrumb {
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: #888;
}
.breadcrumb .container { display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: #555; }

/* ── SECTION LABELS ─────────────────────────── */
.section-label {
  display: inline-block;
  background: rgba(201,149,42,0.12);
  border: 1px solid rgba(201,149,42,0.35);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 20px;
}
.trust-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}
.trust-item .trust-icon { font-size: 1.6rem; margin-bottom: 6px; }
.trust-item strong { display: block; color: var(--white); font-size: 0.95rem; }
.trust-item span { font-size: 0.78rem; color: var(--text-light); }

/* ── SERVICE CARDS ──────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,149,42,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; color: var(--white); }
.service-card p  { font-size: 0.9rem; color: var(--text-light); margin-bottom: 14px; }
.service-price {
  display: inline-block;
  background: rgba(201,149,42,0.12);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(201,149,42,0.3);
}

/* ── BENEFITS / FEATURE LIST ────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.benefit-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  background: rgba(201,149,42,0.1);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,149,42,0.2);
}
.benefit-text strong { display: block; color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.benefit-text span   { font-size: 0.85rem; color: var(--text-light); }

/* ── COMPARISON TABLE ───────────────────────── */
.compare-wrap { overflow-x: auto; margin-top: 24px; border-radius: var(--radius); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 560px; }
.compare-table th {
  background: linear-gradient(135deg, var(--primary-dark), var(--bg-mid));
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-light);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.compare-table .yes { color: #4ade80; font-weight: 600; }
.compare-table .no  { color: #f87171; }

/* ── FAQ ────────────────────────────────────── */
.faq-list { margin-top: 28px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: none;
  color: var(--white);
  text-align: left;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.faq-q:hover { background: rgba(201,149,42,0.08); }
.faq-q .faq-icon { font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s; color: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  background: rgba(0,0,0,0.2);
  padding: 0 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 400px; padding: 16px 20px; }

/* ── INTERNAL LINK GRID ─────────────────────── */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.link-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.link-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.link-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,149,42,0.1);
  border: 1px solid rgba(201,149,42,0.25);
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.link-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--white); font-family: 'Inter', sans-serif; }
.link-card h4 a { color: var(--gold); font-weight: 700; }
.link-card p  { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ── CTA SECTION ────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-mid) 50%, var(--teal-dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 72px 20px;
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section p  { font-size: 1.05rem; margin-bottom: 32px; color: rgba(255,255,255,0.75); }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-meta {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.cta-meta strong { color: rgba(255,255,255,0.75); }

/* ── LOCATION SECTION ───────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.location-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: border-color 0.2s;
}
.location-card:hover { border-color: rgba(201,149,42,0.4); }
.location-dist { font-size: 0.78rem; font-weight: 700; color: var(--gold); letter-spacing: 0.04em; margin-bottom: 6px; }
.location-card h4 { color: var(--white); margin-bottom: 6px; font-size: 0.95rem; }
.location-card p  { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ── FOOTER ─────────────────────────────────── */
.site-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 56px 20px 28px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
.footer-brand .nav-logo { font-size: 1.2rem; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 18px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.85rem; }
.footer-contact-item .icon { width: 28px; height: 28px; background: rgba(201,149,42,0.1); border: 1px solid rgba(201,149,42,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 14px; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-light); font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #555;
}
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: var(--gold); }

/* ── FLOATING CTAs ──────────────────────────── */
.float-call {
  position: fixed;
  bottom: 86px;
  right: 20px;
  z-index: 999;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(139,26,107,0.6);
  transition: transform 0.2s;
  text-decoration: none;
}
.float-call:hover { transform: scale(1.1); color: var(--white); }
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.55);
  transition: transform 0.2s;
  text-decoration: none;
}
.float-wa:hover { transform: scale(1.1); color: var(--white); }

/* ── UTILITY ────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.bg-darker   { background: var(--bg-mid); }
.bg-darkest  { background: rgba(0,0,0,0.25); }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--gold)); border-radius: 2px; margin: 12px 0 24px; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 640px) {
  .hero { min-height: 60vh; padding: 60px 16px; }
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 1.3rem; }
  section { padding: 48px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
