/* ==========================================================================
   AURA FITNESS — Modern Commercial Landing Page Stylesheet
   ========================================================================== */

/* --- Custom Properties / CSS Variables --- */
:root {
  /* Brand Warm Colors */
  --primary: #FF5A36;
  --primary-hover: #E84520;
  --primary-light: #FFF2EE;
  --primary-glow: rgba(255, 90, 54, 0.25);
  
  --secondary: #2C3437;
  --accent-gold: #E5A93C;
  --accent-warm: #FBF4EC;
  
  /* Neutral Palette (Light theme with warm undertones) */
  --bg-page: #FAF8F5;
  --bg-card: #FFFFFF;
  --bg-soft: #F3EEE7;
  --bg-subtle: #ECE5DC;
  
  --text-main: #1A1D20;
  --text-body: #4A5568;
  --text-muted: #718096;
  --text-light: #A0AEC0;
  --text-white: #FFFFFF;
  
  /* Borders & Shadows */
  --border-color: rgba(26, 29, 32, 0.08);
  --border-focus: rgba(255, 90, 54, 0.4);
  --shadow-xs: 0 1px 3px rgba(26, 29, 32, 0.04);
  --shadow-sm: 0 4px 12px rgba(26, 29, 32, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 29, 32, 0.08);
  --shadow-lg: 0 20px 48px rgba(26, 29, 32, 0.12);
  --shadow-glow: 0 12px 30px var(--primary-glow);
  
  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  
  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Unbounded', 'Outfit', sans-serif;
  --font-accent: 'Outfit', sans-serif;
  
  /* Layout */
  --container-max: 1240px;
  --header-height: 80px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul, ol {
  list-style: none;
}

/* --- Container & Grid --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.bg-soft {
  background-color: var(--bg-soft);
}

/* --- Typography Helpers --- */
.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8A50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-tag.tag-white {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #FF7448 100%);
  color: var(--text-white);
  box-shadow: 0 6px 20px rgba(255, 90, 54, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 90, 54, 0.45);
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-white {
  background: #FFFFFF;
  color: var(--text-main);
  box-shadow: var(--shadow-md);
  font-size: 0.875rem;
  padding: 10px 20px;
}

.btn-white:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

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

.btn-lg {
  font-size: 1.0625rem;
  padding: 16px 32px;
}

.btn-block {
  width: 100%;
}

.pulse-hover:hover {
  animation: subtle-pulse 1.5s infinite;
}

@keyframes subtle-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 54, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(255, 90, 54, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 54, 0); }
}

/* --- Glass Cards --- */
.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* --- Announcement Top Bar --- */
.announcement-bar {
  background: var(--secondary);
  color: #F0F4F8;
  font-size: 0.84rem;
  padding: 8px 0;
  text-align: center;
  position: relative;
  z-index: 100;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-accent-light {
  background: rgba(255, 90, 54, 0.25);
  color: #FF8A68;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.announcement-link {
  color: #FF8A68;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announcement-link:hover {
  color: #FFA388;
}

/* --- Site Header --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  border-bottom: 1px solid rgba(26, 29, 32, 0.05);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.logo-symbol {
  font-size: 1.35rem;
  color: var(--primary);
  display: inline-block;
  transform: translateY(-1px);
}

.logo-accent {
  color: var(--primary);
}

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-smooth);
  border-radius: var(--radius-pill);
}

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

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

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-main);
}

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

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  padding: 0;
  background: transparent;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: var(--radius-pill);
  transition: all var(--transition-smooth);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1000;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.drawer-close {
  font-size: 1.5rem;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-soft);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-grow: 1;
}

.drawer-link {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-main);
}

.drawer-link:hover {
  color: var(--primary);
}

.drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-phone {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

/* --- Hero Section --- */
.hero-section {
  padding-top: 50px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 90, 54, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 90, 54, 0.7);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 54, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255, 90, 54, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 54, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 540px;
}

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

.hero-features-list {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Hero Visual Composition */
.hero-visual {
  position: relative;
  perspective: 1000px;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 520px;
  background-color: var(--bg-soft);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-visual:hover .hero-img {
  transform: scale(1.03);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(26,29,32,0.4) 100%);
}

.floating-badge {
  position: absolute;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: float-badge 6s ease-in-out infinite alternate;
}

.badge-top-right {
  top: 30px;
  right: -24px;
}

.badge-bottom-left {
  bottom: 30px;
  left: -24px;
  animation-delay: -3s;
}

@keyframes float-badge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.badge-avatar-group {
  display: flex;
}

.badge-avatar-group img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-left: -10px;
  object-fit: cover;
}

.badge-avatar-group img:first-child {
  margin-left: 0;
}

.badge-text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-main);
  line-height: 1.2;
}

.badge-text span {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.stat-icon-wrap {
  width: 38px;
  height: 38px;
  background: #FFF7ED;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Quick Numbers Strip */
.hero-stats-strip {
  margin-top: 60px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-color);
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background-color: var(--border-color);
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.primary-wrap {
  height: 480px;
}

.secondary-wrap {
  height: 380px;
  margin-top: 50px;
}

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

.about-img-wrap:hover .about-img {
  transform: scale(1.05);
}

.experience-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 16px;
  text-align: center;
}

.exp-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}

.about-subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.7;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.pillar-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pillar-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- Programs & Pricing --- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 90, 54, 0.3);
}

.program-card.featured {
  border-color: var(--primary);
  box-shadow: 0 12px 36px rgba(255, 90, 54, 0.16);
  transform: scale(1.02);
}

.program-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(26, 29, 32, 0.75);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.card-badge.badge-popular {
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 90, 54, 0.4);
}

.card-image-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.program-card:hover .card-image-wrap img {
  transform: scale(1.08);
}

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

.card-title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.55;
  min-height: 54px;
}

.price-wrap {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border-color);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text-main);
}

.price-period {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

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

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-body);
}

.check-icon {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
}

/* --- Advantages Grid --- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.advantage-box {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-smooth);
}

.advantage-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 90, 54, 0.25);
}

.adv-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-smooth);
}

.advantage-box:hover .adv-icon {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 90, 54, 0.35);
}

.adv-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.adv-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Testimonials Section (Carousel) --- */
.testimonials-head-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.testimonials-head-wrap .section-header {
  margin-bottom: 0;
}

.carousel-controls {
  display: flex;
  gap: 12px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.testimonials-carousel {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-xl);
  padding: 10px 4px;
}

.carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: calc((100% - 56px) / 3);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth);
}

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

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-stars {
  color: #FFB800;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 29, 32, 0.15);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.dot.active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--primary);
}

/* --- FAQ Accordion --- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(255, 90, 54, 0.3);
  box-shadow: var(--shadow-sm);
}

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

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

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
}

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

/* --- Booking / Lead Form Section --- */
.booking-wrapper {
  background: linear-gradient(135deg, #24292F 0%, #1A1D20 100%);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.booking-wrapper::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 90, 54, 0.25) 0%, rgba(255, 90, 54, 0) 70%);
  pointer-events: none;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 18px;
  line-height: 1.25;
}

.booking-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 36px;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.perk-icon {
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.1);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perk-item strong {
  display: block;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.perk-item span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

.booking-form-wrap {
  background: #FFFFFF;
  padding: 40px;
  border-radius: var(--radius-lg);
  color: var(--text-main);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-input, .form-select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  color: var(--text-main);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.12);
}

.form-input.is-invalid {
  border-color: #E53E3E;
  background: #FFF5F5;
}

.error-msg {
  font-size: 0.775rem;
  color: #E53E3E;
  font-weight: 500;
  display: none;
}

.error-msg.visible {
  display: block;
}

.time-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-radio {
  cursor: pointer;
}

.time-radio input {
  display: none;
}

.time-radio span {
  display: block;
  padding: 8px 6px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xs);
  background: var(--bg-page);
  color: var(--text-body);
  transition: all var(--transition-fast);
}

.time-radio input:checked + span {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.agreement-group {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.checkbox-label input {
  display: none;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-color);
  border-radius: 4px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.checkbox-label input:checked + .custom-checkbox {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input:checked + .custom-checkbox::after {
  content: '✓';
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
}

.form-privacy-hint {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: -6px;
}

/* --- Contacts & Map Section --- */
.contacts-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
}

.contacts-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #FFFFFF;
}

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

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.45;
}

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

.social-links-wrap {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.socials-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 90, 54, 0.3);
}

/* Real Map Container */
.map-placeholder-card {
  overflow: hidden;
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  background: #E8EFE9;
  box-shadow: var(--shadow-sm);
}

.map-real-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.map-pin-pulse {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  pointer-events: none;
}

.pin-marker {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(255, 90, 54, 0.45);
  flex-shrink: 0;
  pointer-events: auto;
}

.pin-marker span {
  font-size: 1.15rem;
}

.pin-popup {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: left;
  white-space: nowrap;
  pointer-events: auto;
}

.pin-popup strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 700;
}

.pin-popup span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.map-action-overlay {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 6;
}

/* --- Footer --- */
.site-footer {
  background: #15181C;
  color: #A0AEC0;
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: #A0AEC0;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-txt {
  font-size: 0.875rem;
  margin-bottom: 10px;
  color: #A0AEC0;
}

.footer-contact-txt a:hover {
  color: #FFFFFF;
}

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

.dev-credits {
  color: rgba(255, 255, 255, 0.4);
}

/* --- Success Modal --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  max-width: 480px;
  width: 100%;
  padding: 40px;
  text-align: center;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.modal-close:hover {
  background: var(--bg-subtle);
  color: var(--text-main);
}

.modal-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.modal-sparkle {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 1.4rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.modal-text {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* --- Scroll Reveal Animations --- */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

.reveal-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1100px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .review-card {
    flex: 0 0 calc((100% - 28px) / 2);
    min-width: calc((100% - 28px) / 2);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 40px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .main-nav, .header-cta {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .review-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    position: static;
    margin-top: 16px;
    animation: none;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-image-card {
    height: 380px;
  }

  .booking-form-wrap {
    padding: 24px;
  }

  .time-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats-strip {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
