/* =============== 
   FONT FACES
   =============== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Dream Avenue';
  src: url('assets/fonts/dream-avenue.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Agrandir';
  src: url('assets/fonts/agrandir-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =============== 
   CSS VARIABLES & RESET 
   =============== */
:root {
  --bg: #efe9e0;
  --primary: #564b45;
  --primary-dark: #3d342f;
  --secondary: #d4c5b9;
  --text: #2f2f2f;
  --text-light: #fffbf5;

  --font-body: 'Montserrat', 'DM Sans', sans-serif;
  --font-decorative: 'Dream Avenue', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

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

/* =============== 
   BUTTONS
   =============== */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: var(--transition);
  border: 1.5px solid var(--primary);
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  border-color: var(--primary-dark);
}

/* =============== 
   PROMO BAR
   =============== */
.promo-bar {
  background-color: var(--bg);
  text-align: center;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid rgba(86, 75, 69, 0.08);
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-bar em {
  font-style: italic;
  font-weight: 600;
}

.promo-break {
  display: none;
}

@media (max-width: 576px) {
  .promo-break {
    display: block;
  }
}

/* =============== 
   NAVIGATION
   =============== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}



.navbar.scrolled {
  background: rgba(86, 75, 69, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .nav-links a:hover {
  color: white;
}

.navbar.scrolled .nav-links a::after {
  background-color: white;
}

.navbar.scrolled .nav-btn {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

.navbar.scrolled .nav-btn:hover {
  background-color: white;
  color: var(--primary) !important;
  border-color: white;
}

.navbar.scrolled .nav-links a.nav-btn:hover {
  color: var(--primary) !important;
}


.navbar.scrolled .logo-img {
  filter: brightness(0) invert(1);
}

.navbar.scrolled .mobile-menu-btn {
  color: white;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: none;
  margin: 0 auto;
  padding: 0 14px;
}

.logo {
  display: flex;
  align-items: center;
  margin: 0 40px;
}

.logo-img {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

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

.nav-left {
  justify-content: flex-start;
  flex: 1;
  padding-left: 100px;
}

.nav-right {
  justify-content: flex-end;
  flex: 1;
  padding-right: 100px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(47, 47, 47, 0.65);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}

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

.nav-links a:hover {
  color: #2f2f2f;
}

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

.nav-btn {
  background-color: rgba(255, 255, 255, 0.32);
  border-color: rgba(47, 47, 47, 0.3);
  color: #2f2f2f;
  font-size: 11px;
  padding: 10px 22px;
}

.nav-btn:hover {
  background-color: var(--primary);
  color: var(--text-light) !important;
  border-color: var(--primary);
}

.nav-links a.nav-btn:hover {
  color: var(--text-light) !important;
}

.nav-btn::after {
  display: none;
}

.mobile-nav-right {
  display: none;
  align-items: center;
  gap: 12px;
}

.mobile-booking-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #2f2f2f;
  padding: 8px 14px;
  border: 1px solid rgba(47, 47, 47, 0.25);
  border-radius: 20px;
  transition: var(--transition);
}

.mobile-booking-btn i {
  font-size: 12px;
}

.mobile-menu-btn {
  font-size: 22px;
  background: none;
  border: none;
  color: #2f2f2f;
  cursor: pointer;
}

.navbar.scrolled .mobile-booking-btn {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar.scrolled .mobile-nav-right .mobile-menu-btn {
  color: white;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: 0.4s ease;
  opacity: 0;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-link {
  font-size: 22px;
  font-weight: 500;
  color: white;
  letter-spacing: 2px;
}

/* ===============
   HERO SECTION
   =============== */
.hero-wrapper {
  background-color: var(--bg);
  padding: 0 20px 0;
  margin-top: -81px;
  padding-top: 81px;
}

.hero-frame {
  overflow: hidden;
  border-radius: 6px;
}

.hero {
  height: 75vh;
  min-height: 400px;
  max-height: 600px;
  background-image: url('assets/hero-home.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-short {
  height: 45vh;
  min-height: 250px;
  max-height: 360px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 27, 24, 0.48) 0%, rgba(32, 27, 24, 0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 1240px;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-kicker {
  font-family: var(--font-decorative);
  font-size: clamp(1.65rem, 4.65vw, 4.05rem);
  line-height: 1.1;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 18px;
  text-align: center;
  max-width: 1100px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
}

.hero-tagline {
  display: flex;
  justify-content: space-between;
  padding: 16px 6px;
}

.hero-tagline span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--primary);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-decorative);
  font-size: 6rem;
  font-weight: 400;
  font-style: normal;
  color: white;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: clamp(0.76rem, 1.19vw, 1.33rem);
  font-weight: 500;
  margin-top: 26px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.35;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  background: transparent;
  border: 1.5px solid white;
  color: white;
  padding: 14px 32px;
  font-size: 15px;
  line-height: 1;
}

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

/* =============== 
   INTRO SECTION (centered text, no image)
   =============== */
.intro-section {
  padding: 70px 0 0;
  background-color: var(--bg);
}

.intro-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.intro-title {
  font-family: var(--font-decorative);
  font-size: 2.8rem;
  font-weight: 500;
  font-style: normal;
  color: var(--text);
  margin-bottom: 30px;
}

.subpage-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 30px;
}

.intro-title-large {
  font-family: var(--font-decorative);
  font-size: 3.2rem;
  font-weight: 400;
  font-style: normal;
  color: var(--text);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto 30px;
}

.intro-content p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* =============== 
   VERTICAL SEPARATOR
   =============== */
.vertical-separator {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.v-line {
  width: 1px;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--secondary), transparent);
}

/* =============== 
   DECORATIVE SECTION TITLE
   =============== */
.section-title-decorative {
  font-family: var(--font-decorative);
  font-size: 4.5rem;
  font-weight: 400;
  font-style: normal;
  color: var(--text);
  letter-spacing: 0.5px;
}

/* =============== 
   CLASSES SECTION
   =============== */
.classes-section {
  padding: 0 0 80px;
  background-color: var(--bg);
}

/* ===============
   CLASS DETAILS (oratipusok page)
   =============== */
.class-details-section {
  padding: 0 0 80px;
  background-color: var(--bg);
}

.light-surface-wrap {
  position: relative;
  background-color: var(--bg);
}

.light-surface-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url('assets/noise.png') repeat;
  opacity: 0.065;
  z-index: 0;
}

.light-surface-wrap > * {
  position: relative;
  z-index: 1;
}

/* oratipusok.html - kompaktabb átmenet az intro és az óraleírások között */
.page-oratipusok .intro-section {
  padding: 54px 0 10px;
}

.page-oratipusok .class-details-section {
  padding-top: 0;
}

.intro-cta-btn {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.intro-cta-btn:hover {
  background: var(--primary-dark);
  color: var(--text-light);
  border-color: var(--primary-dark);
}

.page-separator-compact {
  padding: 14px 0 24px;
}

.page-separator-compact .v-line {
  height: 84px;
}

.class-category-title {
  text-align: center;
  margin-bottom: 52px;
  font-family: var(--font-decorative);
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
  letter-spacing: 1.2px;
  font-weight: 400;
  text-transform: none;
}

.class-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* oktatok.html desktop sorrend:
   1. sor: Tina, Vani, Heni
   2. sor: Dóri, Eszter, Kata
   3. sor: Anna (középen) */
@media (min-width: 993px) {
  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(1) { order: 1; } /* Tina */
  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(4) { order: 2; } /* Vani */
  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(7) { order: 3; } /* Heni */
  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(5) { order: 4; } /* Dóri */
  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(6) { order: 5; } /* Eszter */
  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(2) { order: 6; } /* Kata */
  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(3) {
    order: 7; /* Anna */
    grid-column: 2;
  }
}

.class-detail-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(86, 75, 69, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* ===============
   CONTACT PAGE
   =============== */
.contact-section {
  padding: 44px 0 100px;
  background-color: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.08fr 1.32fr;
  gap: 32px;
  align-items: stretch;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(86, 75, 69, 0.08);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(86, 75, 69, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact-eyebrow {
  margin-bottom: 18px;
}

.contact-title {
  font-family: var(--font-decorative);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.08;
  color: var(--primary);
  margin-bottom: 18px;
}

.contact-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: #6f665f;
  margin-bottom: 28px;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(86, 75, 69, 0.05);
  border: 1px solid rgba(86, 75, 69, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(86, 75, 69, 0.18);
  background: rgba(86, 75, 69, 0.08);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-card-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(86, 75, 69, 0.55);
  margin-bottom: 5px;
}

.contact-card strong {
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.45;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.contact-text-link {
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-map-panel {
  display: flex;
  flex-direction: column;
}

.contact-map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 520px;
  background: rgba(86, 75, 69, 0.08);
  border: 1px solid rgba(86, 75, 69, 0.08);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.contact-map-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding-top: 4px;
}

.contact-map-footer strong {
  color: var(--primary);
  font-size: 1rem;
}

.contact-map-footer a {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.class-detail-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.class-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 14px;
  border-radius: 8px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.class-detail-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.class-detail-card:hover .class-detail-img img {
  transform: scale(1.05);
}

.class-detail-content {
  padding: 28px 26px 30px;
}

.class-detail-subtitle {
  display: block;
  font-size: 11px;
  font-style: italic;
  color: #999;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.class-detail-name {
  font-family: var(--font-decorative);
  font-size: 1.8rem;
  font-weight: 400;
  font-style: normal;
  color: var(--text);
  margin-bottom: 12px;
}

.class-detail-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.class-detail-meta span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--primary);
  opacity: 0.45;
}

.class-detail-difficulty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.diff-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--primary);
  opacity: 0.4;
}

.diff-dots {
  display: flex;
  gap: 5px;
}

.diff-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(86, 75, 69, 0.12);
  transition: background 0.3s ease;
}

.diff-dot.active {
  background: var(--primary);
}

.diff-range-value {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--primary);
  opacity: 0.75;
}

.diff-range-value.personalized {
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  padding: 4px 8px;
  letter-spacing: 0.8px;
  opacity: 1;
}

.class-detail-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #777;
}

.class-detail-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.class-detail-expanded p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #777;
  margin-bottom: 12px;
}

.class-detail-expanded p:first-child {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(86, 75, 69, 0.08);
}

.class-detail-card.expanded .class-detail-expanded {
  max-height: none;
}

.class-detail-toggle {
  background: none;
  border: none;
  padding: 8px 12px;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
  border-radius: 999px;
  background: rgba(86, 75, 69, 0.06);
  transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.class-detail-toggle:hover {
  opacity: 1;
  background: rgba(86, 75, 69, 0.1);
  transform: translateY(-1px);
}

.class-detail-toggle i {
  font-size: 9px;
  transition: transform 0.3s ease;
}

.class-detail-card.expanded .class-detail-toggle i {
  transform: rotate(180deg);
}

.class-category-separator {
  margin: 60px 0;
  height: 1px;
  background: rgba(86, 75, 69, 0.12);
}

/* ===============
   QUIZ SECTION
   =============== */
.quiz-section {
  padding: 80px 0;
  background: var(--primary);
}

.quiz-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quiz-intro-screen {
  padding: 10px 0 20px;
}

.quiz-title {
  font-family: var(--font-decorative);
  font-size: 3rem;
  font-weight: 400;
  color: white;
  margin-bottom: 12px;
}

.quiz-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 50px;
}

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

.quiz-start-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.quiz-body {
  min-height: 280px;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: quizFadeIn 0.4s ease;
}

@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question {
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
  margin-bottom: 30px;
}

.quiz-step-helper {
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: -12px 0 20px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.quiz-option {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  padding: 18px 24px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.quiz-option:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}

.quiz-option.selected {
  background: white;
  color: var(--primary);
  border-color: white;
  font-weight: 600;
}

.quiz-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.quiz-nav-btn {
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.quiz-back {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.quiz-back:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}

.quiz-next {
  background: white;
  border: 1px solid white;
  color: var(--primary);
  font-weight: 600;
}

.quiz-next:hover {
  transform: translateY(-1px);
}

.quiz-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.quiz-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.quiz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.quiz-dot.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

.quiz-dot.done {
  background: rgba(255, 255, 255, 0.5);
}

.quiz-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 460px;
  margin: 0 auto 30px;
}

.quiz-result-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 22px 26px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 18px;
}

.quiz-result-rank {
  font-family: var(--font-decorative);
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.quiz-result-info h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.quiz-result-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.quiz-result-equipment {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.quiz-result-reason {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.85) !important;
}

.quiz-result-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 9px 14px;
  transition: all 0.25s ease;
  cursor: pointer;
  font-family: var(--font-body);
}

.quiz-result-cta:hover {
  background: white;
  color: var(--primary);
}

.quiz-result-message {
  margin-top: 18px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.quiz-micro-feedback {
  max-width: 620px;
  margin: 0 auto 14px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(25, 21, 19, 0.5);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.quiz-micro-feedback.active {
  opacity: 1;
  transform: translateY(0);
}

.quiz-contact-box {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 28px 24px;
  text-align: center;
}

.quiz-contact-box h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.quiz-contact-box p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 18px;
}

.quiz-restart {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 14px 36px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.quiz-restart:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* ===============
   EVENTS PAGE
   =============== */
.events-section {
  padding: 0 0 80px;
  background: var(--bg);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.event-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(86, 75, 69, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.event-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.event-date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: white;
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  line-height: 1;
}

.event-day {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.event-month {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--primary);
  opacity: 0.5;
  margin-top: 2px;
}

.event-content {
  padding: 26px;
}

.event-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: white;
  background: var(--primary);
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 14px;
}

.event-title {
  font-family: var(--font-decorative);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.event-details {
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 14px;
}

.event-details i {
  margin-right: 4px;
  font-size: 0.75rem;
}

.event-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #777;
  margin-bottom: 20px;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(86, 75, 69, 0.08);
}

.event-spots {
  font-size: 0.82rem;
  color: #999;
}

.event-spots i {
  margin-right: 5px;
}

.event-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--primary);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.event-cta:hover {
  background: var(--primary);
  color: white;
}

.event-past {
  opacity: 0.7;
}

.event-past:hover {
  opacity: 1;
}

.event-past-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: white;
}

/* ===============
   BLOG PAGE
   =============== */
.blog-section {
  padding: 0 0 80px;
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(86, 75, 69, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.blog-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.blog-featured .blog-card-img {
  height: 100%;
  min-height: 340px;
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.blog-card-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: white;
  background: var(--primary);
  padding: 5px 10px;
  border-radius: 5px;
}

.blog-card-date {
  font-size: 12px;
  color: #aaa;
}

.blog-card-title {
  font-family: var(--font-decorative);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-featured .blog-card-title {
  font-size: 2rem;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #777;
}

/* ===============
   BLOG POST PAGE
   =============== */
.blog-post-section {
  padding: 0 0 80px;
  background: var(--bg);
}

.blog-post {
  max-width: 720px;
  margin: 0 auto;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.blog-post-hero {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 50px;
  max-height: 420px;
}

.blog-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post h2 {
  font-family: var(--font-decorative);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  margin: 40px 0 20px;
}

.blog-post p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 20px;
}

.blog-post blockquote {
  border-left: 3px solid var(--primary);
  padding: 20px 28px;
  margin: 30px 0;
  background: white;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 1.7;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  margin-top: 40px;
  padding: 12px 24px;
  border: 1px solid rgba(86, 75, 69, 0.2);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.blog-post-back:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header p {
  font-size: 1.15rem;
  color: #666;
  margin-top: 18px;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.class-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  transition: var(--transition);
}

.classes-section .class-card {
  aspect-ratio: 3 / 3.2;
}

.class-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.class-img-wrapper {
  width: 100%;
  height: 100%;
}

.class-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.6s ease;
}

.class-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(86, 75, 69, 0.85) 0%, rgba(86, 75, 69, 0.25) 40%, transparent 100%);
}

.class-card:hover .class-img-wrapper img {
  transform: scale(1.08);
}

.class-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px;
  z-index: 10;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.class-type {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.class-name {
  font-family: var(--font-decorative);
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
}

.class-room-label {
  color: white;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.class-room-label-top {
  font-family: var(--font-decorative);
  font-size: 2.2rem;
  line-height: 0.95;
  font-weight: 400;
  text-transform: none;
}

.class-room-label-bottom {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: lowercase;
}

.section-divider {
  width: 100%;
  height: 1px;
  background-color: var(--secondary);
  margin: 40px 0;
}

/* ===============
   INSTRUCTORS SECTION
   =============== */
.instructors-section {
  padding: 80px 0;
  background-color: var(--primary);
  color: var(--text-light);
  position: relative;
}

.instructors-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.instructors-section .carousel-arrow {
  color: white;
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-track-container {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 30px) / 3);
  gap: 15px;
  transition: transform 0.5s ease;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  opacity: 0.35;
}

.carousel-arrow:hover {
  opacity: 1;
}

.instructor-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  transition: var(--transition);
  background: #2b2421;
}

.instructor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.instructor-img-wrapper {
  width: 100%;
  height: 100%;
}

.instructor-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.06);
  transition: transform 0.6s ease;
}

.instructor-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(86, 75, 69, 0.85) 0%, rgba(86, 75, 69, 0.15) 50%, transparent 100%);
}

.instructor-card:hover .instructor-img-wrapper img {
  transform: scale(1.12);
}

.instructor-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px;
  z-index: 10;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.instructor-name {
  font-family: var(--font-decorative);
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
}

.instructor-role {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

/* ===============
   TESTIMONIALS SECTION
   =============== */
.testimonials-section {
  padding: 64px 0;
  margin-top: -1px;
  background-color: var(--primary);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.testimonials-section::after {
  display: none;
}

.testimonials-section > * {
  position: relative;
  z-index: 1;
}

.testimonials-section .section-header {
  margin-bottom: 14px;
}

.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.72);
}

.testimonials-topline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.testimonials-score {
  font-family: var(--font-decorative);
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
}

.testimonials-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  color: #f6d08d;
}

.testimonials-count {
  font-size: 0.88rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.review-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.review-carousel-track-container {
  overflow: hidden;
  flex: 1;
}

.review-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  transition: transform 0.5s ease;
}

.review-carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
}

.review-carousel-arrow:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

.review-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 20px 18px;
  min-height: 208px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 14px;
  font-family: var(--font-decorative);
  font-size: 2.3rem;
  opacity: 0.22;
  line-height: 1;
}

.review-card-head {
  margin-bottom: 8px;
}

.review-name {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}

.review-meta {
  font-size: 0.74rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.review-rating {
  margin-bottom: 8px;
  color: #f6d08d;
  font-size: 0.88rem;
  letter-spacing: 1px;
}

.review-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.62;
  margin-top: auto;
}

/* ===============
   INSTAGRAM SECTION
   =============== */
.instagram-section {
  padding: 46px 0 56px;
  background-color: var(--bg);
}

.instagram-wrap {
  background: #e3dbd1;
  border: 1px solid rgba(86, 75, 69, 0.08);
  border-radius: 0;
  padding: 26px 26px 22px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.instagram-title {
  font-family: var(--font-decorative);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.instagram-divider {
  width: 46px;
  height: 2px;
  background: rgba(86, 75, 69, 0.22);
  margin: 0 auto 24px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.instagram-tile {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #d8cec3;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-tile:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.instagram-follow {
  display: inline-block;
  margin-top: 16px;
  color: #5f564f;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(86, 75, 69, 0.35);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.instagram-follow:hover {
  opacity: 0.7;
}

/* ===============
   EVENTS SECTION
   =============== */
.events-section {
  padding: 80px 0;
  background-color: var(--bg);
}

.events-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 750px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: white;
  border-radius: 12px;
  padding: 28px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  padding-top: 2px;
}

.event-day {
  font-family: var(--font-decorative);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
}

.event-month {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-top: 4px;
}

.event-details {
  flex: 1;
}

.event-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.event-meta {
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 10px;
}

.event-meta i {
  font-size: 11px;
  margin-right: 3px;
}

.event-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .event-card {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .event-date {
    flex-direction: row;
    gap: 8px;
    align-items: baseline;
  }
}

/* ===============
   PRICING SECTION
   =============== */
.pricing-section {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 90px 0 110px;
  position: relative;
}

.pricing-category {
  margin-bottom: 32px;
  background: transparent;
  border-radius: 0;
  padding: 30px 0 26px;
  position: relative;
  overflow: visible;
}

.pricing-category::before {
  display: none;
}

.pricing-category:nth-child(odd) {
  background: transparent;
}

.pricing-category:last-child {
  margin-bottom: 0;
}

.pricing-cat-title {
  font-size: 1.34rem;
  color: white;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 2.4px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 12px 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: auto;
  margin-left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-cat-sub {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.pricing-cat-desc {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
  line-height: 1.75;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-table {
  max-width: 740px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.pricing-trial {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(223, 191, 152, 0.34);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(210, 168, 118, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(38, 31, 28, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 10px 24px rgba(20, 14, 10, 0.12);
}

.pricing-trial-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: white;
}

.pricing-trial-text {
  font-size: 0.87rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-trial-text em {
  color: white;
  font-style: normal;
  font-weight: 700;
}

.pricing-trial-validity {
  padding-top: 10px;
  font-size: 0.87rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-trial-validity em {
  color: white;
  font-style: normal;
  font-weight: 700;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(38, 31, 28, 0.24);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.pricing-row-name {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pricing-label {
  font-size: 1.02rem;
  font-weight: 600;
  color: white;
}

.pricing-validity {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
}

.pricing-row-price {
  font-family: var(--font-body);
  font-size: 1.28rem;
  letter-spacing: 0.2px;
  font-weight: 400;
  color: white;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 14px;
}

.pricing-note {
  max-width: 740px;
  margin: 28px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0 0 14px;
  border-top: 1px solid rgba(223, 191, 152, 0.28);
  border-left: 4px solid rgba(223, 191, 152, 0.72);
  position: relative;
  color: rgba(255, 255, 255, 0.82);
}

.pricing-note-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 215, 178, 0.98);
  filter: drop-shadow(0 0 10px rgba(223, 191, 152, 0.18));
}

.pricing-note-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.pricing-note-content {
  display: grid;
  gap: 6px;
}

.pricing-note-title {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(223, 191, 152, 0.16);
  border: 1px solid rgba(223, 191, 152, 0.32);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white;
  text-transform: uppercase;
}

.pricing-note-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.private-info {
  opacity: 0.9;
  font-size: 0.95rem;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
}

/* =============== 
   SCHEDULE SECTION
   =============== */
.schedule-section {
  padding: 100px 0;
  background-color: var(--bg);
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.booking-step {
  background: linear-gradient(165deg, #ffffff 0%, #faf8f5 100%);
  border-radius: 16px;
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(86, 75, 69, 0.06);
}

.booking-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(86, 75, 69, 0.1);
  border-color: rgba(86, 75, 69, 0.1);
}

.step-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 26px;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.step-content p {
  color: #a0998f;
  font-size: 0.88rem;
  line-height: 1.8;
}

.step-content p a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.iframe-container {
  background-color: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.iframe-container iframe {
  display: block;
  width: 100%;
  min-height: 950px;
  border: none;
}

/* =============== 
   FAQ SECTION
   =============== */
.faq-section {
  padding: 60px 0 100px;
  background-color: var(--bg);
}

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

.faq-item {
  border-bottom: 1px solid rgba(86, 75, 69, 0.15);
}

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

.faq-question i {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 22px;
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
}

.faq-answer p a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

/* =============== 
   FOOTER
   =============== */
.footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 80px 0 30px;
  position: relative;
}

/* Noise texture overlay for dark sections */
.pricing-section::after,
.instructors-section::after,
.quiz-section::after,
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/noise.png') repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.pricing-section > *,
.instructors-section > *,
.quiz-section > *,
.footer > * {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 18px;
  filter: brightness(10);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}

.social-icons a:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 22px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: white;
}

.footer-links-col a i {
  width: 18px;
  font-size: 0.82rem;
  margin-right: 6px;
  opacity: 0.5;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* =============== 
   RESPONSIVE
   =============== */
@media (max-width: 992px) {

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 420px;
  }

  .nav-links {
    display: none;
  }

  .mobile-nav-right {
    display: flex;
  }

  .nav-container {
    justify-content: space-between;
  }

  .logo {
    margin: 0;
  }

  .hero-title {
    font-size: 4rem;
  }

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

  .carousel-track {
    grid-auto-columns: 100%;
  }

  .review-carousel-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .review-carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    padding-right: 0;
  }

  .social-icons {
    justify-content: center;
  }


  .section-title-decorative {
    font-size: 3rem;
  }

  .pricing-section {
    padding: 60px 0 84px;
  }

  .schedule-section {
    padding: 60px 0;
  }

  .faq-section {
    padding: 40px 0 80px;
  }

  .intro-section {
    padding: 50px 0 0;
  }

  .instructors-section {
    padding: 40px 0 60px;
  }

  .testimonials-section {
    padding: 56px 0;
  }

  .instagram-section {
    padding: 36px 0 44px;
  }

  .instagram-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .contact-panel {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .contact-title {
    font-size: 2.2rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .btn-primary {
    width: 100%;
    text-align: center;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 320px;
  }

  .contact-map-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-oratipusok .intro-section {
    padding: 36px 0 8px;
  }

  .page-oratipusok .class-details-section {
    padding-top: 0;
  }

  .page-separator-compact {
    padding: 10px 0 16px;
  }

  .page-separator-compact .v-line {
    height: 56px;
  }

  .hero-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-tagline span {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.42;
  }

  .hero-kicker {
    font-size: 1.54rem;
    line-height: 1.14;
    margin-bottom: 14px;
    max-width: 340px;
  }

  .hero-btn {
    padding: 12px 32px;
    font-size: 13px;
  }

  .hero {
    min-height: 280px;
    height: 50vh;
    max-height: 420px;
  }

  .classes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .class-info {
    padding: 14px;
  }

  .class-type {
    font-size: 0.75rem;
  }

  .class-name {
    font-size: 1.2rem;
  }

  .intro-title {
    font-size: 1.8rem;
  }

  .quiz-intro-screen {
    padding-top: 0;
  }

  .quiz-title {
    font-size: 2.35rem;
  }

  .quiz-subtitle {
    font-size: 0.98rem;
    margin-bottom: 26px;
  }

  .intro-title-large {
    font-size: 2rem;
  }

  .class-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .page-oratipusok .class-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .instructors-layout .class-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(1) { order: 1; } /* Tina */
  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(4) { order: 2; } /* Vani */
  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(7) { order: 3; } /* Heni */
  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(5) { order: 4; } /* Dóri */
  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(6) { order: 5; } /* Eszter */
  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(2) { order: 6; } /* Kata */
  .instructors-layout .class-cards-grid > .class-detail-card:nth-child(3) { order: 7; } /* Anna */

  .class-detail-img {
    /* full image visible */
  }

  .class-detail-content {
    padding: 22px 20px 24px;
  }

  .class-detail-name {
    font-size: 1.5rem;
  }

  .class-detail-desc {
    font-size: 0.88rem;
  }

  .intro-content p {
    font-size: 1rem;
  }

  .promo-bar {
    font-size: 12px;
  }

  .section-title-decorative {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .vertical-separator {
    padding: 30px 0;
  }

  .v-line {
    height: 100px;
  }

  /* Pricing mobile */
  .pricing-section {
    padding: 50px 0 60px;
  }

  .pricing-subtitle {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }

  .pricing-category {
    margin-bottom: 20px;
    padding: 20px 14px 16px;
    border-radius: 14px;
  }

  .pricing-label {
    font-size: 0.9rem;
  }

  .pricing-row-price {
    font-size: 1rem;
    padding: 7px 10px;
  }

  .pricing-row {
    padding: 11px 10px;
    border-radius: 10px;
    align-items: flex-start;
    gap: 10px;
  }

  .pricing-cat-title {
    font-size: 1.02rem;
    padding: 10px 12px;
    letter-spacing: 1.6px;
  }

  .pricing-cat-sub {
    font-size: 0.62rem;
  }

  .pricing-cat-desc {
    font-size: 0.86rem;
    margin-bottom: 14px;
  }

  .pricing-validity {
    font-size: 0.74rem;
  }

  .pricing-note {
    gap: 10px;
    padding: 14px 0 0 12px;
  }

  .pricing-note-title {
    font-size: 0.82rem;
    padding: 4px 8px;
  }

  .pricing-note-text {
    font-size: 0.82rem;
  }

  .private-info {
    font-size: 0.85rem;
  }

  /* Schedule mobile */
  .booking-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .booking-step {
    padding: 28px 22px 24px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
    margin-bottom: 16px;
  }

  .step-content h3 {
    font-size: 0.85rem;
  }

  .step-content p {
    font-size: 0.82rem;
  }

  .quiz-actions {
    flex-direction: column;
  }

  .quiz-nav-btn {
    width: 100%;
  }

  .quiz-step-helper {
    font-size: 0.68rem;
    margin-bottom: 14px;
  }

  .quiz-result-card {
    padding: 18px 16px;
  }

  .iframe-container {
    padding: 10px;
  }

  /* FAQ mobile */
  .faq-question {
    font-size: 1rem;
    padding: 18px 0;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  /* Footer mobile */
  .footer {
    padding: 50px 0 20px;
  }

  .footer-contact h2 {
    font-size: 2.2rem;
  }

  .contact-list li {
    font-size: 1rem;
  }

  /* Carousel mobile */
  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .carousel-wrapper {
    gap: 6px;
  }

  .instructor-name {
    font-size: 1.3rem;
  }

  .instructor-role {
    font-size: 0.75rem;
  }

  .instructor-info {
    padding: 16px;
  }

  .review-carousel-track {
    grid-auto-columns: 100%;
    gap: 12px;
  }

  .review-carousel-wrapper {
    gap: 6px;
  }

  .review-carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .review-card {
    min-height: 198px;
    padding: 18px 16px;
    border-radius: 14px;
  }

  .review-name {
    font-size: 0.95rem;
  }

  .review-meta {
    font-size: 0.65rem;
  }

  .review-text {
    font-size: 0.82rem;
  }

  .testimonials-score {
    font-size: 1.55rem;
  }

  .testimonials-count {
    font-size: 0.72rem;
    letter-spacing: 1.1px;
  }

  /* Buttons mobile */
  .btn-primary {
    padding: 12px 28px;
    font-size: 13px;
  }

  .instagram-wrap {
    padding: 20px 12px 16px;
  }

  .instagram-title {
    font-size: 1.5rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 360px;
  }

  .instagram-follow {
    margin-top: 12px;
    font-size: 0.66rem;
  }
}

/* ===============
   POPUP / MODAL
   =============== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s ease;
  position: relative;
}

.popup-overlay.active .popup {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.6);
}

.popup-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-body {
  padding: 32px 30px 28px;
  text-align: center;
}

.popup-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--secondary);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.popup-title {
  font-family: var(--font-decorative);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
}

.popup-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.popup-text strong {
  color: var(--primary);
}

.popup-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 36px;
}

.popup-dismiss {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #999;
  cursor: pointer;
  transition: var(--transition);
}

.popup-dismiss:hover {
  color: var(--primary);
}

@media (max-width: 576px) {
  .popup {
    max-width: 340px;
  }

  .popup-img {
    height: 150px;
  }

  .popup-body {
    padding: 24px 20px 22px;
  }

  .popup-title {
    font-size: 1.6rem;
  }
}

/* ===============
   TEXTURES & GRAIN
   =============== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.intro-section,
.classes-section,
.class-details-section,
.events-section,
.blog-section,
.blog-post-section,
.vertical-separator,
.instructors-section,
.testimonials-section,
.instagram-section,
.schedule-section,
.faq-section {
  position: relative;
}

.intro-section::before,
.classes-section::before,
.class-details-section::before,
.events-section::before,
.blog-section::before,
.blog-post-section::before,
.vertical-separator::before,
.schedule-section::before,
.faq-section::before,
.instagram-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url('assets/noise.png') repeat;
  opacity: 0.065;
}

.intro-section > *,
.classes-section > *,
.class-details-section > *,
.events-section > *,
.blog-section > *,
.blog-post-section > *,
.vertical-separator > *,
.schedule-section > *,
.faq-section > *,
.instagram-section > * {
  position: relative;
  z-index: 1;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.pricing-section {
  position: relative;
}

/* =============== 
   SCROLL ANIMATIONS
   =============== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes growLine {
  from {
    height: 0;
  }

  to {
    height: 160px;
  }
}

/* Elements waiting to be animated */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.anim-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.anim-fade-in.visible {
  opacity: 1;
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Staggered card animations */
.class-card.anim-fade-up:nth-child(1) {
  transition-delay: 0s;
}

.class-card.anim-fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.class-card.anim-fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.class-card.anim-fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

/* Staggered instructor card animations */
.instructor-card.anim-fade-up:nth-child(1) {
  transition-delay: 0s;
}

.instructor-card.anim-fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.instructor-card.anim-fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.info-card.anim-fade-up:nth-child(1) {
  transition-delay: 0s;
}

.info-card.anim-fade-up:nth-child(2) {
  transition-delay: 0.15s;
}

.info-card.anim-fade-up:nth-child(3) {
  transition-delay: 0.3s;
}

/* Vertical line animation */
.v-line {
  animation: growLine 1.2s ease forwards;
}

/* Hero content entrance */
.hero-content {
  animation: fadeInUp 1s ease 0.3s both;
}

/* Promo bar subtle pulse */
.promo-bar {
  animation: fadeIn 0.6s ease both;
}
