/* Hillside Preschool - Master Stylesheet with Enlarged High-Clarity Logo */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #2563EB;          /* Royal Indigo / Electric Blue */
  --primary-hover: #1D4ED8;
  --accent-red: #D90429;       /* Bright Red */
  --accent-red-hover: #EF233C;
  --accent-amber: #F59E0B;     /* Warm Amber Gold */
  --accent-emerald: #10B981;   /* Fresh Emerald Green */
  --accent-rose: #F43F5E;      /* Rose Coral */
  --bg-page: #FFFFFF;
  --bg-muted: #F8FAFC;        /* Architectural Soft Slate */
  --card-bg: #FFFFFF;
  --text-main: #0F172A;       /* High Contrast Slate Dark */
  --text-body: #1E293B;       /* Deep Slate Body Text */
  --text-muted: #334155;     /* Slate Muted - High Legibility */
  --border-light: #E2E8F0;
  --border-primary: #BFDBFE;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-page);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

em {
  font-style: normal;
  font-weight: 700;
  color: var(--primary);
}

strong {
  font-weight: 700;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Modern Clean Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  min-height: 48px;
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
}

/* COMPACT NAV ADMISSION BUTTON */
.btn-sm-nav {
  padding: 8px 16px !important;
  font-size: 0.82rem !important;
  border-radius: 8px !important;
  min-height: 38px !important;
  gap: 6px !important;
}

.btn-red {
  background-color: var(--accent-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 36px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(217, 4, 41, 0.45);
}

.btn-red:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(217, 4, 41, 0.55);
}

.btn-amber {
  background-color: var(--accent-amber);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-amber:hover {
  background-color: #D97706;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--border-light);
  color: var(--text-main);
  font-weight: 700;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: #EFF6FF;
}

/* Top Notification Strip */
.top-bar {
  background-color: #0F172A;
  color: #FFFFFF;
  padding: 10px 0;
  font-size: 0.88rem;
  font-weight: 600;
  border-bottom: 1px solid #1E293B;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-info-item i {
  color: var(--accent-amber);
}

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

.top-bar-social a {
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.top-bar-social a:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}

/* Navbar */
.navbar {
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

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

/* ENLARGED HIGH-CLARITY LOGO */
.logo-brand img {
  height: 72px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  transition: transform 0.2s ease;
}

.logo-brand:hover img {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.96rem;
  color: #334155;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
  background-color: #EFF6FF;
}

.nav-link.active {
  color: var(--primary);
  background-color: #EFF6FF;
  font-weight: 800;
}

.mobile-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 6px;
}

/* Mobile Drawer Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  z-index: 1001;
  backdrop-filter: blur(4px);
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 290px;
  height: 100%;
  background: #FFFFFF;
  z-index: 1002;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.mobile-menu-drawer.open { right: 0; }
.mobile-menu-overlay.open { display: block; }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 14px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-links .nav-link {
  font-size: 1.05rem;
  padding: 12px 16px;
}

/* FULL-SCREEN EDGE-TO-EDGE HERO BANNER */
.full-hero-banner {
  position: relative;
  width: 100%;
  min-height: 560px;
  height: 70vh;
  background-image: url('../assets/hero_banner.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 120px rgba(0,0,0,0.5);
}

.full-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 60%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.full-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 0;
}

.hero-left-text {
  max-width: 640px;
  padding-left: 40px;
}

.hero-left-text h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.9);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

/* 360 Degree Learning Logo Badge */
.badge-360-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.badge-360-circle {
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-shadow: 0 3px 10px rgba(0,0,0,0.9);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  position: relative;
}

.badge-360-circle .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-360-circle .text-sub {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Center Bottom Red Apply Button */
.hero-bottom-center {
  text-align: center;
  margin-top: 40px;
}

/* Bottom Right Floating Chat Button */
.lets-chat-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #D90429;
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(217, 4, 41, 0.5);
  z-index: 999;
  transition: all 0.3s ease;
}

.lets-chat-float:hover {
  background-color: #EF233C;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(217, 4, 41, 0.65);
  color: #FFFFFF;
}

/* Page Header */
.page-hero {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  padding: 65px 0;
  text-align: center;
  border-bottom: 4px solid var(--primary);
  box-shadow: inset 0 -10px 30px rgba(0,0,0,0.3);
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

.page-hero p {
  color: #F8FAFC;
  font-size: 1.15rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  margin-top: 14px;
}

.breadcrumb a {
  color: #FBBF24;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.breadcrumb span {
  color: #FFFFFF;
  font-weight: 600;
}

/* Section Layouts */
.section {
  padding: 80px 0;
}

.section-muted {
  background-color: var(--bg-muted);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px auto;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #EFF6FF;
  color: var(--primary);
  border: 1px solid var(--border-primary);
  padding: 6px 18px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #0F172A;
}

.section-subtitle {
  color: #334155;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.7;
}

/* STORY GRID */
.hero-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

/* Modern Graphic Cards */
.modern-graphic-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.modern-graphic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* 5-CARD SINGLE ROW PROGRAMS GRID */
.programs-5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.values-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.modern-value-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.modern-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.modern-value-card p {
  color: #334155;
  font-weight: 500;
}

.icon-square {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: #EFF6FF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

/* 4 STEPS LEARNING PATHWAY GRID */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pathway-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pathway-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.pathway-step-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #CBD5E1;
  position: absolute;
  top: 20px;
  right: 24px;
  transition: color 0.3s ease;
}

.pathway-card:hover .pathway-step-num {
  color: var(--primary);
}

.pathway-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: #FEF3C7;
  color: #D97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pathway-card p {
  color: #334155;
  font-weight: 500;
}

/* OUR BEST ACTIVITIES 2x2 MINI CARDS GRID */
.activities-2x2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.activity-mini-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: start;
  gap: 16px;
  transition: all 0.3s ease;
}

.activity-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.activity-mini-card p {
  color: #334155;
  font-weight: 500;
}

.activity-icon-box {
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* INTERACTIVE FAQ ACCORDION DROPDOWN STYLES */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: #0F172A;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
  min-width: 24px;
  text-align: center;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 28px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, padding 0.35s ease;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 28px 24px 28px;
  border-top-color: var(--border-light);
}

.faq-answer p {
  font-size: 1.02rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 12px;
}

/* CTA CARD BOX */
.cta-card-box {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 60px 30px;
  text-align: center;
  border-bottom: 5px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.cta-card-box h2 {
  color: #FFFFFF;
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

.cta-card-box p {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* FOOTER */
footer {
  background-color: #0F172A;
  color: #FFFFFF;
  padding-top: 70px;
  border-top: 1px solid #1E293B;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #1E293B;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-col p {
  color: #F8FAFC;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 14px;
}

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

.footer-links a {
  color: #F8FAFC;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #FBBF24;
  padding-left: 6px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.95rem;
  color: #E2E8F0;
  font-weight: 600;
}

/* ADMISSIONS INQUIRY MODAL OVERLAY & POPUP CARD */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  z-index: 2000;
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-light);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: #F1F5F9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: var(--accent-red);
}

.modal-card label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  margin-bottom: 4px;
}

.modal-card input[type="text"],
.modal-card input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  font-size: 16px;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}

.modal-card input[type="text"]:focus,
.modal-card input[type="tel"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ==========================================
   STRICT MOBILE RESPONSIVE MEDIA QUERIES
   ========================================== */

@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .programs-5-grid { grid-template-columns: repeat(3, 1fr); }
  .pathway-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-left-text h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }

  /* Enlarged Mobile Logo */
  .logo-brand img { height: 54px; }

  .btn-sm-nav {
    padding: 6px 12px !important;
    font-size: 0.76rem !important;
    min-height: 32px !important;
  }
  
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 30px; }
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 0.95rem; }
  
  /* Hero Banner Mobile Optimization */
  .full-hero-banner { min-height: 440px; height: auto; padding: 24px 0; }
  .hero-left-text { padding-left: 0; text-align: center; }
  .hero-left-text h1 { font-size: 2rem; line-height: 1.25; margin-bottom: 16px; }
  .badge-360-circle { width: 80px; height: 80px; border-width: 3px; }
  .badge-360-circle .num { font-size: 1.5rem; }
  .badge-360-circle .text-sub { font-size: 0.62rem; }
  .hero-bottom-center { margin-top: 20px; }
  .btn-red { padding: 14px 24px; font-size: 0.92rem; width: 100%; justify-content: center; }

  /* Page Hero Mobile */
  .page-hero { padding: 36px 0; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero p { font-size: 0.95rem; }

  /* FORCE 1-COLUMN STACK ON MOBILE FOR HERO-STORY-GRID */
  .hero-story-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .modern-graphic-card img {
    height: auto !important;
    max-height: 320px;
    width: 100% !important;
    object-fit: cover;
  }

  .programs-5-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .modern-value-card { padding: 20px 14px; }
  .pathway-grid { grid-template-columns: 1fr; gap: 16px; }
  .activities-2x2-grid { grid-template-columns: 1fr; gap: 14px; }
  .values-modern-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Floating Let's Chat Button Mobile */
  .lets-chat-float {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 0.88rem;
  }

  /* Modal Popup Mobile */
  .modal-card { padding: 24px 18px; }

  /* CTA Card Box Mobile */
  .cta-card-box { padding: 36px 18px; border-radius: var(--radius-lg); }
  .cta-card-box h2 { font-size: 1.6rem; }
  .cta-card-box p { font-size: 0.95rem; margin-bottom: 24px; }

  /* Footer Mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-col p { font-size: 0.92rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .programs-5-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 0.96rem; padding: 16px 18px; }
  .faq-answer { padding: 0 18px 18px 18px; }
  .faq-item.active .faq-answer { padding: 0 18px 18px 18px; }
}
