/* ============================================
   PRANAFLOW — Main Stylesheet
   Modern, elegant yoga/gymnastics/aerobics site
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary: #7C9A6E;
  --color-primary-dark: #5E7A52;
  --color-primary-light: #E8F0E4;
  --color-accent: #D4A574;
  --color-accent-dark: #B8895A;
  --color-accent-light: #E8C9A8;
  --color-bg: #F5F0E8;
  --color-bg-alt: #FDF8F3;
  --color-text: #2D2D2D;
  --color-text-light: #6B6B6B;
  --color-white: #FFFFFF;
  --color-border: #E0D8CC;

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --container-max: 1200px;
  --nav-height: 72px;
  --section-padding: 100px 0;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

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

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

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

ul, ol {
  list-style: none;
}

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

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

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

h1 {
  font-size: 3.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--transition-base);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.nav-logo img,
.nav-logo svg {
  width: 36px;
  height: 36px;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}

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

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

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

.nav-cta {
  margin-left: 8px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--color-white);
  z-index: 1050;
  padding: calc(var(--nav-height) + 32px) 32px 32px;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-lg);
  transition: right var(--transition-base);
}

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

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-fast);
}

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

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1040;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-overlay.visible {
  opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(124, 154, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  color: var(--color-text);
}

.hero p {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--color-text-light);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   GENERIC SECTIONS
   ============================================ */
section {
  padding: var(--section-padding);
}

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

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

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

.section-bg-green {
  background-color: var(--color-primary-light);
}

/* Section Heading with decorative underline */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.section-heading p {
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

/* Section block — alternating image/text layout */
.section-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.section-block:last-child {
  margin-bottom: 0;
}

.section-block:nth-of-type(even) {
  flex-direction: row-reverse;
}

.section:nth-of-type(even) .section-block {
  flex-direction: row-reverse;
}

.section-text {
  flex: 1;
}

.section-text h2 {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.section-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.section-text h3 {
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

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

.about-stat .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.about-stat .stat-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   DIRECTIONS / CARDS SECTION
   ============================================ */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.direction-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.direction-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary-light);
}

.direction-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-full);
}

.direction-card-icon svg,
.direction-card-icon img {
  width: 36px;
  height: 36px;
}

.direction-card h3 {
  margin-bottom: 12px;
  color: var(--color-text);
}

.direction-card p {
  font-size: 0.95rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-list {
  max-width: 720px;
  margin: 0 auto;
}

.benefits-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
  max-width: 900px;
  margin: 0 auto;
}

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

.benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--color-primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
}

/* ============================================
   HOW CLASSES WORK
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.step-card h3 {
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
}

/* ============================================
   SCHEDULE SECTION
   ============================================ */
.schedule-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  min-width: 700px;
}

.schedule-table thead {
  background: var(--color-primary);
  color: var(--color-white);
}

.schedule-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.schedule-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.schedule-table tbody tr:hover {
  background-color: var(--color-primary-light);
}

.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.schedule-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.schedule-card h4 {
  color: var(--color-primary);
}

.schedule-card .time {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

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

.review-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-primary-light);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  background: var(--color-primary-light);
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

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

.review-stars {
  color: var(--color-accent);
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ============================================
   RESULTS / TRANSFORMATIONS
   ============================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.result-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.result-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.result-images figure {
  position: relative;
  overflow: hidden;
}

.result-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.result-images figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.result-info {
  padding: 24px;
}

.result-info h3 {
  margin-bottom: 8px;
}

/* ============================================
   INSTRUCTORS
   ============================================ */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.instructor-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-align: center;
}

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

.instructor-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.instructor-info {
  padding: 28px 24px;
}

.instructor-info h3 {
  margin-bottom: 4px;
}

.instructor-role {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.instructor-bio {
  font-size: 0.9rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  position: relative;
  transition: transform var(--transition-base);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) ease, padding var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================================
   SIGN-UP FORM
   ============================================ */
.form-section {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 1rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 154, 110, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0A99A;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  accent-color: var(--color-primary);
}

.form-checkbox label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.form-submit .btn-primary {
  width: 100%;
  padding: 16px 36px;
  font-size: 1.05rem;
}

.form-error {
  color: #D9534F;
  font-size: 0.85rem;
  margin-top: 6px;
}

.form-success {
  color: var(--color-primary);
  font-size: 0.85rem;
  margin-top: 6px;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

.cta-section .btn-primary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.cta-section .btn-primary:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

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

.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: 20px 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
  border-top: 2px solid var(--color-primary-light);
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--color-text-light);
  min-width: 280px;
}

.cookie-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-btn-accept {
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}

.cookie-btn-accept:hover {
  background: var(--color-primary-dark);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.cookie-btn-decline:hover {
  border-color: var(--color-text);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid transparent;
}

.cookie-btn-settings:hover {
  color: var(--color-text);
}

/* ============================================
   SECONDARY PAGES (Privacy, Terms, Cookies)
   ============================================ */
.page-content {
  padding: calc(var(--nav-height) + 60px) 0 80px;
  min-height: 70vh;
}

.page-content .container {
  max-width: 800px;
}

.page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 32px;
  text-align: center;
}

.page-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.page-content h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.page-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.page-content ul,
.page-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.page-content ul {
  list-style: disc;
}

.page-content ol {
  list-style: decimal;
}

.page-content li {
  margin-bottom: 8px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.page-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.page-content a:hover {
  color: var(--color-primary-dark);
}

.page-date {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
}

.thanks-content {
  max-width: 520px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: var(--color-primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-primary);
}

.thanks-content h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.thanks-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ============================================
   SVG ILLUSTRATION CONTAINERS
   ============================================ */
.svg-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-container svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.svg-icon-sm {
  width: 24px;
  height: 24px;
}

.svg-icon-md {
  width: 48px;
  height: 48px;
}

.svg-icon-lg {
  width: 80px;
  height: 80px;
}

.illustration {
  max-width: 100%;
  height: auto;
}

.illustration-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-light { color: var(--color-text-light); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }

.hidden { display: none; }

/* ============================================
   RESPONSIVE — 1200px
   ============================================ */
@media (max-width: 1200px) {
  :root {
    --container-max: 960px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

/* ============================================
   RESPONSIVE — 992px
   ============================================ */
@media (max-width: 992px) {
  :root {
    --section-padding: 72px 0;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .section-block {
    flex-direction: column !important;
    gap: 40px;
  }

  .about-content {
    flex-direction: column;
    gap: 40px;
  }

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

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

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

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --nav-height: 64px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero {
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .directions-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .instructors-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .about-stats {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .cta-section {
    padding: 60px 24px;
  }

  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

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

/* ============================================
   RESPONSIVE — 576px
   ============================================ */
@media (max-width: 576px) {
  :root {
    --nav-height: 60px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 85vh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-accent {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .direction-card {
    padding: 28px 20px;
  }

  .review-card {
    padding: 28px 20px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 18px 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
  }

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

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .mobile-nav {
    width: 260px;
  }

  .page-content h1 {
    font-size: 2rem;
  }

  .thanks-content h1 {
    font-size: 2rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   NAV SCROLLED STATE
   ============================================ */
.nav.nav-scrolled {
  box-shadow: var(--shadow-sm);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.section-block,
.direction-card,
.review-card,
.result-card,
.instructor-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-block.animated,
.direction-card.animated,
.review-card.animated,
.result-card.animated,
.instructor-card.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   COOKIE BANNER CONTENT
   ============================================ */
.cookie-banner-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--color-text);
}

.cookie-banner-text p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.cookie-banner-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner-options input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner-actions .btn-primary,
.cookie-banner-actions .btn-secondary {
  padding: 10px 20px;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-options {
    justify-content: center;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .btn-primary,
  .cookie-banner-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ============================================
   LEGAL PAGES (Privacy, Terms, Cookie)
   ============================================ */
.legal-page {
  padding: calc(var(--nav-height) + 60px) 0 80px;
  min-height: 70vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  text-align: center;
}

.legal-container .page-date {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-container h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-container h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-container p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-container ul,
.legal-container ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-container ul {
  list-style: disc;
}

.legal-container ol {
  list-style: decimal;
}

.legal-container li {
  margin-bottom: 8px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.legal-container a {
  color: var(--color-primary);
  text-decoration: underline;
}

.legal-container a:hover {
  color: var(--color-primary-dark);
}

@media (max-width: 576px) {
  .legal-container h1 {
    font-size: 2rem;
  }
}

/* ============================================
   THANKS PAGE (Custom)
   ============================================ */
.thanks-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
}

.thanks-container {
  max-width: 560px;
  margin: 0 auto;
}

.thanks-container h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.thanks-container p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.thanks-container .thanks-svg {
  margin: 0 auto 32px;
}

.thanks-container .btn-primary {
  margin-top: 12px;
  margin-bottom: 40px;
}

.thanks-contact-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.thanks-contact-block h3 {
  margin-bottom: 16px;
  color: var(--color-text);
}

.thanks-contact-block p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.thanks-contact-block a {
  color: var(--color-primary);
  text-decoration: underline;
}

.thanks-contact-block a:hover {
  color: var(--color-primary-dark);
}

@media (max-width: 576px) {
  .thanks-container h1 {
    font-size: 2rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .nav,
  .cookie-banner,
  .hamburger,
  .mobile-nav,
  .mobile-overlay {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  section {
    padding: 30px 0;
  }
}
