/* Tiny Tots - Clean Custom Stylesheet */

/* ===== CSS Variables ===== */
:root {
  --color-primary: #6EC1E4;
  --color-secondary: #54595F;
  --color-text: #7A7A7A;
  --color-accent: #61CE70;
  --color-peach: #FFBC7D;
  --color-pink: #f748ac;
  --color-yellow: #FBFD42;
  --color-blue: #152BBD;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-light-bg: #f9f9f9;

  --font-primary: 'Roboto', sans-serif;
  --font-heading: 'RocknRoll One', cursive;
  --font-secondary: 'Roboto Slab', serif;

  --container-max: 1140px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;

  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-round: 50%;

  --shadow: 0 4px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);

  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: var(--spacing-sm);
}

/* ===== Container ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

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

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

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

.btn-secondary:hover {
  background-color: #5ab0d3;
}

/* ===== Header ===== */
.header {
  background-color: var(--color-yellow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--spacing-md);
  max-width: 1347px;
}

.logo img {
  max-height: 80px;
}

.nav-menu {
  display: flex;
  gap: 18px;
}

.nav-menu a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: var(--color-blue);
  font-weight: 700;
  font-family: var(--font-primary);
  padding: 15px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #598C3D;
}

.nav-menu .icon {
  font-size: 1.2rem;
}

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

.social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-round);
  color: var(--color-blue);
  background-color: transparent;
  font-size: 18px;
  transition: var(--transition);
}

.social-icons a:hover {
  transform: scale(1.1);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-secondary);
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 500px;
  background: var(--color-blue);
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero h1 {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
}

/* Wave Shape Divider */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.shape-divider .shape-fill {
  fill: var(--color-white);
}

.shape-divider-top {
  top: 0;
  bottom: auto;
  transform: rotate(180deg);
}

/* ===== Enrollment Banner ===== */
.enrollment-banner {
  width: 100%;
  background-color: var(--color-yellow);
  padding: 0;
}

.enrollment-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Section Styles ===== */
section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--color-blue);
}

/* ===== Why Choose Us ===== */
.why-choose {
  background-color: var(--color-yellow);
  padding: 50px 0 100px 0;
}

.why-choose .section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-blue);
}

/* ===== Google Reviews Section ===== */
.google-reviews-section {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.reviews-subheading {
  font-size: 1.2rem;
  color: var(--color-blue);
  font-weight: 600;
  margin-bottom: 20px;
}

.google-reviews-header {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  padding: 20px 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0px 4px 15px rgba(0,0,0,0.15);
  margin-bottom: 30px;
  transition: var(--transition);
}

.google-reviews-header:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 20px rgba(0,0,0,0.2);
}

.google-logo {
  height: 30px;
  width: auto;
}

.google-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.google-rating .stars {
  color: #FBBC04;
  font-size: 1.5rem;
}

.google-rating .stars i {
  margin: 0 2px;
}

.rating-text {
  font-weight: 700;
  color: var(--color-blue);
  font-size: 1.1rem;
}

/* Scrolling Reviews Carousel */
.reviews-carousel-wrapper {
  overflow: hidden;
  margin: 30px 0;
  padding: 10px 0;
}

.reviews-carousel {
  display: flex;
  gap: 20px;
  animation: scrollReviews 24s linear infinite;
  width: max-content;
}


@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  flex-shrink: 0;
  width: 300px;
  min-height: 180px;
  background: var(--color-white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.review-name {
  font-weight: 600;
  color: var(--color-secondary);
}

.review-stars {
  color: #FBBC04;
  margin-bottom: 10px;
}

.review-stars i {
  font-size: 0.9rem;
}

.review-card p {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

/* Modern Review Card Styles */
.review-card-modern {
  flex-shrink: 0;
  width: 340px;
  background: var(--color-white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card-modern:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.review-quote {
  margin-bottom: 15px;
}

.review-quote i {
  font-size: 1.8rem;
  color: var(--color-blue);
  opacity: 0.3;
}

.review-card-modern .review-stars {
  margin-bottom: 15px;
}

.review-card-modern .review-stars i {
  color: #FBBC04;
  font-size: 1rem;
  margin-right: 2px;
}

.review-text {
  color: var(--color-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 20px 0;
  flex-grow: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.review-author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue) 0%, #1a35d4 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.review-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Colorful avatar backgrounds (Google-style) */
.review-author-avatar.avatar-red { background: linear-gradient(135deg, #E53935 0%, #C62828 100%); }
.review-author-avatar.avatar-orange { background: linear-gradient(135deg, #FB8C00 0%, #EF6C00 100%); }
.review-author-avatar.avatar-teal { background: linear-gradient(135deg, #00897B 0%, #00695C 100%); }
.review-author-avatar.avatar-purple { background: linear-gradient(135deg, #8E24AA 0%, #6A1B9A 100%); }
.review-author-avatar.avatar-pink { background: linear-gradient(135deg, #D81B60 0%, #AD1457 100%); }
.review-author-avatar.avatar-deep-purple { background: linear-gradient(135deg, #5E35B1 0%, #4527A0 100%); }
.review-author-avatar.avatar-green { background: linear-gradient(135deg, #43A047 0%, #2E7D32 100%); }

.review-author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.review-author-name {
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 0.95rem;
  line-height: 1.3;
}

.review-author-role {
  color: var(--color-text);
  font-size: 0.85rem;
  line-height: 1.3;
}

.btn-google-reviews {
  background: var(--color-white);
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
  padding: 12px 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-google-reviews:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

.btn-google-reviews i {
  font-size: 1.2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: 50px;
}

.feature-card {
  background: var(--color-white);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  transition: var(--transition);
  margin: 25px;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card img {
  max-width: 60%;
  margin: 0 auto var(--spacing-md);
}

.feature-card h3 {
  color: #000000;
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  color: #000000;
}

/* ===== New Feature Cards (Reworked) ===== */
.features-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-blue);
  margin-top: 60px;
  margin-bottom: 10px;
}

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.feature-card-new {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0px 8px 30px rgba(0,0,0,0.15);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--color-blue);
}

.feature-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 40px rgba(0,0,0,0.2);
}

.feature-icon-circle {
  width: 70px;
  height: 70px;
  background: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon-circle i {
  font-size: 2rem;
  color: var(--color-yellow);
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1;
  margin-bottom: 5px;
}

.feature-label {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-secondary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-card-new p {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== Features Section (Bottom) ===== */
.features-section {
  background-color: var(--color-yellow);
  padding: 80px 0 100px 0;
  position: relative;
}

.features-section .section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 20px;
}

/* ===== Classes Section ===== */
.classes-section {
  position: relative;
  background-image: url('../images/backgrounds/pexels-magda-ehlers.jpg');
  background-position: top center;
  background-size: cover;
  color: var(--color-white);
  padding: 100px 0;
  min-height: 650px;
}

.classes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
}

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

.classes-section .shape-fill {
  fill: var(--color-yellow);
}

.classes-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.classes-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.classes-text h2 {
  color: var(--color-white);
}

.classes-text p {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

/* ===== Modern Classes Section ===== */
.classes-section-modern {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-light-bg);
}

.classes-section-modern .section-subtitle {
  text-align: center;
  color: var(--color-text);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

/* Hero Slideshow */
.classes-hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto var(--spacing-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.classes-hero-slideshow .slideshow-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.classes-hero-slideshow .slideshow-img.active {
  opacity: 1;
}

.slideshow-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slideshow-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slideshow-dots .dot.active {
  background: var(--color-yellow);
  transform: scale(1.2);
}

/* Classes Grid */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.class-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.class-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
  font-size: 1.8rem;
}

.class-content h3 {
  color: var(--color-blue);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.class-age {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.class-content p {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.classes-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 992px) {
  .classes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .classes-grid {
    grid-template-columns: 1fr;
  }

  .classes-hero-slideshow {
    aspect-ratio: 4 / 3;
  }
}

/* ===== Register Section (Old - kept for other pages) ===== */
.register-section {
  background-color: #FFFFFF;
  position: relative;
  padding: 50px 0 200px 0;
}

.register-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/backgrounds/memphis-pattern.png');
  background-repeat: repeat;
  background-size: 28% auto;
  opacity: 0.25;
}

.register-section .container {
  position: relative;
  z-index: 2;
}

.register-section .section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-blue);
}

.register-form {
  max-width: 500px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: 0px 0px 46px 8px rgba(0, 0, 0, 0.26);
}

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

.form-group label {
  display: block;
  margin-bottom: 11px;
  font-weight: 500;
  color: var(--color-text);
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background-color: #ffffff;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(110, 193, 228, 0.2);
}

.register-form .btn {
  width: 100%;
  background-color: var(--color-blue);
  color: #ffffff;
}

.register-form .btn:hover {
  background-color: #1a35d4;
}

/* ===== Register Section NEW (Homepage CTA) ===== */
.register-section-new {
  background: linear-gradient(135deg, var(--color-blue) 0%, #1a35d4 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.register-section-new::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: var(--color-yellow);
  border-radius: 50%;
  opacity: 0.1;
}

.register-section-new::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--color-yellow);
  border-radius: 50%;
  opacity: 0.1;
}

.register-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.register-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-yellow);
  margin-bottom: 20px;
  line-height: 1.2;
}

.register-text p {
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 30px;
  opacity: 0.9;
}

.register-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-whatsapp-large {
  background: #25D366;
  color: var(--color-white);
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.btn-whatsapp-large:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-large i {
  font-size: 1.4rem;
}

.btn-contact-large {
  background: var(--color-yellow);
  color: var(--color-blue);
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(251, 253, 66, 0.4);
  transition: var(--transition);
}

.btn-contact-large:hover {
  background: #e9eb3d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(251, 253, 66, 0.5);
}

.btn-contact-large i {
  font-size: 1.2rem;
}

.register-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-size: 1.1rem;
}

.register-phone i {
  color: var(--color-yellow);
  font-size: 1.3rem;
}

.register-phone a {
  color: var(--color-yellow);
  font-weight: 600;
}

.register-phone a:hover {
  text-decoration: underline;
}

.register-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.register-image img {
  max-width: 280px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

@media (max-width: 768px) {
  .register-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .register-text h2 {
    font-size: 2rem;
  }

  .register-buttons {
    justify-content: center;
  }

  .register-phone {
    justify-content: center;
  }

  .register-image {
    order: -1;
  }

  .register-image img {
    max-width: 180px;
  }
}

/* ===== Notice Board ===== */
.notice-board {
  position: relative;
  background-color: var(--color-light-bg);
  padding: 80px 80px 180px 80px;
}

.notice-board::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/classes/PSX_20230916_130220.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
}

.notice-board .container {
  position: relative;
  z-index: 1;
}

.notice-board .section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-blue);
}

.notice-board .shape-fill {
  fill: #FFFFFF;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.post-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.post-card-content {
  padding: var(--spacing-md);
}

.post-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.post-card p {
  font-size: 0.9rem;
  color: var(--color-text);
}

.post-meta {
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--color-light-bg);
  font-size: 0.85rem;
  color: var(--color-text);
}

/* ===== Testimonials ===== */
.testimonials {
  background-color: var(--color-white);
  position: relative;
  padding: 100px 0 200px 0;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/backgrounds/memphis-pattern.png');
  background-repeat: repeat;
  background-size: contain;
  opacity: 0.28;
}

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

.testimonials .section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-blue);
  padding: 20px 0;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.testimonial-card {
  background: var(--color-light-bg);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

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

.testimonial-name {
  font-weight: 600;
  color: var(--color-secondary);
}

.stars {
  color: #ffc107;
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  font-style: italic;
  line-height: 1.8;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--color-blue);
  color: var(--color-secondary);
  padding: 20px 0 var(--spacing-md);
  position: relative;
}

.footer .shape-divider-top {
  display: none;
}

.footer-panel {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-lg);
}

.footer .container {
  max-width: calc(100% - 20px);
  margin: 0 20px;
  padding: 0;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: var(--spacing-xs);
}

.footer h4 {
  color: var(--color-blue);
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-xs) var(--spacing-md);
}

.footer-links a {
  color: var(--color-black);
  padding: var(--spacing-xs) 0;
  font-size: 1.1rem;
  transition: var(--transition);
  font-weight: 600;
}

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

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.9);
  margin: 0;
}

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

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

/* ===== Gallery Page ===== */
.gallery-section {
  padding: var(--spacing-xl) 0;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.filter-btn {
  padding: 10px 25px;
  background: var(--color-white);
  border: 2px solid var(--color-blue);
  border-radius: var(--radius-lg);
  color: var(--color-blue);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-blue);
  color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-sm);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition);
  cursor: pointer;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: var(--color-white);
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: 0.9rem;
  text-align: center;
  opacity: 0;
  transition: var(--transition);
}

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

/* Gallery Empty Message */
.gallery-empty-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.gallery-empty-message i {
  font-size: 4rem;
  color: var(--color-blue);
  margin-bottom: var(--spacing-md);
}

.gallery-empty-message h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-blue);
}

.gallery-empty-message p {
  font-size: 1.1rem;
  color: var(--color-blue);
}

/* Gallery Subtitle */
.gallery-subtitle {
  color: var(--color-blue);
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.lightbox-close:hover {
  color: var(--color-yellow);
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

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

.lightbox-nav:hover {
  color: var(--color-yellow);
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    font-size: 2rem;
    width: 45px;
    height: 45px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    position: fixed;
  }
}

/* ===== About Page ===== */
.about-hero {
  background: var(--color-yellow);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.about-hero h1 {
  color: var(--color-blue);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

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

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-round);
  object-fit: cover;
  margin: 0 auto var(--spacing-sm);
  border: 4px solid var(--color-primary);
}

.team-member h4 {
  margin-bottom: 0;
  color: var(--color-blue);
}

/* ===== Contact Page ===== */
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

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

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid,
  .features-grid-new,
  .posts-grid,
  .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .classes-content {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .header .container {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: var(--spacing-md) 0;
  }

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

  .menu-toggle {
    display: flex;
  }

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

  .features-grid,
  .features-grid-new,
  .posts-grid,
  .testimonials-slider,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .feature-number {
    font-size: 3rem;
  }

  .feature-label {
    font-size: 1.1rem;
  }

  .about-content,
  .contact-info {
    grid-template-columns: 1fr;
  }

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

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

  /* Google Reviews Mobile */
  .google-reviews-header {
    padding: 15px 25px;
  }

  .google-rating .stars {
    font-size: 1.2rem;
  }

  .rating-text {
    font-size: 1rem;
  }

  .review-card {
    width: 260px;
  }

  .review-card-modern {
    width: 280px;
    padding: 20px;
  }

  .review-quote i {
    font-size: 1.5rem;
  }

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

  .review-author-avatar {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .reviews-carousel {
    animation-duration: 30s;
  }

  .btn-google-reviews {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .social-icons {
    display: none;
  }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInDown {
  animation: fadeInDown 0.6s ease forwards;
}

/* ===== Footer Subscribe Form ===== */
.subscribe-form {
  display: flex;
  gap: 0;
}

.subscribe-form input {
  flex: 1;
  padding: 13px 20px;
  border: 1px solid #273171;
  border-radius: 25px 0 0 25px;
  font-size: 0.9rem;
}

.subscribe-form button {
  background: #273171;
  color: var(--color-white);
  border: none;
  padding: 13px 15px;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  transition: var(--transition);
}

.subscribe-form button:hover {
  background: var(--color-blue);
}

/* ===== Testimonial Avatar Placeholder ===== */
.testimonial-avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Page Headers ===== */
.page-header {
  background: var(--color-yellow);
  padding: var(--spacing-xl) 0;
  text-align: center;
  position: relative;
}

.page-header h1 {
  color: var(--color-blue);
  margin-bottom: 0;
  font-family: var(--font-heading);
}

.page-header .shape-divider .shape-fill {
  fill: var(--color-white);
}

/* ===== About Page Specific ===== */
.about-section {
  padding: var(--spacing-xl) 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.about-intro img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== Activities List ===== */
.activities-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.activity-card {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

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

.activity-card i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

/* ===== Activities Table ===== */
.activities-table-wrapper {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
}

.activities-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.activities-table thead {
  background: var(--color-blue);
  color: var(--color-white);
}

.activities-table th {
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.activities-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #e9ecef;
  color: var(--color-secondary);
}

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

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

.activities-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.activities-table tbody tr:nth-child(even):hover {
  background: var(--color-light-bg);
}

.activities-table th i {
  margin-right: 8px;
  opacity: 0.8;
}

.day-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-white);
}

.day-mon { background: #4CAF50; }
.day-tue { background: #2196F3; }
.day-wed { background: #9C27B0; }
.day-thu { background: #FF9800; }
.day-fri { background: #E91E63; }

.time-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--color-light-bg);
  border-radius: 8px;
  font-weight: 600;
  color: var(--color-blue);
  font-size: 0.9rem;
}

.activity-icon {
  color: var(--color-blue);
  margin-right: 10px;
  font-size: 1.1rem;
}

.activities-note {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 600px;
  margin: 40px auto 0;
  padding: 20px 25px;
  background: var(--color-light-bg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-blue);
}

.activities-note i {
  font-size: 1.5rem;
  color: var(--color-blue);
  flex-shrink: 0;
}

.activities-note p {
  margin: 0;
  color: var(--color-secondary);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .activities-table th,
  .activities-table td {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .day-badge {
    padding: 4px 10px;
    font-size: 0.75rem;
  }

  .time-badge {
    padding: 4px 8px;
    font-size: 0.8rem;
  }

  .activity-icon {
    display: none;
  }

  .activities-note {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ===== Activities CTA Section ===== */
.activities-cta {
  background: linear-gradient(135deg, var(--color-blue) 0%, #1a35d4 100%);
  padding: 80px 0;
}

.activities-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.activities-cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.activities-cta-icon i {
  font-size: 2.5rem;
  color: var(--color-yellow);
}

.activities-cta h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-yellow);
  margin-bottom: 15px;
}

.activities-cta p {
  font-size: 1.1rem;
  color: var(--color-white);
  opacity: 0.9;
  margin-bottom: 30px;
}

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

@media (max-width: 480px) {
  .activities-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .activities-cta h2 {
    font-size: 1.6rem;
  }
}

/* ===== Planner Section ===== */
.planner-section {
  text-align: center;
}

.planner-embed {
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.planner-embed iframe {
  width: 100%;
  height: 600px;
  border: none;
}

/* ===== Contact Form Full ===== */
.contact-form {
  max-width: 600px;
}

.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  min-height: 150px;
  transition: var(--transition);
}

.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(110, 193, 228, 0.2);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-blue);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h2,
.contact-details h3 {
  color: var(--color-secondary);
  font-size: 2rem;
}

/* ===== Contact WhatsApp Section ===== */
.contact-whatsapp-section {
  background: var(--color-light-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-whatsapp-section h2 {
  color: var(--color-secondary);
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-whatsapp-section .btn-whatsapp-large {
  margin: 30px 0;
}

.whatsapp-info {
  text-align: left;
  max-width: 250px;
  margin: 0 auto;
}

.whatsapp-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--color-secondary);
}

.whatsapp-info i {
  color: #25D366;
}

/* ===== About Page - Beliefs Section ===== */
.beliefs-section {
  background: var(--color-white);
}

.beliefs-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.beliefs-image img {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.beliefs-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-blue);
  margin-bottom: 15px;
}

.beliefs-lead {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 25px;
}

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

.belief-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: #e9ecef;
  border-radius: 10px;
  transition: var(--transition);
}

.belief-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.belief-item i {
  font-size: 1.2rem;
  color: var(--color-blue);
  width: 30px;
  flex-shrink: 0;
}

.belief-item span {
  font-size: 0.9rem;
  color: var(--color-blue);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .beliefs-intro {
    grid-template-columns: 1fr;
  }

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

/* ===== About Page - Education Section ===== */
.education-section {
  background: var(--color-white);
}

.education-section.education-grey {
  background: #e9ecef;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.education-card {
  background: var(--color-light-bg);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.education-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.education-card.highlight-card {
  background: linear-gradient(135deg, var(--color-yellow) 0%, #e9eb3d 100%);
}

.education-icon {
  width: 60px;
  height: 60px;
  background: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.education-icon i {
  font-size: 1.5rem;
  color: var(--color-yellow);
}

.highlight-card .education-icon {
  background: var(--color-white);
}

.highlight-card .education-icon i {
  color: var(--color-blue);
}

.education-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.education-card p {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}

.education-card a {
  color: var(--color-blue);
  font-weight: 600;
}

.special-events {
  background: linear-gradient(135deg, var(--color-blue) 0%, #1a35d4 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.special-events h3 {
  font-family: var(--font-heading);
  color: var(--color-yellow);
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.special-events h3 i {
  margin-right: 10px;
}

.events-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.event-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.event-tag:hover {
  background: var(--color-yellow);
  color: var(--color-blue);
}

.event-tag i {
  font-size: 1rem;
}

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

@media (max-width: 768px) {
  .education-grid {
    grid-template-columns: 1fr;
  }

  .special-events {
    padding: 30px 20px;
  }

  .events-tags {
    gap: 10px;
  }

  .event-tag {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
}

/* ===== Leadership Section ===== */
.leadership-section {
  background: linear-gradient(135deg, var(--color-light-bg) 0%, #e8f4f8 100%);
}

.section-subtitle {
  text-align: center;
  color: var(--color-blue);
  font-size: 1.1rem;
  margin-top: -20px;
  margin-bottom: 40px;
}

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

.leadership-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.leadership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.leadership-image-wrapper {
  position: relative;
  padding: 30px 30px 0;
  display: flex;
  justify-content: center;
}

.leadership-image-wrapper img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--color-yellow);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.years-badge {
  position: absolute;
  bottom: 10px;
  right: 7%;
  background: linear-gradient(135deg, var(--color-blue) 0%, #1a35d4 100%);
  color: var(--color-white);
  padding: 10px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(21, 43, 189, 0.4);
}

.years-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.years-text {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leadership-content {
  padding: 25px 30px 30px;
  text-align: center;
}

.leadership-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.leadership-role {
  color: var(--color-blue);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
}

.leadership-role i {
  margin-right: 6px;
  color: var(--color-blue);
}

.leadership-years-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-blue) 0%, #1a35d4 100%);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(21, 43, 189, 0.4);
  margin-bottom: 15px;
}

.leadership-quals {
  color: var(--color-text);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.leadership-bio {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

  .leadership-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .years-badge {
    position: static;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr;
  }

  .activities-list {
    grid-template-columns: 1fr;
  }
}

/* ===== Yearly Calendar ===== */
.yearly-calendar {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 50%, #f5fff8 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
}

.yearly-calendar h3 {
  text-align: center;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.yearly-calendar .calendar-subtitle {
  text-align: center;
  color: var(--color-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-md);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-secondary);
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.legend-dot.holiday { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%); }
.legend-dot.school-break { background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%); }
.legend-dot.special-event { background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%); border: 1px solid #f0c040; }
.legend-dot.parents { background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%); }
.legend-dot.theme { background: linear-gradient(135deg, #55efc4 0%, #00b894 100%); }

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

.calendar-month {
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.calendar-month h4 {
  text-align: center;
  color: var(--color-blue);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
}

.month-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  font-size: 0.7rem;
  margin-bottom: 0.75rem;
}

.day-header {
  text-align: center;
  font-weight: 700;
  color: var(--color-secondary);
  padding: 2px 0;
  font-size: 0.65rem;
}

.day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.7rem;
  color: var(--color-text);
  position: relative;
}

.day-cell.empty {
  background: transparent;
}

.day-cell.holiday {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  color: white;
  font-weight: 700;
}

.day-cell.school-break {
  background: linear-gradient(135deg, #74b9ff 0%, #a4d4ff 100%);
  color: #0056b3;
  font-weight: 600;
}

.day-cell.special-event {
  background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
  color: #856404;
  font-weight: 700;
}

.day-cell.parents {
  background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
  color: white;
  font-weight: 700;
}

.day-cell.theme {
  background: linear-gradient(135deg, #55efc4 0%, #00b894 100%);
  color: #006400;
  font-weight: 600;
}

.month-events {
  font-size: 0.7rem;
  border-top: 1px solid #eee;
  padding-top: 0.5rem;
}

.month-event {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
  line-height: 1.3;
}

.month-event .event-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.month-event .event-dot.holiday { background: #ee5a5a; }
.month-event .event-dot.school-break { background: #0984e3; }
.month-event .event-dot.special-event { background: #f0c040; }
.month-event .event-dot.parents { background: #6c5ce7; }
.month-event .event-dot.theme { background: #00b894; }

.month-event span {
  color: var(--color-secondary);
}

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

@media (max-width: 768px) {
  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .yearly-calendar {
    padding: 1rem;
  }

  .calendar-legend {
    gap: 0.5rem;
  }

  .legend-item {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .calendar-grid {
    grid-template-columns: 1fr;
  }
}
