/* =============================================
   DIET AMBALA — Main Stylesheet
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #0a2342;
  --primary-l: #1565c0;
  --accent:    #f57c00;
  --accent-l:  #ffa726;
  --success:   #2e7d32;
  --danger:    #c62828;
  --light-bg:  #f4f6fb;
  --white:     #ffffff;
  --text:      #2c2c2c;
  --text-muted:#666;
  --border:    #e0e6ef;
  --shadow:    0 2px 16px rgba(10,35,66,.1);
  --radius:    8px;
  --transition:.3s ease;
}

html { scroll-behavior: smooth; font-size: 15px; }

body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  background: var(--light-bg);
  color: var(--text);
  line-height: 1.65;
}

a { color: var(--primary-l); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

ul { list-style: none; }

img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 16px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 5px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary  { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-l); color: #fff; border-color: var(--accent-l); }
.btn-outline  { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--primary); }
.btn-sm       { padding: 5px 14px; font-size: .82rem; }
.btn-block    { display: block; width: 100%; text-align: center; }
.text-primary { color: var(--primary-l); }
.text-red     { color: var(--danger); }
.req          { color: var(--danger); }

/* ===== TOP BAR ===== */
.top-bar { background: var(--primary); color: #cdd7e8; font-size: .82rem; padding: 6px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-left span, .top-right a { margin-right: 16px; }
.top-left i, .top-right i { margin-right: 5px; color: var(--accent); }
.top-right a { color: #cdd7e8; }
.top-right a:hover { color: var(--accent-l); }
.btn-admin-login {
  background: var(--accent);
  color: #fff !important;
  padding: 3px 12px;
  border-radius: 4px;
  font-weight: 600;
}
.btn-admin-login:hover { background: var(--accent-l); }

/* ===== HEADER ===== */
.main-header {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-l) 100%);
  color: #fff;
  padding: 14px 0;
  box-shadow: 0 3px 12px rgba(0,0,0,.25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo-area    { display: flex; align-items: center; gap: 16px; }
.emblem-logo  { height: 80px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); }
.header-sup   { font-size: .75rem; color: #afc8e8; letter-spacing: .5px; }
.header-title { font-size: 1.9rem; font-weight: 700; letter-spacing: 1px; line-height: 1.1; }
.header-sub   { font-size: .82rem; color: #c5d9ef; }
.visitor-box  {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 10px 18px;
  color: #fff;
}
.visitor-box i { font-size: 1.6rem; color: var(--accent-l); }
.visitor-box small { display: block; font-size: .75rem; color: #afc8e8; }
.visitor-box strong { font-size: 1.4rem; font-weight: 700; display: block; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--primary-l);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 3px 8px rgba(0,0,0,.2);
}
.nav-inner  { display: flex; align-items: center; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 12px 0;
}
.nav-menu   { display: flex; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 14px 16px;
  color: #fff;
  font-size: .88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { background: var(--accent); color: #fff; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  z-index: 1000;
  border-top: 3px solid var(--accent);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  font-size: .84rem;
  border-bottom: 1px solid var(--border);
}
.dropdown li a:hover { background: var(--light-bg); color: var(--accent); padding-left: 24px; }
.has-dropdown:hover .dropdown { display: block; }

/* ===== TICKER BAR ===== */
.ticker-bar {
  background: #fff3e0;
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-label {
  background: var(--accent);
  color: #fff;
  padding: 7px 16px;
  font-weight: 700;
  font-size: .85rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-content { flex: 1; overflow: hidden; padding: 7px 0; font-size: .84rem; color: var(--text); }

/* ===== HERO CAROUSEL ===== */
.hero-carousel { position: relative; overflow: hidden; }
.carousel-container { position: relative; }
.slide {
  display: none;
  min-height: 420px;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.slide.active { display: flex; }
.slide-content {
  text-align: center;
  color: #fff;
  max-width: 720px;
  animation: fadeInUp .6s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-content h2 { font-size: 2.4rem; font-weight: 700; margin-bottom: 14px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.slide-content p  { font-size: 1.05rem; margin-bottom: 26px; color: rgba(255,255,255,.9); }
.slide-content .btn { margin: 0 8px; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.22);
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--accent); border-color: var(--accent); }
.prev { left: 16px; }
.next { right: 16px; }

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background var(--transition);
}
.dot.active { background: var(--accent); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--primary); padding: 28px 0; }
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  flex: 1;
  min-width: 160px;
  justify-content: center;
}
.stat-item i { font-size: 2.2rem; color: var(--accent-l); }
.stat-item .count { font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.stat-item p { font-size: .82rem; color: #afc8e8; margin-top: 2px; }

/* ===== MAIN GRID ===== */
.main-content { padding: 28px 0 40px; }
.main-grid    { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }

/* ===== SECTION CARDS ===== */
.section-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  overflow: hidden;
}
.section-header {
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-header i { color: var(--accent-l); }
.about-content { padding: 24px; }
.about-content p { margin-bottom: 14px; }

/* Highlights */
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 12px 14px;
  border-left: 4px solid var(--primary-l);
}
.highlight-box i { font-size: 1.3rem; color: var(--primary-l); margin-top: 2px; flex-shrink: 0; }
.highlight-box strong { display: block; font-size: .82rem; color: var(--text-muted); }
.highlight-box span { font-weight: 600; font-size: .9rem; }

/* Tabs */
.tabs { margin-top: 20px; }
.tab-buttons { display: flex; gap: 0; border-bottom: 2px solid var(--border); }
.tab-btn {
  background: none;
  border: none;
  padding: 9px 20px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  font-family: inherit;
}
.tab-btn.active { color: var(--primary-l); border-bottom-color: var(--primary-l); }
.tab-btn:hover  { color: var(--primary-l); }
.tab-content    { display: none; padding: 18px 0 6px; }
.tab-content.active { display: block; }
.tab-content p  { color: var(--text-muted); line-height: 1.8; }
.tab-content ul { list-style: disc; padding-left: 22px; }
.tab-content ul li { margin-bottom: 6px; color: var(--text-muted); }

/* ===== COURSES ===== */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 20px; }
.course-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.course-card:hover { border-color: var(--primary-l); transform: translateY(-3px); box-shadow: var(--shadow); }
.course-icon { font-size: 2.5rem; color: var(--primary-l); margin-bottom: 12px; }
.course-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.course-full { font-size: .8rem; color: var(--text-muted); margin-bottom: 14px; }
.course-card ul { text-align: left; list-style: none; margin-bottom: 16px; }
.course-card ul li { font-size: .83rem; margin-bottom: 5px; color: var(--text-muted); }
.course-card ul li i { margin-right: 6px; color: var(--success); }

/* ===== WINGS ===== */
.wings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.wing-item {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.wing-item:hover { background: var(--light-bg); }
.wing-item:nth-child(even) { border-right: none; }
.wing-item i { font-size: 1.6rem; color: var(--primary-l); margin-bottom: 8px; }
.wing-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: 5px; color: var(--primary); }
.wing-item p  { font-size: .83rem; color: var(--text-muted); }

/* ===== STAFF ===== */
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 20px; }
.staff-card {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  transition: box-shadow var(--transition);
}
.staff-card:hover { box-shadow: var(--shadow); }
.staff-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-l));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #fff;
  font-size: 1.8rem;
}
.staff-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 3px; }
.staff-card .role { color: var(--accent); font-size: .82rem; font-weight: 600; margin-bottom: 2px; }
.staff-card .dept { color: var(--text-muted); font-size: .78rem; margin-bottom: 8px; }
.staff-card p { font-size: .78rem; color: var(--text-muted); margin-bottom: 3px; }
.staff-card p i { color: var(--primary-l); margin-right: 4px; }

/* ===== ACTIVITIES ===== */
.activities-list { padding: 16px 20px; }
.activity-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.activity-item:last-child { border-bottom: none; }
.activity-date {
  background: var(--primary);
  color: #fff;
  width: 52px;
  min-width: 52px;
  border-radius: var(--radius);
  text-align: center;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.activity-date span { font-size: 1.4rem; font-weight: 700; line-height: 1; }
.activity-date small { font-size: .68rem; color: #afc8e8; }
.activity-info h4 { font-size: .92rem; font-weight: 700; margin-bottom: 4px; }
.activity-info p  { font-size: .82rem; color: var(--text-muted); margin-bottom: 6px; }
.tag {
  display: inline-block;
  font-size: .72rem;
  padding: 2px 10px;
  border-radius: 30px;
  background: #e3f2fd;
  color: var(--primary-l);
  font-weight: 600;
}

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-placeholder {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.9);
  transition: transform var(--transition), opacity var(--transition);
}
.gallery-placeholder i { font-size: 2.5rem; margin-bottom: 8px; }
.gallery-placeholder p { font-size: .75rem; text-align: center; padding: 0 6px; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.04); opacity: .9; }

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-content {
  background: #222;
  border-radius: var(--radius);
  padding: 20px;
  max-width: 600px;
  width: 90%;
  position: relative;
  text-align: center;
  color: #fff;
}
.lightbox-close {
  position: absolute;
  top: 10px; right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ===== RTI ===== */
.rti-content { padding: 20px; }
.rti-content > p { margin-bottom: 16px; color: var(--text-muted); }
.rti-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rti-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.rti-card i { font-size: 1.8rem; color: var(--primary-l); margin-bottom: 10px; }
.rti-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 8px; }
.rti-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ===== DOWNLOADS ===== */
.downloads-list { padding: 12px 20px; }
.download-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.download-item:last-child { border-bottom: none; }
.download-item i { font-size: 1.8rem; flex-shrink: 0; }
.download-item div { flex: 1; }
.download-item h4 { font-size: .88rem; font-weight: 600; margin-bottom: 2px; }
.download-item small { font-size: .76rem; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 24px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.contact-item i { font-size: 1.3rem; color: var(--primary-l); margin-top: 3px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .85rem; color: var(--text-muted); }
.contact-item p { font-size: .88rem; margin-top: 2px; }
.map-placeholder { margin-top: 10px; }

.contact-form-area h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; color: var(--primary); }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .88rem;
  transition: border-color var(--transition);
  outline: none;
  background: #fafbff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary-l); background: #fff; }
.form-success {
  margin-top: 14px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: var(--success);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: .88rem;
}
.form-success i { margin-right: 6px; }

/* ===== SIDEBAR ===== */
.sidebar-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  overflow: hidden;
}
.sidebar-header {
  background: var(--primary);
  color: #fff;
  padding: 11px 16px;
  font-size: .92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-header i { color: var(--accent-l); }

.notice-list { padding: 8px 14px; }
.notice-item {
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.notice-item:last-child { border-bottom: none; }
.notice-item a {
  font-size: .82rem;
  color: var(--text);
  line-height: 1.4;
}
.notice-item a:hover { color: var(--accent); }
.notice-item small { font-size: .72rem; color: var(--text-muted); }
.new-badge {
  display: inline-block;
  background: var(--danger);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  margin-right: 4px;
  animation: blink 1.2s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.view-all {
  display: block;
  text-align: center;
  padding: 9px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary-l);
  border-top: 1px solid var(--border);
}
.view-all:hover { background: var(--light-bg); }

.quick-links { padding: 8px 14px 12px; }
.quick-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: .83rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.quick-links li:last-child a { border-bottom: none; }
.quick-links li a i { color: var(--primary-l); font-size: .75rem; }
.quick-links li a:hover { color: var(--accent); padding-left: 6px; }

.events-list { padding: 10px 14px; }
.event-item {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.event-item:last-child { border-bottom: none; }
.event-date {
  background: var(--primary-l);
  color: #fff;
  width: 46px;
  min-width: 46px;
  border-radius: 6px;
  text-align: center;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event-date span { font-size: 1.2rem; font-weight: 700; line-height: 1; }
.event-date small { font-size: .65rem; color: rgba(255,255,255,.8); }
.event-info strong { font-size: .83rem; font-weight: 700; display: block; }
.event-info small { font-size: .75rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer { background: var(--primary); color: #cdd7e8; margin-top: 10px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 32px;
  padding: 40px 0 28px;
}
.footer-col h3 { color: #fff; margin-bottom: 14px; font-size: 1rem; font-weight: 700; }
.footer-col p  { font-size: .84rem; line-height: 1.7; margin-bottom: 8px; }
.footer-col ul li a { color: #afc8e8; font-size: .83rem; display: block; padding: 4px 0; }
.footer-col ul li a:hover { color: var(--accent-l); padding-left: 6px; }
.footer-col p i { margin-right: 8px; color: var(--accent-l); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 14px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-bottom p { font-size: .8rem; }
.footer-bottom a { color: #afc8e8; margin: 0 6px; }
.footer-bottom a:hover { color: var(--accent-l); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  z-index: 998;
  transition: background var(--transition), transform var(--transition);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--accent-l); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .main-grid { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .staff-grid   { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-title { font-size: 1.3rem; }
  .emblem-logo  { height: 60px; }
  .visitor-box  { display: none; }

  .nav-toggle   { display: block; }
  .nav-menu     { display: none; flex-direction: column; width: 100%; background: var(--primary); }
  .nav-menu.open { display: flex; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .dropdown     { position: static; display: none; border-radius: 0; box-shadow: none; border-top: none; background: rgba(255,255,255,.08); }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { color: #cdd7e8; border-bottom-color: rgba(255,255,255,.07); padding-left: 32px; }

  .slide-content h2 { font-size: 1.5rem; }
  .slide { min-height: 280px; }

  .about-highlights { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .wings-grid   { grid-template-columns: 1fr; }
  .staff-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .rti-grid     { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .sidebar      { grid-template-columns: 1fr; }

  .stats-grid   { flex-direction: column; align-items: center; }
  .stat-item    { min-width: 100%; justify-content: flex-start; padding: 0 20px; }
}

@media (max-width: 480px) {
  .top-bar-inner { flex-direction: column; text-align: center; }
  .header-inner  { flex-direction: column; text-align: center; }
  .logo-area     { flex-direction: column; }
  .staff-grid    { grid-template-columns: 1fr; }
}
