/* =============================================
   S K English School - Main Stylesheet
   Colors: #00A652 (green) + Black
   ============================================= */

:root {
  --primary: #00A652;
  --primary-dark: #007a3d;
  --primary-light: #e6f7ee;
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --gray: #6c757d;
  --light-gray: #f4f6f5;
  --white: #ffffff;
  --border: #dee2e6;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 166, 82, 0.18);
  --transition: 0.3s ease;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

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

/* ---- Utilities ---- */
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom { background-color: var(--primary) !important; }
.bg-light-custom { background-color: var(--light-gray); }

.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  position: relative;
  margin-bottom: 12px;
}
.section-title span { color: var(--primary); }

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 50px;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  border-radius: 2px;
  margin: 14px auto 16px;
}
.title-underline.left { margin-left: 0; }

/* ---- Buttons ---- */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: 11px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  display: inline-block;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 166, 82, 0.3);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 11px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-white-custom {
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
  padding: 11px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-block;
}
.btn-white-custom:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary-light);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 2px solid var(--primary);
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--primary); }
.top-bar .top-bar-item { margin-right: 18px; }
.top-bar .top-bar-item i { color: var(--primary); margin-right: 5px; }

/* ============================================
   NAVBAR
   ============================================ */
.main-navbar {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.main-navbar.scrolled { box-shadow: 0 4px 25px rgba(0,0,0,0.12); }

.navbar-brand { padding: 10px 0; }

.logo-wrapper { display: flex; align-items: center; gap: 12px; }

.logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon span {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.logo-text .school-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  display: block;
}
.logo-text .school-name em {
  color: var(--primary);
  font-style: normal;
}
.logo-text .school-tagline {
  font-size: 0.72rem;
  color: var(--gray);
  display: block;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 24px 14px !important;
  position: relative;
  letter-spacing: 0.2px;
  transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-nav .dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 10px 0;
  min-width: 220px;
  animation: dropFade 0.2s ease;
  border-top: 3px solid var(--primary);
  margin-top: 0;
}
@keyframes dropFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.navbar-nav .dropdown-item {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 9px 20px;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.navbar-nav .dropdown-item:hover {
  color: var(--primary);
  background: var(--primary-light);
  border-left-color: var(--primary);
  padding-left: 24px;
}

.navbar-toggler {
  border: 2px solid var(--primary);
  border-radius: 6px;
  padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300A652' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 88vh;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a2a1a 50%, #0a2218 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300A652' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 166, 82, 0.15);
  border: 1px solid rgba(0, 166, 82, 0.3);
  color: var(--primary);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--primary);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  opacity: 0.4;
  border-radius: 2px;
}

.hero-description {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 28px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat .number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 4px;
}

.hero-image-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.hero-image-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,166,82,0.08) 0%, transparent 60%);
}
.school-emblem {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 12px rgba(0,166,82,0.12), 0 0 0 24px rgba(0,166,82,0.06);
}
.school-emblem i { font-size: 3rem; color: #fff; }

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome-section { padding: 90px 0; }

.welcome-icon-box {
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.welcome-icon-box i { font-size: 1.4rem; color: var(--primary); }
.welcome-icon-box:hover { background: var(--primary); }
.welcome-icon-box:hover i { color: #fff; }

/* ============================================
   FEATURE CARDS / WHY US
   ============================================ */
.why-us-section { background: var(--light-gray); }

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  height: 100%;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 62px; height: 62px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.feature-icon i { font-size: 1.6rem; color: var(--primary); }
.feature-card:hover .feature-icon { background: var(--primary); }
.feature-card:hover .feature-icon i { color: #fff; }
.feature-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.65; }

/* ============================================
   NOTICE BOARD
   ============================================ */
.notice-board {
  background: var(--dark);
  color: #fff;
  padding: 70px 0;
}
.notice-board .section-title { color: #fff; }
.notice-board .section-title span { color: var(--primary); }

.notice-item {
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin-bottom: 12px;
  transition: background var(--transition);
}
.notice-item:hover { background: rgba(0,166,82,0.1); }
.notice-item .date {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.notice-item .title { color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 500; }
.notice-badge {
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  text-transform: uppercase;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-section .cta-title { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 1rem; }

/* ============================================
   NEWS CARDS
   ============================================ */
.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: transparent; }
.news-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), #d4f0e2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.news-img i { font-size: 3.5rem; color: var(--primary); opacity: 0.5; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-category {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-body { padding: 20px; }
.news-meta { font-size: 0.78rem; color: var(--gray); margin-bottom: 10px; }
.news-meta i { color: var(--primary); margin-right: 4px; }
.news-body h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.news-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.news-link { font-size: 0.82rem; font-weight: 600; color: var(--primary); }
.news-link:hover { color: var(--primary-dark); }

/* ============================================
   PAGE HEADER / BREADCRUMB
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2a1a 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300A652' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 50px;
  background: #fff;
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 50% 100%, 0 30%);
}
.page-header-inner { position: relative; z-index: 2; }
.page-header h1 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.page-header h1 span { color: var(--primary); }
.breadcrumb-custom { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb-custom a { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.breadcrumb-custom a:hover { color: var(--primary); }
.breadcrumb-custom .sep { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.breadcrumb-custom .current { color: var(--primary); font-size: 0.85rem; font-weight: 600; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-tabs .nav-link {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 6px;
  border: 2px solid var(--border);
  margin-bottom: 8px;
  transition: all var(--transition);
}
.about-tabs .nav-link:hover,
.about-tabs .nav-link.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.info-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 20px 22px;
  margin-bottom: 24px;
}
.info-box h6 { color: var(--primary-dark); font-weight: 700; margin-bottom: 6px; font-size: 0.95rem; }
.info-box p { color: #444; font-size: 0.88rem; margin: 0; }

.profile-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
}
.profile-card .profile-header {
  background: linear-gradient(135deg, var(--dark), #1a2a1a);
  padding: 30px 20px;
  position: relative;
}
.profile-avatar {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 4px solid rgba(255,255,255,0.2);
}
.profile-avatar i { font-size: 2.5rem; color: #fff; }
.profile-card .name { color: #fff; font-size: 1.2rem; font-weight: 700; }
.profile-card .role { color: var(--primary); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.profile-card .profile-body { padding: 24px; }
.profile-card .profile-body p { color: var(--gray); font-size: 0.875rem; line-height: 1.75; }
.quote-icon { color: var(--primary); font-size: 2rem; line-height: 1; margin-bottom: 10px; display: block; }

/* ============================================
   ACADEMICS
   ============================================ */
.program-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.program-card .level-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 var(--radius) 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.program-icon {
  width: 60px; height: 60px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.program-icon i { font-size: 1.5rem; color: var(--primary); }
.program-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.program-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

.subject-pill {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin: 3px;
  border: 1px solid rgba(0,166,82,0.2);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filter .btn {
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--gray);
  transition: all var(--transition);
  margin: 4px;
}
.gallery-filter .btn:hover,
.gallery-filter .btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item .gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--primary-light), #c8ecda);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform var(--transition);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.gallery-item:hover img,
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,166,82,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: #fff; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 20px 12px 12px;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-caption p { color: #fff; font-size: 0.82rem; font-weight: 600; margin: 0; }

/* ============================================
   CONTACT
   ============================================ */
.contact-info-card {
  background: var(--dark);
  border-radius: 16px;
  padding: 36px 30px;
  color: #fff;
}
.contact-info-card h4 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 28px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(0,166,82,0.15);
  border: 1px solid rgba(0,166,82,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--primary); font-size: 1.1rem; }
.contact-item .ci-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.contact-item .ci-value { color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 500; display: block; }

.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-card h4 { font-size: 1.3rem; margin-bottom: 24px; }

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 0.88rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,166,82,0.12);
  outline: none;
}
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 300px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder {
  text-align: center;
  color: var(--gray);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}

.footer-brand .logo-wrapper { margin-bottom: 18px; }
.footer-brand .school-name { color: #fff; }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 20px; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }

.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0,166,82,0.3);
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 36px; height: 2px;
  background: var(--primary);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--primary); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom a { color: var(--primary); }

/* ============================================
   ANIMATIONS (mild, purposeful)
   ============================================ */
[data-aos] { transition-property: transform, opacity !important; }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.counter-number { display: inline-block; }

/* ============================================
   SCROLL TO TOP
   ============================================ */
#scrollTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 15px rgba(0,166,82,0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
}
#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .navbar-nav .nav-link { padding: 12px 14px !important; }
  .navbar-nav .nav-link::after { display: none; }
  .hero-stats { gap: 18px; }
  .hero-stat { border-right: none; padding-right: 0; }
  .section-padding { padding: 60px 0; }
}

@media (max-width: 767px) {
  .top-bar .top-bar-right { display: none; }
  .hero-section { min-height: auto; padding: 60px 0 80px; }
  .hero-title { font-size: 1.9rem; }
  .hero-description { font-size: 0.95rem; }
  .section-padding { padding: 50px 0; }
  .section-title { font-size: 1.6rem; }
  .hero-stats { justify-content: center; }
  .hero-stat { border: none; padding: 0; }
}

@media (max-width: 575px) {
  .logo-text .school-name { font-size: 0.95rem; }
  .contact-info-card, .contact-form-card { padding: 24px 18px; }
}
