/* ========================================
   AMMA Website - Complete Style System
   Version: 1.0
   Based on: front-end-spec.md & brief.md
   ======================================== */

/* === CUSTOM FONTS === */
@font-face {
  font-family: 'Isidora Soft';
  src: url('../assets/fonts/Isidora Soft Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* === CSS RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--amma-dark);
  background-color: var(--amma-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

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

/* === CSS VARIABLES === */
:root {
  /* Primary Colors */
  --amma-yellow: #F7C600;
  --amma-gold: #E5B600;
  --amma-dark: #1A1A1A;
  --amma-light: #FFF9E6;
  --amma-white: #FFFFFF;

  /* Semantic Colors */
  --amma-success: #22C55E;
  --amma-warning: #F59E0B;
  --amma-error: #EF4444;
  --amma-info: #3B82F6;
  --amma-blue: #3B82F6;

  /* Neutrals */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Isidora Soft', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-yellow: 0 4px 14px rgba(247, 198, 0, 0.3);
  --shadow-yellow-lg: 0 8px 24px rgba(247, 198, 0, 0.4);

  /* Transitions */
  --duration-instant: 100ms;
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.section {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

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

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

/* === TYPOGRAPHY === */
.display {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
}

h1, .h1 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.2;
}

h2, .h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.3;
}

h3, .h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.4;
}

h4, .h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.4;
}

h5, .h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5;
}

.body-large {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

.body-small {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.caption {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}

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

.text-muted { color: var(--gray-600); }
.text-yellow { color: var(--amma-yellow); }
.text-white { color: var(--amma-white); }

.highlight {
  color: var(--amma-yellow);
  background: linear-gradient(180deg, transparent 60%, rgba(247, 198, 0, 0.3) 60%);
}

@media (min-width: 768px) {
  .display {
    font-size: 3rem;
  }

  h1, .h1 {
    font-size: 2.25rem;
  }

  h2, .h2 {
    font-size: 1.875rem;
  }

  h3, .h3 {
    font-size: 1.5rem;
  }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background-color: var(--amma-yellow);
  color: var(--amma-dark);
}

.btn-primary:hover {
  background-color: #FFD54F;
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--amma-dark);
  border: 2px solid var(--amma-yellow);
}

.btn-secondary:hover {
  background-color: var(--amma-light);
}

.btn-cta {
  background-color: var(--amma-blue);
  color: white;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 700;
}

.btn-cta:hover {
  background-color: #2563EB;
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--amma-dark);
  padding: 8px 16px;
  font-weight: 500;
}

.btn-ghost:hover {
  background-color: var(--amma-light);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--amma-white);
  border: 2px solid var(--amma-white);
}

.btn-outline-white:hover {
  background-color: var(--amma-white);
  color: var(--amma-dark);
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-large {
  padding: 14px 28px;
  font-size: 18px;
}

.btn-icon {
  padding: 12px;
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--amma-white);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.header-nav {
  display: none;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--amma-dark);
  padding: 8px 0;
  position: relative;
  transition: color var(--duration-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amma-yellow);
  transition: width var(--duration-fast) var(--ease-out);
}

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

.header-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--amma-dark);
  border-radius: 2px;
  transition: all var(--duration-fast);
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--amma-white);
  padding: 24px;
  z-index: 999;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-nav .nav-link {
  padding: 16px;
  font-size: 18px;
  border-radius: var(--radius-md);
}

.mobile-menu-nav .nav-link:hover {
  background-color: var(--amma-light);
}

.mobile-menu-cta {
  margin-top: auto;
  padding-top: 24px;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  width: 100%;
}

/* Hero with fullscreen background image */
.hero-fullbg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Gradient overlay from left to right - smooth transition 0-70%, clear 70-100% */
.hero-fullbg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(255, 249, 230, 0.98) 0%,
    rgba(255, 249, 230, 0.95) 15%,
    rgba(255, 249, 230, 0.9) 30%,
    rgba(255, 249, 230, 0.75) 45%,
    rgba(255, 249, 230, 0.5) 55%,
    rgba(255, 249, 230, 0.25) 63%,
    rgba(255, 249, 230, 0) 70%,
    rgba(255, 249, 230, 0) 100%
  );
  z-index: 1;
}

/* Mobile: gradient covers more for readability */
@media (max-width: 767px) {
  .hero-fullbg {
    background-position: 70% center;
  }

  .hero-fullbg::before {
    background: linear-gradient(
      to bottom,
      rgba(255, 249, 230, 0.95) 0%,
      rgba(255, 249, 230, 0.85) 50%,
      rgba(255, 249, 230, 0) 70%,
      rgba(255, 249, 230, 0) 100%
    );
  }
}

.hero-fullbg .container {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 80px;
  width: 100%;
  z-index: 3;
}

@media (min-width: 768px) {
  .hero-wave {
    height: 120px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.hero-text {
  max-width: 550px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--amma-dark);
}

.hero-title strong {
  color: var(--amma-dark);
  position: relative;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero {
    padding: 60px 0 120px;
    min-height: 550px;
  }

  .hero-fullbg {
    min-height: 600px;
  }

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

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }

  .hero-text {
    flex: 1;
    max-width: 550px;
  }

  .hero-image {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 600px;
  }

  .hero-fullbg {
    min-height: 650px;
  }

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

  .hero-text {
    max-width: 600px;
  }
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--amma-light) 0%, var(--amma-white) 100%);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
}

.breadcrumb a {
  color: var(--amma-blue);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 64px 0;
  }

  .page-hero-title {
    font-size: 2.5rem;
  }
}

/* === STATS SECTION === */
.stats-section {
  background-color: var(--amma-dark);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-block {
  padding: 16px;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amma-yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-300);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-number {
    font-size: 3.5rem;
  }

  .stat-label {
    font-size: 16px;
  }
}

/* === CARDS === */
.card {
  background: var(--amma-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

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

.card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal);
}

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

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--amma-yellow);
  color: var(--amma-dark);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.card-description {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.5;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--amma-blue);
  font-weight: 500;
  font-size: 14px;
}

.card-link:hover {
  text-decoration: underline;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}

/* === GRID LAYOUTS === */
.grid {
  display: grid;
  gap: 24px;
}

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

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

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

@media (min-width: 640px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--amma-yellow) 0%, var(--amma-gold) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") repeat;
  background-size: 100px;
  opacity: 0.5;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--amma-dark);
  margin-bottom: 12px;
}

.cta-text {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-section .btn-cta {
  background-color: var(--amma-dark);
  color: var(--amma-white);
}

.cta-section .btn-cta:hover {
  background-color: var(--gray-800);
}

@media (min-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 2.25rem;
  }
}

/* === TESTIMONIALS === */
.testimonials-section {
  background-color: var(--gray-50);
  padding: 64px 0;
}

.testimonial-card {
  background: var(--amma-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  color: var(--amma-yellow);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-top: 32px;
  color: var(--gray-700);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 14px;
  color: var(--gray-500);
}

/* === PARTNERS === */
.partners-section {
  padding: 64px 0;
  background-color: var(--gray-50);
  overflow: hidden;
}

.partners-title {
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 48px;
  color: var(--amma-dark);
  font-weight: 900;
  font-size: 1.75rem;
}

/* Partners Carousel with Arrows */
.partners-carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.partners-carousel {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
}

.partners-track {
  display: flex;
  gap: 32px;
  transition: transform 0.5s ease-in-out;
  align-items: center;
}

.partner-logo {
  height: 55px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: 0.75;
  transition: all var(--duration-fast);
  flex-shrink: 0;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--amma-white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast);
  z-index: 10;
  color: var(--amma-dark);
  font-size: 18px;
}

.carousel-arrow:hover {
  background: var(--amma-yellow);
  border-color: var(--amma-yellow);
  box-shadow: var(--shadow-yellow);
}

.carousel-arrow.prev {
  left: 0;
}

.carousel-arrow.next {
  right: 0;
}

/* Legacy grid fallback */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

/* === NEWS SECTION === */
.news-section {
  padding: 64px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
}

.section-subtitle {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-link {
  color: var(--amma-blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.section-link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

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

  .section-subtitle {
    margin: 0;
  }
}

/* === SPONSORSHIP PAGE === */
.sponsorship-hero {
  background: linear-gradient(135deg, var(--amma-light) 0%, #FFF5CC 50%, var(--amma-white) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.sponsorship-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247, 198, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite;
}

.sponsorship-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 5s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.sponsorship-hero .container {
  position: relative;
  z-index: 1;
}

.sponsorship-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amma-yellow);
  color: var(--amma-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.sponsorship-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--amma-dark);
  margin-bottom: 20px;
  line-height: 1.1;
}

.sponsorship-hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 32px;
}

.sponsorship-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}

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

.sponsorship-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amma-yellow);
  display: block;
  line-height: 1;
}

.sponsorship-stat-label {
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 8px;
}

/* How It Works - Visual Steps */
.how-it-works-step {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.how-it-works-step:last-of-type {
  margin-bottom: 0;
}

.how-it-works-step.reverse {
  flex-direction: row-reverse;
}

.step-image {
  flex: 1;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.step-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.step-image {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.how-it-works-step:hover .step-image {
  transform: scale(1.03) rotate(2deg);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.how-it-works-step:hover .step-image img {
  transform: scale(1.05);
}

.step-number-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: var(--amma-yellow);
  color: var(--amma-dark);
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(247, 198, 0, 0.5);
  animation: badgePulse 2s ease-in-out infinite;
}

.how-it-works-step.reverse .step-number-badge {
  left: auto;
  right: 20px;
}

.step-info {
  flex: 1;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--amma-light), #FFE082);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease-out);
}

.step-icon i {
  font-size: 32px;
  color: var(--amma-yellow);
  transition: all 0.3s ease;
}

.how-it-works-step:hover .step-icon {
  background: var(--amma-yellow);
  transform: rotate(10deg) scale(1.1);
}

.how-it-works-step:hover .step-icon i {
  color: var(--amma-dark);
}

.step-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amma-dark);
  margin-bottom: 16px;
}

.step-info p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-info p strong {
  color: var(--amma-dark);
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.step-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amma-light);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--amma-dark);
  transition: all 0.3s ease;
}

.step-tags span i {
  color: var(--amma-yellow);
  font-size: 12px;
}

.step-tags span:hover {
  background: var(--amma-yellow);
  transform: translateY(-3px);
}

.step-tags span:hover i {
  color: var(--amma-dark);
}

@media (max-width: 900px) {
  .how-it-works-step,
  .how-it-works-step.reverse {
    flex-direction: column;
    gap: 32px;
  }

  .step-image img {
    height: 280px;
  }

  .step-number-badge,
  .how-it-works-step.reverse .step-number-badge {
    left: 20px;
    right: auto;
  }

  .sponsorship-hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* Value Cards */
.value-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--amma-white);
  border-radius: 24px;
  border: 3px solid var(--gray-200);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: visible;
}

.value-card:hover {
  border-color: var(--amma-yellow);
  box-shadow: 0 12px 32px rgba(247, 198, 0, 0.25);
}

.value-card.featured {
  border-color: var(--amma-yellow);
  border-top: 6px solid var(--amma-yellow);
  background: linear-gradient(180deg, var(--amma-light) 0%, var(--amma-white) 100%);
  padding-top: 37px;
}

.value-card-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amma-yellow);
  color: var(--amma-dark);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(247, 198, 0, 0.3);
}


.value-card-icon {
  width: 80px;
  height: 80px;
  background: var(--amma-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s var(--ease-out);
}

.value-card-icon i {
  font-size: 32px;
  color: var(--amma-yellow);
}

.value-card:hover .value-card-icon {
  background: var(--amma-yellow);
  transform: scale(1.1) rotate(10deg);
}

.value-card:hover .value-card-icon i {
  color: var(--amma-dark);
}

.value-card-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--amma-dark);
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.value-card-price .currency {
  font-size: 1rem;
  font-weight: 600;
}

.value-card-price .period {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-500);
}

.value-card-period {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.value-card-daily {
  display: inline-block;
  background: var(--amma-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--amma-dark);
  margin-bottom: 20px;
}

.value-card-description {
  color: var(--gray-600);
  margin-bottom: 24px;
  min-height: 48px;
}

.value-card .btn {
  width: 100%;
}

/* Impact Counter */
.impact-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(247, 198, 0, 0.1);
  border-radius: 12px;
  margin-top: 16px;
}

.impact-counter i {
  font-size: 24px;
  color: var(--amma-yellow);
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
  60% { transform: scale(1); }
}

.impact-counter span {
  font-size: 14px;
  color: var(--amma-dark);
  font-weight: 500;
}

/* === FOOTER === */
.footer {
  background-color: var(--amma-dark);
  color: var(--gray-300);
  padding-top: 64px;
  position: relative;
  margin-top: 0;
}

.footer-wave {
  display: none; /* Remove wave that was causing layout issues */
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand {
  grid-column: 1 / -1;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--gray-400);
  margin-bottom: 16px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: all var(--duration-fast);
}

.footer-social a:hover {
  background-color: var(--amma-yellow);
  color: var(--amma-dark);
}

.footer-links h4 {
  color: var(--amma-white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--duration-fast);
}

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

.footer-contact address {
  font-style: normal;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  color: var(--gray-400);
  transition: color var(--duration-fast);
}

.footer-contact a:hover {
  color: var(--amma-yellow);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--gray-400);
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* === WHATSAPP BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all var(--duration-fast) var(--ease-out);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .fab.fa-whatsapp {
  font-size: 32px;
  color: white;
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--amma-dark);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--amma-dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.tooltip-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--amma-yellow);
  line-height: 1.3;
}

.tooltip-text {
  font-size: 13px;
  color: var(--amma-white);
  line-height: 1.3;
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* === FORMS === */
.form-field {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--amma-dark);
}

.form-label .required {
  color: var(--amma-error);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: all var(--duration-fast);
  background-color: var(--amma-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--amma-yellow);
  box-shadow: 0 0 0 3px rgba(247, 198, 0, 0.2);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%236B7280' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-position: right 12px center;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.form-error {
  color: var(--amma-error);
  font-size: 14px;
  margin-top: 4px;
}

.form-help {
  color: var(--gray-500);
  font-size: 14px;
  margin-top: 4px;
}

/* Radio and Checkbox */
.form-radio-group,
.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-radio,
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-radio input,
.form-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--amma-yellow);
}

/* === DONATION OPTIONS === */
.donation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.donation-option {
  flex: 1;
  min-width: 100px;
  padding: 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.donation-option:hover {
  border-color: var(--amma-yellow);
}

.donation-option.active {
  border-color: var(--amma-yellow);
  background-color: var(--amma-light);
}

.donation-option input {
  display: none;
}

.donation-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amma-dark);
}

/* === STEPS === */
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.step {
  display: flex;
  gap: 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: var(--amma-yellow);
  color: var(--amma-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-weight: 600;
  margin-bottom: 4px;
}

.step-content p {
  color: var(--gray-600);
  font-size: 14px;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    justify-content: center;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px;
  }
}

/* === FAQ / ACCORDION === */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 16px 20px;
  background-color: var(--amma-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background-color var(--duration-fast);
}

.accordion-header:hover {
  background-color: var(--gray-50);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--duration-fast);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 20px 20px;
  color: var(--gray-600);
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* === TIMELINE === */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--amma-yellow);
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 16px;
  height: 16px;
  background-color: var(--amma-yellow);
  border: 3px solid var(--amma-white);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 2px var(--amma-yellow);
}

.timeline-date {
  font-weight: 600;
  color: var(--amma-gold);
  margin-bottom: 4px;
}

.timeline-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-text {
  color: var(--gray-600);
  font-size: 14px;
}

/* === TEAM GRID === */
.team-card {
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--amma-yellow);
}

.team-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  color: var(--gray-500);
  font-size: 14px;
}

/* === DOCUMENT CARDS === */
.document-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: var(--amma-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
}

.document-card:hover {
  border-color: var(--amma-yellow);
  box-shadow: var(--shadow-md);
}

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

.document-info {
  flex: 1;
}

.document-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.document-meta {
  font-size: 14px;
  color: var(--gray-500);
}

.document-download {
  color: var(--amma-blue);
  font-weight: 500;
  font-size: 14px;
}

/* === MAP PLACEHOLDER === */
.map-container {
  background-color: var(--gray-100);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

/* === PAGINATION === */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.pagination-item {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: 1px solid var(--gray-200);
  transition: all var(--duration-fast);
}

.pagination-item:hover {
  border-color: var(--amma-yellow);
  background-color: var(--amma-light);
}

.pagination-item.active {
  background-color: var(--amma-yellow);
  border-color: var(--amma-yellow);
  color: var(--amma-dark);
}

/* === SIDEBAR === */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background-color: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.sidebar-title {
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-links a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray-600);
  transition: all var(--duration-fast);
}

.sidebar-links a:hover,
.sidebar-links a.active {
  background-color: var(--amma-light);
  color: var(--amma-dark);
}

/* === UTILITY CLASSES === */
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-6 { padding-top: 24px; padding-bottom: 24px; }
.py-8 { padding-top: 32px; padding-bottom: 32px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.flex-wrap { flex-wrap: wrap; }

.hidden { display: none; }

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp var(--duration-slow) var(--ease-out) forwards;
}

/* === SINGLE POST / BLOG ARTICLE === */
.single-post {
  padding-top: 48px;
  padding-bottom: 48px;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr 320px;
  }
}

/* Post Meta in Hero */
.post-meta-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray-600);
}

.post-meta-hero span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-meta-hero a {
  color: var(--amma-blue);
}

.post-meta-hero a:hover {
  text-decoration: underline;
}

/* Featured Image */
.post-featured-image {
  margin-bottom: 32px;
}

.post-featured-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.post-featured-image figcaption {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 12px;
  font-style: italic;
}

/* Post Body Content */
.post-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.post-body .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--amma-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.post-body p {
  margin-bottom: 20px;
}

.post-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amma-dark);
  margin-top: 40px;
  margin-bottom: 16px;
}

.post-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--amma-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}

.post-body ul,
.post-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.post-body ul {
  list-style-type: disc;
}

.post-body ol {
  list-style-type: decimal;
}

.post-body li {
  margin-bottom: 8px;
  padding-left: 8px;
}

.post-body blockquote {
  border-left: 4px solid var(--amma-yellow);
  background-color: var(--amma-light);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.post-body blockquote p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.post-body blockquote p:last-of-type {
  margin-bottom: 8px;
}

.post-body blockquote cite {
  font-size: 14px;
  color: var(--gray-500);
  font-style: normal;
  font-weight: 500;
}

.post-body a {
  color: var(--amma-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-body a:hover {
  color: var(--amma-gold);
}

.post-body img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: 24px 0;
}

/* CTA Inline */
.cta-inline {
  background: linear-gradient(135deg, var(--amma-light) 0%, var(--amma-white) 100%);
  border: 2px solid var(--amma-yellow);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
}

.cta-inline-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--amma-dark);
}

.cta-inline-content p {
  color: var(--gray-600);
  margin-bottom: 20px;
}

.cta-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Post Tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.tags-label {
  font-weight: 500;
  color: var(--gray-600);
  font-size: 14px;
}

.tag {
  background-color: var(--gray-100);
  color: var(--gray-700);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--duration-fast);
}

.tag:hover {
  background-color: var(--amma-yellow);
  color: var(--amma-dark);
}

/* Post Share */
.post-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}

.share-label {
  font-weight: 500;
  color: var(--gray-600);
  font-size: 14px;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amma-white);
  font-size: 16px;
  transition: all var(--duration-fast);
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-facebook { background-color: #1877F2; }
.share-twitter { background-color: #000000; }
.share-whatsapp { background-color: #25D366; }
.share-linkedin { background-color: #0A66C2; }
.share-copy {
  background-color: var(--gray-600);
  border: none;
  cursor: pointer;
}

/* Post Navigation */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

@media (min-width: 640px) {
  .post-navigation {
    grid-template-columns: 1fr 1fr;
  }
}

.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background-color: var(--gray-50);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
}

.post-nav-link:hover {
  background-color: var(--amma-light);
}

.post-nav-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.post-nav-title {
  font-weight: 600;
  color: var(--amma-dark);
}

.post-nav-next {
  text-align: right;
}

/* Author Box */
.author-box {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding: 28px;
  background-color: var(--gray-50);
  border-radius: var(--radius-lg);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--amma-yellow);
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.author-bio {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

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

.author-social a {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all var(--duration-fast);
}

.author-social a:hover {
  background-color: var(--amma-yellow);
  color: var(--amma-dark);
}

/* Comments Section */
.comments-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.comments-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-form-wrapper {
  background-color: var(--gray-50);
  padding: 28px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.comment-form-wrapper h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comment {
  display: flex;
  gap: 16px;
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.comment-author {
  font-weight: 600;
  color: var(--amma-dark);
}

.comment-date {
  font-size: 13px;
  color: var(--gray-500);
}

.comment-text {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.comment-reply-btn {
  font-size: 13px;
  color: var(--amma-blue);
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.comment-reply-btn:hover {
  text-decoration: underline;
}

/* Post Sidebar */
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Related Posts Widget */
.related-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-post {
  display: flex;
  gap: 12px;
  padding: 8px;
  margin: -8px;
  border-radius: var(--radius-md);
  transition: background-color var(--duration-fast);
}

.related-post:hover {
  background-color: var(--amma-light);
}

.related-post img {
  width: 80px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.related-post-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.related-post-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--amma-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-post-date {
  font-size: 12px;
  color: var(--gray-500);
}

/* Category List */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background-color: var(--amma-white);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--gray-700);
  transition: all var(--duration-fast);
}

.category-list li a:hover {
  background-color: var(--amma-light);
  color: var(--amma-dark);
}

.category-list li a span {
  font-size: 12px;
  color: var(--gray-500);
  background-color: var(--gray-100);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, var(--amma-yellow) 0%, var(--amma-gold) 100%);
  text-align: center;
  padding: 28px 20px;
}

.sidebar-cta-icon {
  width: 64px;
  height: 64px;
  background-color: var(--amma-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.sidebar-cta-icon i {
  font-size: 28px;
  color: var(--amma-yellow);
}

.sidebar-cta h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--amma-dark);
}

.sidebar-cta p {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.sidebar-cta .btn-primary {
  background-color: var(--amma-dark);
  color: var(--amma-white);
}

.sidebar-cta .btn-primary:hover {
  background-color: var(--gray-800);
}

/* === ANIMATION ENHANCEMENTS === */

/* Page load fade in */
body {
  opacity: 1;
}

body.page-loaded {
  opacity: 1;
}

/* Header scroll effects */
.header {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.header-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-hidden {
  transform: translateY(-100%);
}

/* Hero section relative positioning for blobs */
.hero {
  position: relative;
  overflow: hidden;
}

/* Ensure content is above blobs */
.hero .container {
  position: relative;
  z-index: 2;
}

/* Card image overflow for zoom effect */
.card-image {
  overflow: hidden;
}

/* Stats section relative for smiley */
.stats-section {
  position: relative;
}

/* CTA section relative for smiley */
.cta-section {
  position: relative;
  overflow: hidden;
}

/* Testimonials section relative for smiley */
.testimonials-section {
  position: relative;
}

/* Partners carousel improvements */
.partners-carousel {
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 40px;
  align-items: center;
  transition: transform 0.5s ease-in-out;
}

/* Scroll progress bar support */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amma-yellow), var(--amma-gold));
  z-index: 9999;
  pointer-events: none;
}

/* === DROPDOWN MENU === */
.nav-dropdown {
  position: relative;
}

.nav-link.has-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link.has-dropdown i {
  font-size: 10px;
  transition: transform var(--duration-fast);
}

.nav-dropdown:hover .nav-link.has-dropdown i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--amma-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--duration-fast);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--gray-700);
  font-size: 14px;
  transition: all var(--duration-fast);
}

.dropdown-menu a:hover {
  background-color: var(--amma-light);
  color: var(--amma-dark);
}

.dropdown-menu a.active {
  color: var(--amma-yellow);
  font-weight: 600;
}

/* Mobile Submenu */
.mobile-submenu {
  display: flex;
  flex-direction: column;
}

.mobile-submenu-items {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  border-left: 2px solid var(--amma-yellow);
  margin-left: 16px;
  margin-top: 8px;
}

.mobile-submenu-items a {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
}

.mobile-submenu-items a:hover {
  background-color: var(--amma-light);
}

.mobile-submenu-items a.active {
  color: var(--amma-yellow);
  font-weight: 600;
}

/* === TEAM CARD ENHANCED === */
.team-card-featured {
  background-color: var(--amma-light);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
}

.team-avatar-large {
  width: 150px;
  height: 150px;
}

.team-role-highlight {
  color: var(--amma-yellow);
  font-weight: 600;
}

/* === TABS NAVIGATION === */
.tabs-container {
  width: 100%;
}

.tabs-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--gray-200);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.tab-btn:hover {
  background: var(--amma-light);
  color: var(--amma-dark);
}

.tab-btn.active {
  background: var(--amma-yellow);
  color: var(--amma-dark);
  border-color: var(--amma-gold);
  font-weight: 600;
}

.tab-btn i {
  font-size: 16px;
}

.tab-btn .tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  background: rgba(0,0,0,0.1);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.tab-btn.active .tab-count {
  background: rgba(0,0,0,0.15);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* === STORIES CAROUSEL === */
.stories-carousel {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stories-wrapper {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  padding: 0; /* No padding by default (centered) */
}

/* Add padding when has overflow for arrows */
.stories-wrapper.has-overflow {
  padding: 0 50px;
}

.stories-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
}

.stories-track::-webkit-scrollbar {
  display: none;
}

/* When content overflows, align to start for scroll */
.stories-track.has-overflow {
  justify-content: flex-start;
}

.story-card {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--duration-fast);
}

.story-card:hover {
  transform: scale(1.02);
}

.story-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--amma-light) 0%, var(--gray-200) 100%);
  border: 3px solid var(--amma-yellow);
  box-shadow: var(--shadow-lg);
}

.story-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.story-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  z-index: 2;
  text-align: center;
}

.story-name {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  line-height: 1.3;
}

.story-role {
  color: var(--amma-yellow);
  font-size: 12px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Carousel Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--amma-white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  display: none; /* Hidden by default, shown via JS when needed */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--duration-fast);
  box-shadow: var(--shadow-md);
}

.carousel-nav.visible {
  display: flex;
}

.carousel-nav:hover {
  background: var(--amma-yellow);
  border-color: var(--amma-gold);
}

.carousel-nav.prev {
  left: -22px;
}

.carousel-nav.next {
  right: -22px;
}

.carousel-nav i {
  font-size: 16px;
  color: var(--gray-700);
}

.carousel-nav:hover i {
  color: var(--amma-dark);
}

/* Responsive Stories */
@media (max-width: 768px) {
  .story-card {
    width: 160px;
  }

  .stories-track {
    gap: 12px;
    padding: 16px 0;
  }

  .carousel-nav {
    display: none;
  }

  .tabs-nav {
    gap: 6px;
  }

  .tab-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* === CATEGORY HEADER === */
.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-title i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amma-light);
  border-radius: var(--radius-full);
  color: var(--amma-yellow);
  font-size: 20px;
}

.category-title h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--amma-dark);
}

.category-title span {
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 400;
}

/* Scroll indicator */
.scroll-hint {
  display: none; /* Hidden by default, shown via JS when overflow */
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 13px;
}

.scroll-hint.visible {
  display: flex;
}

.scroll-hint i {
  animation: bounceX 1.5s infinite;
}

@keyframes bounceX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* === NOTICE BOX === */
.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background-color: var(--amma-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--amma-yellow);
}

.notice-box i {
  color: var(--amma-yellow);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.notice-box p {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.6;
}

.notice-box strong {
  color: var(--amma-dark);
}

/* === BENEFITS LIST === */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefits-list li i {
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 18px;
}

.benefits-list li span {
  color: var(--gray-700);
  line-height: 1.5;
}

/* === ACCORDION / EXPANDABLE CARDS === */
.activity-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.activity-card {
  background: var(--amma-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.activity-card:hover {
  box-shadow: var(--shadow-lg);
}

.activity-header {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 0;
  padding-right: 20px;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.activity-header:hover {
  background: var(--gray-50);
}

.activity-thumb {
  width: 180px;
  min-height: 100%;
  border-radius: 0;
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .activity-thumb {
    width: 220px;
  }
}

.activity-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 0;
}

.activity-info {
  flex: 1;
  min-width: 0;
}

.activity-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--amma-dark);
  margin-bottom: 4px;
}

.activity-info p {
  font-size: 14px;
  color: var(--gray-500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.activity-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.activity-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--amma-light);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--amma-gold);
}

.activity-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amma-light);
  color: var(--amma-yellow);
  flex-shrink: 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.activity-toggle i {
  transition: transform var(--duration-normal) var(--ease-out);
}

.activity-card.expanded .activity-toggle {
  background: var(--amma-yellow);
  color: var(--amma-dark);
}

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

.activity-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.activity-card.expanded .activity-content {
  max-height: 2000px;
}

.activity-body {
  padding: 0 20px 20px 20px;
  border-top: 1px solid var(--gray-100);
}

.activity-description {
  padding: 20px 0;
  color: var(--gray-600);
  line-height: 1.7;
}

/* === PHOTO GALLERY === */
.photo-gallery {
  margin-top: 16px;
}

.photo-gallery h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.photo-gallery h4 i {
  color: var(--amma-yellow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--duration-normal) var(--ease-out);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-zoom {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: var(--amma-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amma-dark);
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--duration-normal) var(--ease-out);
  z-index: 1;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--amma-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amma-dark);
  font-size: 20px;
  cursor: pointer;
  transition: all var(--duration-fast);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
  transform: scale(1.1);
  background: var(--amma-gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.lightbox-nav:hover {
  background: var(--amma-yellow);
  color: var(--amma-dark);
}

.lightbox-nav.prev {
  left: -60px;
}

.lightbox-nav.next {
  right: -60px;
}

/* === IMAGE HOVER MOTION EFFECTS === */

/* Activity thumbnail hover effect */
.activity-thumb {
  transition: transform var(--duration-normal) var(--ease-out),
              filter var(--duration-normal) var(--ease-out);
}

.activity-card:hover .activity-thumb {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Gallery item hover effect */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item img {
  transition: transform var(--duration-slow) var(--ease-out),
              filter var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

/* Story card image hover effect (equipe/diretoria) */
.story-image-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.story-card .story-image {
  transition: transform var(--duration-slow) cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter var(--duration-slow) var(--ease-out);
}

.story-card:hover .story-image {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.story-card:hover {
  transform: translateY(-4px);
}

/* Team/Volunteer card image hover (16:9 cards) */
.card div[style*="aspect-ratio"] img,
.card div[style*="16/9"] img {
  transition: transform var(--duration-slow) cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter var(--duration-slow) var(--ease-out);
}

.card:hover div[style*="aspect-ratio"] img,
.card:hover div[style*="16/9"] img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* General card with image hover */
.card-hover img {
  transition: transform var(--duration-normal) var(--ease-out),
              filter var(--duration-normal) var(--ease-out);
}

.card-hover:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Image lift effect class - apply to any container */
.img-hover-lift {
  overflow: hidden;
}

.img-hover-lift img {
  transition: transform var(--duration-slow) cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow var(--duration-slow) var(--ease-out);
}

.img-hover-lift:hover img {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* === STEP ILLUSTRATIONS === */
.step-illustration {
  background: linear-gradient(135deg, var(--amma-yellow) 0%, #E5B600 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .step-illustration {
    height: 280px;
    min-height: 280px;
    width: 100% !important;
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }

  .step-illustration .illustration-main-icon {
    width: 100px;
    height: 100px;
  }

  .step-illustration .illustration-main-icon i {
    font-size: 40px;
  }

  .step-illustration .illustration-coin {
    width: 40px;
    height: 40px;
  }

  .step-illustration .illustration-coin i {
    font-size: 18px;
  }

  .step-illustration .illustration-text {
    font-size: 22px;
    padding: 8px 18px;
  }

  .step-illustration .illustration-text span {
    font-size: 14px;
  }
}

.step-illustration::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: illustrationPulse 4s ease-in-out infinite;
}

@keyframes illustrationPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.illustration-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.illustration-main-icon {
  width: 120px;
  height: 120px;
  background: #1A1A1A !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  animation: iconFloat 3s ease-in-out infinite;
}

.illustration-main-icon i {
  font-size: 48px;
  color: #F7C600 !important;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.illustration-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.illustration-coin {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.illustration-coin i {
  font-size: 22px;
  color: var(--amma-black);
}

.coin-1 {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  animation: coinBounce 2s ease-in-out infinite;
}

.coin-2 {
  bottom: 20px;
  left: -20px;
  animation: coinBounce 2s ease-in-out infinite 0.3s;
}

.coin-3 {
  bottom: 20px;
  right: -20px;
  animation: coinBounce 2s ease-in-out infinite 0.6s;
}

@keyframes coinBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

.illustration-hearts {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.illustration-hearts i {
  position: absolute;
  color: rgba(255,255,255,0.8);
  animation: heartFloat 3s ease-in-out infinite;
}

.heart-1 {
  top: -40px;
  right: 10px;
  font-size: 20px;
  animation-delay: 0s;
}

.heart-2 {
  top: 30px;
  left: -30px;
  font-size: 16px;
  animation-delay: 0.5s;
}

.heart-3 {
  bottom: -20px;
  right: -10px;
  font-size: 24px;
  animation-delay: 1s;
}

@keyframes heartFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  50% { transform: translateY(-15px) rotate(10deg); opacity: 1; }
}

.illustration-check-marks {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.illustration-check-marks i {
  position: absolute;
  color: rgba(255,255,255,0.9);
  animation: checkPop 2s ease-in-out infinite;
}

.check-1 {
  top: -35px;
  right: 20px;
  font-size: 24px;
  animation-delay: 0s;
}

.check-2 {
  top: 40px;
  left: -25px;
  font-size: 20px;
  animation-delay: 0.4s;
}

.check-3 {
  bottom: -15px;
  left: 20px;
  font-size: 22px;
  animation-delay: 0.8s;
}

@keyframes checkPop {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

.illustration-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--amma-black);
  background: rgba(255,255,255,0.95);
  padding: 10px 24px;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.illustration-text span {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.7;
}

.illustration-text i {
  margin-right: 8px;
  color: var(--amma-yellow);
}

/* Security illustration variant - same style as other */

/* === CHILDREN SELECTION CARDS === */
.child-card {
  cursor: pointer;
  display: block;
}

.child-card-inner {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
}

.child-card:hover .child-card-inner {
  transform: scale(1.03) rotate(2deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.child-card input:checked + .child-card-inner {
  border-color: var(--amma-black);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transform: scale(1.02);
}

.child-image-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--amma-light);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.child-card:hover .child-image-wrapper {
  border-color: var(--amma-yellow);
}

.child-card input:checked + .child-card-inner .child-image-wrapper {
  border-color: var(--amma-yellow);
}

.child-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.child-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--amma-black);
  margin-bottom: 4px;
  line-height: 1.3;
}

.child-workshop {
  font-size: 12px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === MISSION SECTION === */
.mission-layout {
  flex-wrap: wrap;
}

.mission-image-wrapper {
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-image {
  transition: box-shadow 0.4s ease;
}

.mission-image-wrapper:hover {
  transform: scale(1.03) rotate(2deg) !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2) !important;
}

/* === MISSION SECTION RESPONSIVE === */

@media (max-width: 900px) {
  .mission-layout {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .mission-layout > div {
    flex: 1 1 100% !important;
  }

  .mission-layout > div:last-child img {
    max-height: 350px !important;
  }
}

@media (max-width: 576px) {
  .value-box {
    flex-direction: column !important;
    text-align: center !important;
    padding: 16px !important;
  }

  .value-box > div:first-child {
    margin: 0 auto 8px !important;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
