/* =========================================
   DOSTAR SAUNAPARK – Main Stylesheet
   Dark theme · Wood tones · Premium feel
   ========================================= */

/* ===== CSS Variables ===== */
:root {
  --gold: #aa7942;
  --gold-light: #c99a5a;
  --gold-dark: #8a6030;
  --bg-dark: #0e0e0e;
  --bg-card: #161616;
  --bg-panel: #1e1e1e;
  --bg-section: #131313;
  --text-primary: #f0ebe4;
  --text-secondary: #b8a898;
  --text-muted: #6e6258;
  --border: rgba(170, 121, 66, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 24px rgba(170, 121, 66, 0.25);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Raleway', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: var(--shadow-gold);
  animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(170, 121, 66, 0.35); }
  50%       { box-shadow: 0 4px 32px rgba(170, 121, 66, 0.65), 0 0 0 6px rgba(170, 121, 66, 0.08); }
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(170, 121, 66, 0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(240, 235, 228, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(170, 121, 66, 0.08);
}

.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img { height: 40px; width: auto; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  color: rgba(240, 235, 228, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 2px;
}

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

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  flex-shrink: 0;
}

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

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 7, 4, 0.55) 0%,
    rgba(10, 7, 4, 0.45) 40%,
    rgba(10, 7, 4, 0.82) 80%,
    rgba(10, 7, 4, 0.97) 100%
  );
}

/* Fallback wood gradient when no image */
.hero-bg:not(:has(.hero-img)) {
  background: radial-gradient(ellipse at 30% 40%, #3d2410 0%, #1a0e06 40%, #0e0e0e 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-tagline {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7);
}

.hero-title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 6px 40px rgba(0,0,0,0.8);
}

.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #fff;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 4px 20px rgba(0,0,0,0.7);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.hero-scroll span {
  display: block;
  width: 1.5px;
  height: 12px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDots 1.5s ease-in-out infinite;
}

.hero-scroll span:nth-child(2) { animation-delay: 0.2s; opacity: 0.6; }
.hero-scroll span:nth-child(3) { animation-delay: 0.4s; opacity: 0.3; }

@keyframes scrollDots {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.6); }
}

/* ===== Hero Steam ===== */
.hero-steam {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.steam-wisp {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 60%,
    rgba(240, 220, 195, 0.32) 0%,
    rgba(220, 200, 175, 0.14) 45%,
    transparent 70%
  );
  filter: blur(18px);
  animation: steamRise linear infinite;
  opacity: 0;
}

@keyframes steamRise {
  0%   { transform: translateY(0)      translateX(0)                 scale(1);   opacity: 0; }
  12%  { opacity: 1; }
  55%  { opacity: 0.5; }
  85%  { opacity: 0.15; }
  100% { transform: translateY(-75vh)  translateX(var(--drift, 0px)) scale(3.5); opacity: 0; }
}

/* ===== Hero Particles ===== */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles .particle {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 121, 66, 0.9) 0%, rgba(200, 140, 60, 0) 70%);
  animation: floatUp linear infinite;
  opacity: 0;
}

@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0) scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-45vh) translateX(var(--drift)) scale(0.8); opacity: 0.6; }
  90%  { opacity: 0.1; }
  100% { transform: translateY(-100vh) translateX(calc(var(--drift) * 1.5)) scale(0.3); opacity: 0; }
}

/* Hero line accent */
.hero-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.2rem;
  animation: expandLine 1s ease-out 0.8s both;
}

@keyframes expandLine {
  from { width: 0; opacity: 0; }
  to   { width: 48px; opacity: 1; }
}

/* ===== Features Strip ===== */
.features-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.features-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
}

.feature-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===== Booking Section ===== */
.booking-section {
  padding: 7rem 2rem;
  background: var(--bg-dark);
}

.booking-widget {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== About Section ===== */
.about-section {
  padding: 8rem 2rem;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(170, 121, 66, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-slideshow {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.about-slide.active {
  opacity: 1;
}

.about-image.no-image {
  height: 560px;
  background: linear-gradient(135deg, #1a1008, #2d1d0e, #1a1008);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}

.about-content h2 { margin-bottom: 0.75rem; }
.about-lead { font-size: 1.15rem; color: var(--gold-light); margin-bottom: 1rem; }
.about-content p { color: var(--text-secondary); margin-bottom: 1rem; }

.about-hours {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hours-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.hours-item i { color: var(--gold); font-size: 1rem; width: 16px; }
.hours-item strong { color: var(--text-primary); display: block; font-size: 0.9rem; }
.hours-item span { font-size: 0.875rem; }

/* ===== Saunas Section ===== */
.saunas-section {
  padding: 8rem 2rem;
  background: var(--bg-dark);
}

.saunas-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sauna-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.sauna-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.sauna-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold);
  transform: translateY(-8px);
}

.sauna-card--featured:hover { transform: translateY(-14px); }

.sauna-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1008, #2d1d0e);
}

.sauna-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sauna-card:hover .sauna-card-image img { transform: scale(1.05); }

.sauna-card-image.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sauna-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(14, 14, 14, 0.8);
  backdrop-filter: blur(8px);
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.sauna-card-popular {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.sauna-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sauna-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sauna-meta i { color: var(--gold); margin-right: 4px; }

.sauna-card-body h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.sauna-card-body p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1.25rem; }

.sauna-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.sauna-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.sauna-features li i { color: var(--gold); font-size: 0.75rem; }

/* ===== Gallery Section ===== */
.gallery-section {
  padding: 8rem 2rem;
  background: var(--bg-section);
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(170, 121, 66, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.gallery-overlay i {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(170, 121, 66, 0.35);
}

.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 8rem 2rem;
  background: var(--bg-dark);
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-item span,
.contact-detail-item a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

/* Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-panel);
  border: 1px solid rgba(170, 121, 66, 0.25);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(170, 121, 66, 0.12);
}

.form-group select option { background: var(--bg-panel); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.25rem;
}

.form-note a { color: var(--gold); }

/* ===== Map ===== */
.map-section {
  height: 350px;
  border-top: 1px solid var(--border);
  filter: grayscale(0.3) brightness(0.75) contrast(1.1);
}

.map-section iframe { display: block; }

/* ===== Footer ===== */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 5rem 2rem 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo { height: 36px; width: auto; margin-bottom: 1rem; }
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--text-secondary); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }

.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-contact i { color: var(--gold); margin-top: 3px; min-width: 14px; }
.footer-contact a { color: var(--text-secondary); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1) translateY(-2px);
  color: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Hero trust strip ===== */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(240, 235, 228, 0.75);
  margin-bottom: 2rem;
}

.hero-trust .fa-star { color: #f5c842; font-size: 0.75rem; }
.trust-divider { color: var(--gold); opacity: 0.5; }

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

/* ===== How It Works ===== */
.how-section {
  padding: 8rem 2rem;
  background: var(--bg-section);
}

.how-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.how-card {
  flex: 1;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.how-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(170, 121, 66, 0.12);
  line-height: 1;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.how-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.how-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.how-card p { color: var(--text-secondary); font-size: 0.9rem; }

.how-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  flex-shrink: 0;
  position: relative;
}

.how-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--gold);
}

.how-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ===== Booking badges ===== */
.booking-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.booking-header h2 { margin-bottom: 0.75rem; }
.booking-header p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.booking-header strong { color: var(--gold-light); }

.booking-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 100px;
}

.booking-badge i { color: var(--gold); }

/* ===== Health Benefits ===== */
.benefits-section {
  padding: 8rem 2rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(170, 121, 66, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.benefits-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(170, 121, 66, 0.4);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(170, 121, 66, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.benefit-card p { color: var(--text-secondary); font-size: 0.875rem; }

/* ===== Reviews ===== */
.reviews-section {
  padding: 8rem 2rem;
  background: var(--bg-section);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.reviews-score {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.reviews-stars-big { font-size: 1.4rem; color: #f5c842; display: flex; gap: 3px; }
.reviews-count { color: var(--text-muted); font-size: 0.85rem; }

.reviews-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition);
}

.review-card:hover { transform: translateY(-4px); }

.review-stars { color: #f5c842; font-size: 0.9rem; display: flex; gap: 2px; }

.review-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong { display: block; font-size: 0.875rem; color: var(--text-primary); }
.review-author span { font-size: 0.78rem; color: var(--text-muted); }

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.review-author-info { flex: 1; }
.review-author-info strong { display: block; font-size: 0.875rem; color: var(--text-primary); }
.review-author-info span { font-size: 0.78rem; color: var(--text-muted); }

.review-google-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.review-google-badge svg { flex-shrink: 0; }

.reviews-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.reviews-cta p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 8rem 2rem;
  background: var(--bg-dark);
}

.faq-container { max-width: 860px; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 1px; margin-top: 0; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: 8px;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(170, 121, 66, 0.4); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition);
}

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

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer a { color: var(--gold); }

/* ===== Burger → X animation ===== */
.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Mobile Menu ===== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }

  .nav-burger { display: flex; }

  /* Fullscreen menu: сам navbar растягивается на весь экран */
  .navbar.menu-open {
    height: 100dvh;
    background: rgba(14, 14, 14, 0.97) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: none !important;
    padding: 0;
  }

  .navbar.menu-open .nav-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    padding: 0 2rem;
    gap: 3rem;
  }

  .navbar.menu-open .nav-logo {
    position: absolute;
    top: 1.25rem;
    left: 2rem;
  }

  .navbar.menu-open .nav-burger {
    position: absolute;
    top: 1.25rem;
    right: 2rem;
    margin-left: 0;
  }

  .navbar.menu-open .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin: 0;
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
  }

  .navbar.menu-open .nav-links a {
    font-size: 1.5rem;
    color: var(--text-primary);
    padding: 0.25rem 0;
  }

  /* Features strip — скрыть на мобиле */
  .features-strip { display: none; }

  /* How it works */
  .how-grid { flex-direction: column; }
  .how-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--gold-dark), var(--gold)); }
  .how-connector::after { right: -4px; top: auto; bottom: -5px; border-left-color: transparent; border-top-color: var(--gold); }

  /* Benefits */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  /* Reviews */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-slideshow { height: 380px; }
  .about-slide { height: 380px; }
  .about-badge { bottom: -1rem; right: 1rem; }

  /* Saunas */
  .saunas-grid { grid-template-columns: 1fr; }
  .sauna-card--featured { transform: none; }

  /* Sauna card — popular badge без наложения */
  .sauna-card-popular {
    top: auto;
    bottom: 1rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  /* Sauna card — кнопка по центру */
  .sauna-card-body .btn { align-self: center; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-grid .gallery-item:nth-child(5) { grid-column: span 1; }

  /* Contact */
  .contact-container { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer — brand и contact на полную ширину, Nav + Recht рядом */
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-trust { font-size: 0.75rem; gap: 8px; }
  .features-container { gap: 1.5rem; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; font-size: 1.4rem; }
}

/* ===== Utility ===== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
