/* =============================================
   MORNING ROSE DAYCARE - MAIN STYLESHEET
   Theme: White & Orange (rgb(254,93,55))
   Footer BG: rgb(16,55,65)
   ============================================= */

:root {
  --orange: rgb(254, 93, 55);
  --orange-light: rgba(254, 93, 55, 0.12);
  --orange-dark: rgb(220, 70, 35);
  --teal: rgb(16, 55, 65);
  --white: #ffffff;
  --off-white: #fff9f7;
  --gray-100: #f8f8f8;
  --gray-200: #efefef;
  --gray-400: #aaa;
  --gray-600: #666;
  --gray-800: #333;
  --text: rgb(16, 55, 65);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
}
.section-header .tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254,93,55,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); }
.logo-sub { font-size: 0.7rem; color: var(--orange); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.88rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--gray-200);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.mobile-menu.open { max-height: 500px; padding: 16px 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; padding: 0 24px; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--orange); background: var(--orange-light); }
.mobile-menu .btn { margin-top: 8px; width: 100%; text-align: center; }

/* ---- HERO / BANNER ---- */
.hero {
  margin-top: 72px;
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--teal);
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,55,65,0.85) 0%, rgba(16,55,65,0.5) 60%, rgba(254,93,55,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 680px;
  padding: 48px 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,93,55,0.2);
  border: 1px solid rgba(254,93,55,0.4);
  color: rgb(255,160,130);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: white;
}
.hero-title span { color: var(--orange); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}
.hero-arrows {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }

/* ---- FACILITIES ---- */
.facilities { background: var(--off-white); }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.facility-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.facility-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}
.facility-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--orange-light); }
.facility-card:hover::before { transform: scaleX(1); }
.facility-icon {
  width: 72px; height: 72px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: var(--orange);
  transition: var(--transition);
}
.facility-card:hover .facility-icon { background: var(--orange); color: white; }
.facility-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 12px; }
.facility-card p { color: var(--gray-600); font-size: 0.95rem; }

/* ---- ABOUT PREVIEW ---- */
.about-preview { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  border-radius: var(--radius);
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-size: 2rem; font-family: var(--font-display); }
.about-badge span { font-size: 0.8rem; font-weight: 600; }
.about-text .tag { display: inline-block; background: var(--orange-light); color: var(--orange); font-weight: 700; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; line-height: 1.25; }
.about-text p { color: var(--gray-600); margin-bottom: 18px; line-height: 1.8; }
.about-checklist { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-checklist li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.about-checklist i { color: var(--orange); background: var(--orange-light); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }

/* ---- JOIN US SECTION ---- */
.join-us {
  background: linear-gradient(135deg, var(--teal) 0%, rgb(25,85,100) 100%);
  position: relative;
  overflow: hidden;
}
.join-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(254,93,55,0.15) 0%, transparent 70%);
}
.join-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.join-us h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); color: white; margin-bottom: 20px; }
.join-us p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 32px; }
.join-benefits { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.join-benefit { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.9); font-weight: 600; }
.join-benefit-icon { width: 36px; height: 36px; background: rgba(254,93,55,0.2); border: 1px solid rgba(254,93,55,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 0.85rem; flex-shrink: 0; }
.join-image img { border-radius: var(--radius); width: 100%; height: 420px; object-fit: cover; box-shadow: var(--shadow-lg); }

/* ---- ACTIVITIES ---- */
.activities { background: var(--off-white); }
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.activity-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.activity-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.activity-icon { width: 52px; height: 52px; background: var(--orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.4rem; flex-shrink: 0; transition: var(--transition); }
.activity-card:hover .activity-icon { background: var(--orange); color: white; }
.activity-card h4 { font-weight: 800; margin-bottom: 4px; font-size: 1rem; }
.activity-card p { color: var(--gray-600); font-size: 0.85rem; }
.activity-arrow { margin-left: auto; color: var(--gray-400); transition: var(--transition); }
.activity-card:hover .activity-arrow { color: var(--orange); transform: translateX(4px); }

/* ---- TESTIMONIALS ---- */
.testimonials { background: white; }
.testimonials-scroll-wrapper { overflow-x: auto; padding-bottom: 16px; scrollbar-width: thin; scrollbar-color: var(--orange-light) transparent; }
.testimonials-scroll-wrapper::-webkit-scrollbar { height: 4px; }
.testimonials-scroll-wrapper::-webkit-scrollbar-thumb { background: var(--orange-light); border-radius: 4px; }
.testimonials-track { display: flex; gap: 24px; width: max-content; padding: 8px 4px; }
.testimonial-card {
  width: 340px;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  flex-shrink: 0;
}
.testimonial-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.testimonial-stars { color: #f59e0b; margin-bottom: 14px; font-size: 0.9rem; }
.testimonial-text { font-size: 0.95rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { color: var(--gray-400); font-size: 0.8rem; }

/* Testimonial Form */
.testimonial-form-section { background: var(--off-white); }
.testimonial-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.testimonial-form-wrap h3 { font-family: var(--font-display); font-size: 1.8rem; text-align: center; margin-bottom: 8px; }
.testimonial-form-wrap .sub { text-align: center; color: var(--gray-600); margin-bottom: 32px; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  background: white;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(254,93,55,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.star-rating { display: flex; gap: 8px; flex-direction: row-reverse; justify-content: flex-end; }
.star-rating input { display: none; }
.star-rating label { font-size: 1.5rem; color: var(--gray-200); cursor: pointer; transition: var(--transition); }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: #f59e0b; }

/* ---- GALLERY GRID ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: white;
  cursor: pointer;
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gallery-card-img { position: relative; height: 220px; overflow: hidden; }
.gallery-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-card:hover .gallery-card-img img { transform: scale(1.08); }
.gallery-card-img .overlay {
  position: absolute;
  inset: 0;
  background: rgba(16,55,65,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-card:hover .overlay { opacity: 1; }
.overlay-icon { color: white; font-size: 2rem; }
.gallery-card-body { padding: 20px; }
.gallery-card-body h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; }
.gallery-card-body p { color: var(--gray-600); font-size: 0.88rem; }
.gallery-card-date { font-size: 0.78rem; color: var(--orange); font-weight: 700; margin-bottom: 8px; }

/* ---- EVENT DETAIL ---- */
.event-hero { background: var(--teal); padding: 120px 0 64px; }
.event-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 12px; }
.event-hero p { color: rgba(255,255,255,0.75); }
.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.event-gallery-grid img { border-radius: var(--radius-sm); width: 100%; height: 220px; object-fit: cover; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--teal) 0%, rgb(25,85,100) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(254,93,55,0.2) 0%, transparent 70%);
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: white; margin-bottom: 12px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; position: relative; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 16px; position: relative; }
.breadcrumb a { color: var(--orange); font-weight: 600; }
.breadcrumb i { font-size: 0.6rem; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 16px; }
.contact-info > p { color: var(--gray-600); margin-bottom: 36px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon { width: 48px; height: 48px; background: var(--orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }
.contact-detail h4 { font-weight: 800; margin-bottom: 2px; }
.contact-detail p, .contact-detail a { color: var(--gray-600); font-size: 0.95rem; }
.contact-form-card { background: white; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 8px; }
.contact-form-card .sub { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 28px; }
.map-section { margin-top: 64px; }
.map-section h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 24px; text-align: center; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ---- ABOUT PAGE ---- */
.about-story { background: white; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-values { background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card { background: white; border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.value-icon { width: 60px; height: 60px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--orange); font-size: 1.5rem; }
.value-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { color: var(--gray-600); font-size: 0.9rem; }
.staff-join { background: linear-gradient(135deg, var(--teal), rgb(25,85,100)); }
.staff-join-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.staff-join h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); color: white; margin-bottom: 16px; }
.staff-join p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 24px; }
.staff-form-card { background: white; border-radius: var(--radius); padding: 40px; }
.staff-form-card h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 8px; }
.staff-form-card .sub { color: var(--gray-600); margin-bottom: 28px; font-size: 0.9rem; }

/* ---- TESTIMONIALS PAGE ---- */
.testimonials-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.testimonials-hero-text h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 16px; }
.testimonials-hero-text p { color: rgba(255,255,255,0.75); line-height: 1.8; font-size: 1.05rem; }
.testimonials-hero-stats { display: flex; gap: 32px; margin-top: 36px; }
.hero-stat strong { display: block; font-size: 2.2rem; font-family: var(--font-display); color: var(--orange); }
.hero-stat span { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.testimonials-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

/* ---- ADMIN LAYOUT ---- */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--teal);
  color: white;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow-y: auto;
}
.admin-sidebar-header { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-sidebar-header .logo-main { color: white; }
.admin-sidebar-header .logo-sub { color: var(--orange); }
.admin-nav { padding: 16px 12px; flex: 1; }
.admin-nav-group { margin-bottom: 24px; }
.admin-nav-group-label { font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); padding: 0 12px; margin-bottom: 8px; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-bottom: 2px;
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.12); color: white; }
.admin-nav a.active { background: rgba(254,93,55,0.25); color: var(--orange); }
.admin-nav a i { width: 18px; text-align: center; }
.admin-main { margin-left: 260px; flex: 1; background: var(--gray-100); min-height: 100vh; }
.admin-topbar {
  background: white;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-topbar h1 { font-family: var(--font-display); font-size: 1.4rem; }
.admin-topbar-actions { display: flex; align-items: center; gap: 16px; }
.admin-content { padding: 32px; }
.admin-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.admin-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.admin-card-header h2 { font-family: var(--font-display); font-size: 1.25rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-400); padding: 0 16px 12px; border-bottom: 1px solid var(--gray-200); }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); font-size: 0.92rem; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-100); }
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.badge-success { background: rgba(16,185,129,0.12); color: rgb(5,150,105); }
.badge-warning { background: rgba(245,158,11,0.12); color: rgb(180,110,0); }
.badge-danger { background: rgba(239,68,68,0.12); color: rgb(185,28,28); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 16px; }
.stat-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.stat-icon.orange { background: var(--orange-light); color: var(--orange); }
.stat-icon.teal { background: rgba(16,55,65,0.1); color: var(--teal); }
.stat-icon.green { background: rgba(16,185,129,0.12); color: rgb(5,150,105); }
.stat-icon.yellow { background: rgba(245,158,11,0.12); color: rgb(180,110,0); }
.stat-label { font-size: 0.8rem; color: var(--gray-400); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.stat-value { font-size: 1.8rem; font-family: var(--font-display); font-weight: 700; }

/* ---- ALERTS ---- */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 600; font-size: 0.92rem; }
.alert-success { background: rgba(16,185,129,0.1); color: rgb(5,150,105); border: 1px solid rgba(16,185,129,0.2); }
.alert-error { background: rgba(239,68,68,0.1); color: rgb(185,28,28); border: 1px solid rgba(239,68,68,0.2); }

/* ---- FOOTER ---- */
.footer { position: relative; background: white; }
.footer-wave { display: block; line-height: 0; }
.footer-wave svg { display: block; width: 100%; }
.footer-body { background: var(--teal); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--orange); }
.footer-brand .logo-main { color: white; }
.footer-brand .logo-sub { color: rgba(254,93,55,0.8); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.85rem; transition: var(--transition); }
.social-links a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-col h4 { color: white; font-weight: 800; margin-bottom: 20px; font-size: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul a:hover { color: var(--orange); }
.footer-col ul a i { font-size: 0.6rem; }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.contact-list i { color: var(--orange); margin-top: 4px; flex-shrink: 0; }
.contact-list span, .contact-list a { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }
.footer-col > p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 16px; }
.newsletter-input { display: flex; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.newsletter-input input { flex: 1; background: rgba(255,255,255,0.1); border: none; padding: 12px 14px; color: white; font-family: var(--font-body); font-size: 0.88rem; }
.newsletter-input input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input input:focus { outline: none; }
.newsletter-input button { background: var(--orange); color: white; border: none; padding: 12px 16px; cursor: pointer; transition: var(--transition); }
.newsletter-input button:hover { background: var(--orange-dark); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.85rem; }

/* ---- CLOUDINARY UPLOAD AREA ---- */
.upload-area {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gray-100);
}
.upload-area:hover { border-color: var(--orange); background: var(--orange-light); }
.upload-area i { font-size: 2.5rem; color: var(--orange); margin-bottom: 12px; }
.upload-area p { color: var(--gray-600); font-size: 0.9rem; }
.uploaded-images { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.uploaded-thumb { position: relative; width: 100px; height: 100px; border-radius: 8px; overflow: hidden; }
.uploaded-thumb img { width: 100%; height: 100%; object-fit: cover; }
.remove-img { position: absolute; top: 4px; right: 4px; background: rgba(0,0,0,0.6); color: white; border: none; border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.75rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid, .about-story-grid, .join-us-inner, .contact-grid, .testimonials-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 0; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-join-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .activities-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .admin-sidebar { width: 100%; position: relative; flex-direction: row; }
  .admin-main { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-content { padding: 32px 0; }
  .testimonials-hero-stats { flex-wrap: wrap; gap: 20px; }
  .join-image { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .admin-content { padding: 20px; }
}
