/* ===== CSS VARIABLES ===== */
:root {
  --green: #1a5c2e;
  --green-mid: #2e7d32;
  --green-light: #4caf50;
  --blue: #0d2b6b;
  --blue-mid: #1565c0;
  --blue-light: #1976d2;
  --gold: #f0c040;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --text-dark: #1a2332;
  --text-mid: #3d4f6b;
  --text-light: #6b7c99;
  --border: #e0e8d0;
  --shadow: 0 4px 24px rgba(26,92,46,0.10);
  --shadow-lg: 0 8px 40px rgba(26,92,46,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--blue);
  color: #b8cde8;
  font-size: 0.78rem;
  padding: 7px 0;
  position: relative;
  z-index: 1000;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.admin-link {
  background: var(--gold);
  color: var(--blue);
  padding: 4px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  transition: var(--transition);
}
.admin-link:hover { background: #fff; }

/* ===== HEADER ===== */
.header {
  background: linear-gradient(135deg, var(--white) 0%, #f0f7ee 100%);
  border-bottom: 3px solid var(--green);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(26,92,46,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-area { display: flex; align-items: center; gap: 16px; }
.logo-circle {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--green);
  box-shadow: 0 4px 16px rgba(26,92,46,0.25);
}
.school-title h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--green);
  line-height: 1.2;
}
.motto {
  color: var(--blue-mid);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.affil {
  color: var(--text-light);
  font-size: 0.75rem;
  margin-top: 1px;
}
.hamburger {
  display: none;
  background: none;
  border: 2px solid var(--green);
  padding: 6px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--green);
  border-radius: 6px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--green);
  position: sticky;
  top: 103px;
  z-index: 998;
  box-shadow: 0 3px 12px rgba(26,92,46,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 0;
}
.nav-links li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 14px 18px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: rgba(255,255,255,0.15);
  color: var(--gold);
}
/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  list-style: none;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
  border-bottom: 1px solid #f0f0f0;
}
.dropdown-menu li a:hover {
  background: var(--off-white);
  color: var(--green);
  padding-left: 24px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0d2b6b 60%, #1a5c2e 100%);
}
.hero-bg { position: absolute; inset: 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.55) 55%, rgba(10,22,40,0.15) 100%);
  z-index: 1;
}
.hero-building {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 65%;
  overflow: hidden;
}
.building-art { width: 100%; height: 100%; }
.building-svg { width: 100%; height: 100%; object-fit: cover; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(240,192,64,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: fadeInUp 0.6s ease forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.btn-primary {
  background: var(--green);
  color: white;
  padding: 13px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 2px solid var(--green);
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,92,46,0.3); }
.btn-outline {
  background: transparent;
  color: white;
  padding: 13px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.6);
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--blue);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
.ticker-label {
  background: var(--gold);
  color: var(--blue);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.ticker-wrap { overflow: hidden; flex: 1; padding: 0 20px; }
.ticker-content {
  display: inline-block;
  white-space: nowrap;
  color: #b8cde8;
  font-size: 0.85rem;
  animation: ticker 25s linear infinite;
  padding: 10px 0;
}
@keyframes ticker {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ===== STATS ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--green) 0%, #0d4a1f 100%);
  padding: 36px 20px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item {
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
}

/* ===== SECTIONS ===== */
.section { padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  background: #e8f5e9;
  color: var(--green);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--text-dark);
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== ABOUT ===== */
.about-section { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.about-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.96rem;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.about-tags span {
  background: white;
  border: 1px solid var(--border);
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-mid);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.about-cards { display: flex; flex-direction: column; gap: 20px; }
.about-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.about-card.green { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); border-left: 4px solid var(--green); }
.about-card.blue { background: linear-gradient(135deg, #e3f2fd, #bbdefb); border-left: 4px solid var(--blue-mid); }
.card-icon { font-size: 2rem; margin-bottom: 10px; }
.about-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; color: var(--text-dark); }
.about-card p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.6; }

/* ===== PRINCIPAL / LEADERSHIP ===== */
.principal-section { background: linear-gradient(135deg, #0a1628 0%, #1a5c2e 100%); }
.principal-section .section-tag { background: rgba(240,192,64,0.2); color: var(--gold); }
.principal-section .section-header h2 { color: white; }
.principal-card {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.cofounder-card { border-color: rgba(240,192,64,0.2); }
.principal-photo { text-align: center; flex-shrink: 0; }
.photo-circle {
  width: 150px; height: 150px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  background: rgba(255,255,255,0.1);
}
.photo-label { color: rgba(255,255,255,0.5); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.principal-msg h2 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.principal-title { color: var(--gold); font-size: 0.88rem; margin-bottom: 20px; font-weight: 500; }
.principal-msg blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  margin: 0 0 16px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-size: 0.96rem;
  line-height: 1.8;
  background: rgba(255,255,255,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.principal-msg p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; }

/* ===== NOTICES ===== */
.notices-section { background: var(--white); }
.notices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.notice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 5px solid var(--green);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.notice-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.notice-card.urgent { border-left-color: #e53935; }
.notice-date { font-size: 0.75rem; color: var(--text-light); margin-bottom: 8px; font-weight: 500; }
.notice-card h4 { font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; font-weight: 600; }
.notice-card p { color: var(--text-mid); font-size: 0.86rem; line-height: 1.6; }
.notice-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-urgent { background: #ffebee; color: #e53935; }
.badge-general { background: #e8f5e9; color: var(--green); }
.badge-exam { background: #fff8e1; color: #f57f17; }

/* ===== EVENTS ===== */
.events-section { background: var(--off-white); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.event-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-date-box {
  background: linear-gradient(180deg, var(--green), #0d4a1f);
  color: white;
  min-width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  text-align: center;
}
.event-day { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.event-month { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin-top: 2px; }
.event-info { padding: 20px; flex: 1; }
.event-info h4 { font-size: 0.98rem; color: var(--text-dark); margin-bottom: 6px; font-weight: 600; }
.event-info p { color: var(--text-mid); font-size: 0.83rem; line-height: 1.5; }
.event-type {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  background: #e8f5e9;
  color: var(--green);
  margin-bottom: 8px;
}

/* ===== FEE STRUCTURE ===== */
.fee-section { background: white; }
.fee-table-wrapper { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.fee-table thead {
  background: linear-gradient(135deg, var(--green), #0d4a1f);
  color: white;
}
.fee-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.fee-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px solid #f0f0f0;
}
.fee-table tbody tr:hover { background: #f7fdf7; }
.fee-table tbody tr:last-child td { border-bottom: none; }
.fee-table td:first-child { font-weight: 500; color: var(--text-dark); }
.fee-table td:last-child { font-weight: 600; color: var(--green); }
.fee-note {
  margin-top: 16px;
  padding: 14px 20px;
  background: #fff8e1;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  font-size: 0.85rem;
  color: #795548;
}

/* ===== GALLERY ===== */
.gallery-section { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
  background: var(--green);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(26,92,46,0.8));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 0.85rem; font-weight: 500; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  gap: 8px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 500;
}
.gallery-placeholder svg { opacity: 0.5; }

/* ===== CONTACT ===== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  font-size: 1.4rem;
  width: 48px; height: 48px;
  background: #e8f5e9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.88rem; font-weight: 600; color: var(--green); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.6; }
.contact-form { background: var(--off-white); padding: 36px; border-radius: var(--radius-lg); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 24px; color: var(--text-dark); }
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,92,46,0.1); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--green); margin-top: 10px; min-height: 20px; }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #050e1a 0%, #0a2010 100%);
  color: rgba(255,255,255,0.75);
  padding: 60px 20px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo h3 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.motto-footer { color: var(--gold); font-size: 0.9rem; margin-bottom: 8px; }
.footer-links h4, .footer-contact h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.86rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact p { font-size: 0.85rem; margin-bottom: 8px; line-height: 1.6; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 100%; max-height: 85vh; border-radius: var(--radius); }
.lb-close {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--gold);
  color: var(--blue);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
}

/* ===== LOADING ===== */
.loading-spinner {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
  font-size: 0.9rem;
  grid-column: 1 / -1;
}
.empty-state {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
  font-size: 0.9rem;
  grid-column: 1 / -1;
  background: var(--off-white);
  border-radius: var(--radius);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .principal-card { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; }
  .principal-msg blockquote { text-align: left; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.2rem; }
  .hero-building { width: 45%; opacity: 0.5; }
}
@media (max-width: 680px) {
  .topbar-left { gap: 8px; font-size: 0.72rem; }
  .school-title h1 { font-size: 1.1rem; }
  .hamburger { display: block; }
  .nav-links { display: none; flex-direction: column; background: #0d4a1f; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 20px; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-radius: 0; background: rgba(0,0,0,0.2); border-top: none; padding-left: 16px; }
  .hero-title { font-size: 1.7rem; }
  .hero-building { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .stats-inner { gap: 16px; }
}

/* ===== CONTACT FORM UPDATES ===== */
.form-sub { color: var(--text-light); font-size: 0.85rem; margin-bottom: 20px; margin-top: -8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.4px; }
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: white;
  transition: var(--transition);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7c99' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.contact-form select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,92,46,0.1); }
.btn-send { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }
.btn-send:disabled { background: #aaa; cursor: not-allowed; transform: none; }
.form-result {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
}
.form-result-success { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.form-result-error { background: #ffebee; color: #b71c1c; border: 1px solid #ef9a9a; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
