/* ===== Agyiba International School — Custom Design ===== */
:root {
  --orange: #e85d04;
  --orange-dark: #d00000;
  --orange-soft: #ff9e00;
  --green: #2d6a4f;
  --green-light: #40916c;
  --cream: #fefae0;
  --warm-white: #fffbf5;
  --dark: #1a1a1a;
  --gray: #4a4a4a;
  --gray-light: #6b6b6b;
  --border: #e8e0d5;
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--warm-white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 93, 4, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: #fff;
  color: var(--orange);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 251, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 0.7rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  transition: color var(--transition);
}
.header.scrolled .logo { color: var(--dark); }
.logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  position: relative;
}
.header.scrolled .nav-link { color: var(--gray); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--orange-soft); }
.header.scrolled .nav-link:hover { color: var(--orange); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.header.scrolled .menu-toggle span { background: var(--dark); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(45,106,79,0.55) 50%, rgba(232,93,4,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 4rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Stats ===== */
.stats {
  background: var(--green);
  color: #fff;
  padding: 2.5rem 0;
  position: relative;
  z-index: 5;
  margin-top: -1px;
}

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 500;
}

/* ===== Sections ===== */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header.light { color: #fff; }
.section-header.light .section-tag { background: rgba(255,255,255,0.15); color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.85); }

.section-tag {
  display: inline-block;
  background: rgba(232, 93, 4, 0.1);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--dark);
}
.section-header.light h2 { color: #fff; }

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #fff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.about-image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--orange);
}
.about-image-badge span {
  font-size: 0.85rem;
  color: var(--gray);
}

.about-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.about-card:last-child { border-bottom: none; }
.about-card-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.about-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.about-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== Programs ===== */
.programs {
  background: linear-gradient(160deg, var(--green) 0%, #1b4332 100%);
  color: #fff;
}

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

.program-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.program-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}
.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.program-card:hover .program-image img {
  transform: scale(1.08);
}

.program-body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.program-icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange-soft);
}

.program-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}
.program-card p {
  font-size: 0.9rem;
  opacity: 0.88;
  line-height: 1.55;
  margin: 0;
}

/* ===== Why Us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.why-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.why-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.why-card-body {
  padding: 1.6rem;
}
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.why-card p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item.large {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Enrol ===== */
.enrol {
  background: var(--cream);
}

.enrol-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.enrol-content {
  padding: 3.5rem 3rem;
}
.enrol-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.enrol-content > p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.enrol-list {
  margin-bottom: 2rem;
}
.enrol-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--gray);
  font-size: 0.95rem;
}
.enrol-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.enrol-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.enrol-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-item {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.8rem;
}
.contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(232, 93, 4, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}
.contact-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-item p {
  color: var(--gray);
  font-size: 0.92rem;
}
.contact-item a:hover { color: var(--orange); }

.social-links {
  margin-top: 1.5rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  padding: 0.7rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
}
.social-btn svg { width: 20px; height: 20px; }

/* Form */
.contact-form {
  background: #fff;
  padding: 2.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--warm-white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-top: 0.8rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 50px;
  margin-bottom: 1rem;
  border-radius: 6px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links h4,
.footer-hours h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-links a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.75;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--orange-soft);
}

.footer-hours p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-location { opacity: 0.7; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}
.footer-credit { opacity: 0.6; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85%);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.2rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right var(--transition);
  }
  .nav.open { right: 0; }
  .nav-link { color: var(--dark) !important; font-size: 1.05rem; }
  .menu-toggle { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .about-grid,
  .programs-grid,
  .why-grid,
  .contact-grid,
  .enrol-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.large {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .enrol-image { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .hero h1 { font-size: 2.1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Map Section */
.map-section {
  margin-top: 3.5rem;
}

.map-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.map-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.map-header p {
  color: var(--gray);
  font-size: 0.95rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 380px;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.7rem 1.3rem;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all var(--transition);
}
.map-directions-btn svg {
  width: 18px;
  height: 18px;
}
.map-directions-btn:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(45, 106, 79, 0.3);
}

/* Videos Section — clean thumbnail gallery */
.videos {
  background: #f8f4ef;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.video-thumb {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 14;
  background: #111;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.35s ease;
  filter: brightness(0.85);
}
.video-thumb:hover img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.45));
  transition: background var(--transition);
}
.video-thumb:hover .play-overlay {
  background: rgba(0,0,0,0.35);
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  transition: transform var(--transition), background var(--transition);
}
.play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}
.video-thumb:hover .play-btn {
  transform: scale(1.1);
  background: var(--orange);
  color: #fff;
}

.play-label {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  opacity: 0.95;
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-tiktok {
  background: #000 !important;
}
.social-tiktok:hover {
  background: #333 !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
}

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

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


/* Open Now Hours Widget */
.hours-widget .open-status {
  margin-bottom: 0.75rem;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.35rem;
}
.status-badge.open {
  background: rgba(45, 106, 79, 0.12);
  color: var(--green);
}
.status-badge.open::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}
.status-badge.closed {
  background: rgba(220, 53, 69, 0.1);
  color: #c1121f;
}
.status-badge.closed::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #c1121f;
  border-radius: 50%;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.today-hours {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}
.hours-list {
  margin-top: 0.8rem;
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  color: var(--gray);
}
.hours-list li.today {
  font-weight: 700;
  color: var(--dark);
}
.hours-list li.today span:first-child::after {
  content: ' (Today)';
  color: var(--orange);
  font-weight: 600;
  font-size: 0.75rem;
}


/* Extra mobile polish */
@media (max-width: 600px) {
  .logo span { font-size: 0.85rem; max-width: 140px; line-height: 1.2; }
  .logo img { height: 40px; }
  .hero { min-height: 92vh; }
  .hero-content { padding-top: 5rem; }
  .hero-badge { font-size: 0.75rem; }
  .stat-number { font-size: 1.8rem; }
  .program-image { height: 140px; }
  .map-embed iframe { min-height: 280px; }
  .contact-form { padding: 1.4rem; }
  .enrol-content { padding: 2rem 1.4rem; }
  .section { padding: 3.5rem 0; }
  .btn { padding: 0.85rem 1.4rem; }
}

/* Prevent horizontal overflow */
html, body { overflow-x: hidden; max-width: 100vw; }

/* Touch-friendly nav links */
@media (max-width: 960px) {
  .nav-link { padding: 0.5rem 0; display: block; width: 100%; }
  .nav .btn { width: 100%; margin-top: 0.5rem; text-align: center; }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}


/* Trust Strip */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.trust-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}
.trust-item span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  color: #fff;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 960px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    flex-direction: column;
    gap: 0.35rem;
  }
  .whatsapp-float {
    bottom: 1.1rem;
    right: 1.1rem;
    width: 54px;
    height: 54px;
  }
}
