/* ============================================
   Gaze Yoga Pilates Fitness Studio
   Main Stylesheet
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;400;500;600;700&family=Noto+Sans+TC:wght@300;400;500;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --cream:        #FAF7F2;
  --warm-white:   #FEFCF8;
  --sage:         #8B9E7E;
  --sage-light:   #B5C4A8;
  --sage-dark:    #6B7E5E;
  --brown:        #8C6B4E;
  --brown-light:  #B8956F;
  --brown-dark:   #6B4F37;
  --blush:        #E8CFC0;
  --blush-light:  #F5E8E0;
  --charcoal:     #3D3530;
  --text-main:    #4A3F38;
  --text-light:   #7A6E67;
  --text-muted:   #9E9590;
  --border:       #E8E0D8;
  --gold:         #C9A96E;
  --gold-light:   #E8D4B0;
  --shadow-sm:    0 2px 8px rgba(60,40,20,0.08);
  --shadow-md:    0 4px 20px rgba(60,40,20,0.12);
  --shadow-lg:    0 8px 40px rgba(60,40,20,0.15);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --font-serif:   'Playfair Display', 'Noto Serif TC', serif;
  --font-sans:    'Noto Sans TC', sans-serif;
  --transition:   0.3s ease;
  --nav-height:   72px;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); line-height: 1.3; color: var(--charcoal); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-main); }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-sage { color: var(--sage-dark); }
.text-brown { color: var(--brown); }
.text-gold { color: var(--gold); }
.bg-cream { background: var(--cream); }
.bg-warm { background: var(--warm-white); }
.bg-blush { background: var(--blush-light); }
.bg-sage { background: #EEF2EB; }
.bg-charcoal { background: var(--charcoal); }

/* Section Label */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: #EEF2EB;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Section Title */
.section-title {
  margin-bottom: 12px;
  color: var(--charcoal);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* Divider */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--sage), var(--brown-light));
  margin: 16px auto 32px;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #5a6e4e, var(--sage-dark));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
}
.btn-secondary:hover {
  background: var(--sage-dark);
  color: white;
  transform: translateY(-2px);
}
.btn-brown {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-brown:hover {
  background: linear-gradient(135deg, #5a3f2b, var(--brown-dark));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: white;
  color: var(--sage-dark);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(60,40,20,0.1);
}
.nav-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-en {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}
.nav-logo .logo-zh {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 6px 10px;
  border-radius: 6px;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.nav-links a:hover { color: var(--sage-dark); background: #EEF2EB; }
.nav-links a.active { color: var(--sage-dark); font-weight: 700; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #128C7E;
  padding: 8px 16px;
  border-radius: 50px;
  background: #E8F8F5;
  transition: all var(--transition);
}
.nav-wa:hover { background: #25D366; color: white; }
.nav-book {
  font-size: 0.82rem;
  padding: 8px 20px;
}
/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,247,242,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  padding: 10px 24px;
  border-radius: 8px;
  transition: all var(--transition);
}
.mobile-menu a:hover { color: var(--sage-dark); background: #EEF2EB; }
.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.5rem;
  color: var(--text-light);
  padding: 8px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,53,48,0.65) 0%,
    rgba(61,53,48,0.35) 50%,
    rgba(61,53,48,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: white;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll span { width: 1px; height: 40px; background: rgba(255,255,255,0.4); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Image Section --- */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-rounded { border-radius: var(--radius-md); }
.img-hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* --- Cards --- */
.card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 28px; }
.card-img { width: 100%; height: 220px; object-fit: cover; }

/* Feature Card */
.feature-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #EEF2EB, #D8E5D0);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* Pricing Card */
.pricing-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: var(--sage);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--sage-dark);
  box-shadow: var(--shadow-md);
}
.pricing-header {
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, #EEF2EB, #E8EFE4);
}
.pricing-header.dark {
  background: linear-gradient(135deg, var(--charcoal), var(--brown-dark));
  color: white;
}
.pricing-header.dark h3,
.pricing-header.dark p { color: white; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 12px 0;
}
.pricing-currency { font-size: 1.2rem; color: var(--sage-dark); font-weight: 600; }
.pricing-amount { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.pricing-per { font-size: 0.85rem; color: var(--text-light); }
.pricing-body { padding: 24px 28px; }

/* --- Notice Banner --- */
.notice-banner {
  background: linear-gradient(135deg, #EEF2EB, #E8EFE4);
  border-left: 4px solid var(--sage-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-bottom: 12px;
}
.notice-banner.orange {
  background: linear-gradient(135deg, #FFF8F0, #FDEEDD);
  border-color: var(--brown);
}
.notice-banner.pink {
  background: linear-gradient(135deg, #FFF5F0, #FCEAE3);
  border-color: #D4806A;
}

/* --- Grid Layouts --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

/* --- Table Style --- */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.styled-table th {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: white;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.styled-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-main);
}
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: #F8FAF6; }
.price-highlight { color: var(--sage-dark); font-weight: 700; font-size: 1.05rem; }

/* --- Tags & Badges --- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.tag-green { background: #EEF2EB; color: var(--sage-dark); }
.tag-brown { background: #F5ECE4; color: var(--brown-dark); }
.tag-pink { background: #FFF0EB; color: #C0664E; }
.tag-gold { background: #FBF3E4; color: #9A7040; }

/* --- Steps --- */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}
.step-content { flex: 1; padding-top: 8px; }
.step-content h4 { color: var(--charcoal); margin-bottom: 4px; }
.step-content p { font-size: 0.9rem; color: var(--text-light); }

/* --- Review Card --- */
.review-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-stars { color: #F59E0B; font-size: 0.95rem; margin-bottom: 12px; }
.review-text {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.review-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}

/* --- Stat Box --- */
.stat-box {
  text-align: center;
  padding: 28px 20px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* --- WhatsApp Float --- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  color: white;
  font-size: 1.6rem;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(135deg, #EEF2EB 0%, var(--cream) 60%, var(--blush-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,158,126,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.page-hero-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-en {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: white;
  display: block;
  margin-bottom: 4px;
}
.footer-brand .logo-zh {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--sage); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--sage-light); }
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact p i { color: var(--sage-light); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--sage-light); }

/* Social Enterprise Section */
.social-enterprise-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 24px;
}
.social-enterprise-footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.social-enterprise-footer p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* --- Animation --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.visible { opacity: 1; }

/* --- Announcement Banner --- */
.announcement-bar {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}
.announcement-bar a { color: white; text-decoration: underline; }
body.has-announcement .navbar { top: 40px; }
body.has-announcement .page-hero { padding-top: calc(var(--nav-height) + 100px); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-cta .nav-wa { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* --- Special Classes --- */
.img-poster {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.img-poster:hover { transform: scale(1.02); }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
}
.check-list li::before {
  content: '✓';
  color: var(--sage-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-box {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.gradient-text {
  background: linear-gradient(135deg, var(--sage-dark), var(--brown));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Schedule Tags */
.schedule-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}
.schedule-tag.female {
  background: #FFF0F5;
  color: #B05080;
  border: 1px solid #F0C0D5;
}
.schedule-tag.mixed {
  background: #EEF2EB;
  color: var(--sage-dark);
  border: 1px solid var(--sage-light);
}
.schedule-tag.family {
  background: #FFF8E8;
  color: #9A7040;
  border: 1px solid var(--gold-light);
}
