/* ============================================
   AG Health & Wellness — Premium Stylesheet
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --clr-primary: #49887B;
  --clr-primary-dark: #3A6E63;
  --clr-primary-light: #64A99A;
  --clr-accent: #AA7D68;
  --clr-accent-light: #C49A82;
  --clr-bg-white: #FFFFFF;
  --clr-bg-cream: #F5F0E8;
  --clr-bg-light: #FBFFF0;
  --clr-bg-sage: #E8F0E8;
  --clr-text-dark: #2D3436;
  --clr-text-body: #4A4A4A;
  --clr-text-muted: #7A7A7A;
  --clr-text-white: #FFFFFF;

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-hero: clamp(2.4rem, 5vw, 4rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 2.8rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: 0.875rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text-body);
  line-height: 1.7;
  background-color: var(--clr-bg-white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--clr-text-white);
  border-color: var(--clr-text-white);
}

.btn-outline:hover {
  background: var(--clr-text-white);
  color: var(--clr-primary);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--clr-accent);
  color: var(--clr-text-white);
  border-color: var(--clr-accent);
}

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

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Section Titles --- */
.section-label {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-primary);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--clr-text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--clr-primary);
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--clr-text-muted);
  max-width: 650px;
  line-height: 1.8;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text-white);
  transition: var(--transition);
}

.navbar.scrolled .nav-brand {
  color: var(--clr-primary);
}

.nav-brand-icon {
  width: 38px;
  height: 38px;
  background: var(--clr-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
}

.navbar.scrolled .nav-brand-icon {
  background: var(--clr-primary);
}

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

.nav-links a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

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

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

.navbar.scrolled .nav-links a {
  color: var(--clr-text-body);
}

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

.nav-cta {
  background: var(--clr-primary) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--clr-primary-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--clr-text-white);
  border-radius: 4px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--clr-text-dark);
}

.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);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 40, 35, 0.85) 0%,
    rgba(73, 136, 123, 0.4) 50%,
    rgba(20, 40, 35, 0.7) 100%
  );
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0 80px;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-badge::before {
  content: '🌿';
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--clr-text-white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: #8FD9C9;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

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

/* floating stats */
.hero-stats {
  position: absolute;
  bottom: 40px;
  right: 5%;
  z-index: 3;
  display: flex;
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  color: white;
  min-width: 120px;
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #8FD9C9;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-top: 4px;
}

/* --- Wave Dividers --- */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.wave-divider.flip {
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: -2px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--clr-bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

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

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--clr-bg-cream);
  z-index: -1;
}

.about-text .section-subtitle {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.85;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--clr-bg-cream);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: var(--fs-small);
  color: var(--clr-text-dark);
  transition: var(--transition);
}

.highlight-item:hover {
  background: var(--clr-primary);
  color: white;
  transform: translateX(4px);
}

.highlight-item .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ============================================
   LIFESTYLE SECTION
   ============================================ */
.lifestyle {
  padding: 100px 0;
  background: var(--clr-bg-cream);
}

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

.lifestyle-header .section-subtitle {
  margin: 0 auto;
}

.lifestyle-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.lifestyle-card {
  background: var(--clr-bg-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.lifestyle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.lifestyle-card:hover::before {
  transform: scaleX(1);
}

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

.lifestyle-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--clr-bg-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.lifestyle-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  color: var(--clr-text-dark);
  margin-bottom: 12px;
}

.lifestyle-card p {
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
  line-height: 1.7;
}

/* ============================================
   YOGA SECTION
   ============================================ */
.yoga {
  padding: 100px 0;
  background: var(--clr-bg-white);
}

.yoga-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.yoga-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

.yoga-image:hover img {
  transform: scale(1.03);
}

.yoga-content .section-subtitle {
  margin-bottom: 28px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.benefit-item:hover {
  background: var(--clr-bg-cream);
}

.benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-bg-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

.benefit-item span {
  font-size: var(--fs-body);
  color: var(--clr-text-body);
  line-height: 1.6;
}

/* ============================================
   PRANAYAMA SECTION
   ============================================ */
.pranayama {
  padding: 100px 0;
  background: var(--clr-bg-cream);
}

.pranayama-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.pranayama-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  order: 2;
}

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

.pranayama-image:hover img {
  transform: scale(1.03);
}

.pranayama-content {
  order: 1;
}

.pranayama-content .section-subtitle {
  margin-bottom: 28px;
}

/* ============================================
   DIET SECTION
   ============================================ */
.diet {
  padding: 100px 0;
  background: var(--clr-bg-white);
}

.diet-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.diet-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.diet-image:hover img {
  transform: scale(1.03);
}

.diet-content .section-subtitle {
  margin-bottom: 28px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 50%, #2C5E54 100%);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content .section-label {
  color: rgba(255,255,255,0.7);
}

.cta-content .section-title {
  color: var(--clr-text-white);
  margin-bottom: 24px;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-body);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-small);
  font-weight: 500;
}

.cta-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1a2e2a;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-brand {
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: var(--fs-small);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

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

.footer-social a:hover {
  background: var(--clr-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: white;
  margin-bottom: 20px;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

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

.footer-newsletter p {
  font-size: var(--fs-small);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  color: white;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
  border-color: var(--clr-primary);
  background: rgba(255,255,255,0.1);
}

.newsletter-form button {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: var(--clr-primary);
  color: white;
  border: none;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--clr-primary-light);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .about-grid,
  .yoga-grid,
  .pranayama-grid,
  .diet-grid {
    gap: 40px;
  }

  .hero-stats {
    display: none;
  }

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

@media (max-width: 768px) {
  /* Nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .nav-links a {
    color: var(--clr-text-body) !important;
    font-size: 1rem;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }

  .mobile-overlay.show {
    display: block;
  }

  /* Hero */
  .hero .container {
    padding: 140px 0 100px;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

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

  /* Two-column to single column */
  .about-grid,
  .yoga-grid,
  .pranayama-grid,
  .diet-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pranayama-content {
    order: 2;
  }

  .pranayama-image {
    order: 1;
  }

  .about-image img,
  .yoga-image img,
  .pranayama-image img,
  .diet-image img {
    height: 320px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  /* Lifestyle cards */
  .lifestyle-cards {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-features {
    flex-direction: column;
    align-items: center;
  }

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

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: 92%;
  }

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

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

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }

  .stat-card {
    padding: 14px 16px;
  }
}

/* ============================================
   REGISTRATION FORM
   ============================================ */
.registration {
  padding: 100px 0;
  background: var(--clr-bg-cream);
}

.reg-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reg-info p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.reg-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reg-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-body);
  color: var(--clr-text-body);
  font-weight: 500;
}

.reg-perk span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-bg-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.reg-form-card {
  background: var(--clr-bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.reg-form-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: var(--clr-text-dark);
  margin-bottom: 28px;
  text-align: center;
}

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

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

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #E0DDD5;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text-dark);
  background: var(--clr-bg-white);
  outline: none;
  transition: var(--transition);
}

.form-group input::placeholder {
  color: #B0ADA5;
}

.form-group input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(73, 136, 123, 0.12);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 16px;
}

/* Success message */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: var(--clr-primary);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
}

@media (max-width: 768px) {
  .reg-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reg-form-card {
    padding: 32px 24px;
  }
}

/* --- Print Styles --- */
@media print {
  .navbar,
  .hamburger,
  .hero-stats,
  .wave-divider,
  .cta-section {
    display: none;
  }

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