/* ═══════════════════════════════════════════════════════════
   Public Website — Styles
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700;800&display=swap');

/* ─── CSS Custom Properties ──────────────────────────────── */
:root {
  --bg-body: #faf9f7;
  --bg-white: #ffffff;
  --bg-cream: #f5f0e8;
  --bg-dark: #1a1a2e;
  --bg-dark-2: #16213e;
  --bg-dark-3: #0f3460;

  --text-dark: #1a1a2e;
  --text-body: #3d3d5c;
  --text-light: #6b6b8d;
  --text-white: #f0f0f5;
  --text-muted: #9a9ab0;

  --gold: #e2b04a;
  --gold-light: #f5d88e;
  --gold-dark: #c49630;
  --gold-bg: rgba(226, 176, 74, 0.1);

  --blue: #3b82f6;
  --green: #10b981;
  --red: #ef4444;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(26,26,46,0.06);
  --shadow-md: 0 4px 20px rgba(26,26,46,0.08);
  --shadow-lg: 0 12px 40px rgba(26,26,46,0.12);
  --shadow-xl: 0 20px 60px rgba(26,26,46,0.15);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 72px;
  --section-pad: 5rem 0;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-body);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Typography ─────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.25;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title .section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  background: var(--gold-bg);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section-title p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: #c5c5d5; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a5a5b5; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 16px rgba(26,26,46,0.06);
}

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

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

.nav-brand .brand-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.nav-brand .brand-logo img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.nav-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.navbar:not(.scrolled) .nav-brand .brand-name {
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.navbar:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.85);
}

.nav-links a:hover,
.navbar:not(.scrolled) .nav-links a:hover {
  color: var(--gold);
  background: var(--gold-bg);
}

.nav-cta {
  background: var(--gold) !important;
  color: #1a1a2e !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 2px 10px rgba(226,176,74,0.3);
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(226,176,74,0.4) !important;
}

/* Mobile Menu */
.nav-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.navbar:not(.scrolled) .nav-mobile-toggle {
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 50%, var(--bg-dark-3) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(226,176,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-body), transparent);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: var(--nav-height);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(226,176,74,0.12);
  border: 1px solid rgba(226,176,74,0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(226,176,74,0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(226,176,74,0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(226,176,74,0.08);
}

/* Hero Right — Owner Card */
.hero-visual {
  display: flex;
  justify-content: center;
  z-index: 2;
}

.owner-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 340px;
  width: 100%;
}

.owner-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 4px;
  box-shadow: 0 8px 32px rgba(226,176,74,0.2);
}

.owner-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}

.owner-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.owner-card .owner-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.owner-card .owner-title {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.owner-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.owner-stat {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 0.8rem;
}

.owner-stat .stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.owner-stat .stat-txt {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   COURSES SECTION
   ═══════════════════════════════════════════════════════════ */

.courses-section {
  padding: var(--section-pad);
}

.course-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.course-filter-btn {
  padding: 0.5rem 1.3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--bg-white);
  border: 1px solid #e5e5ea;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
}

.course-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.course-filter-btn.active {
  background: var(--gold);
  color: #1a1a2e;
  border-color: var(--gold);
  box-shadow: 0 2px 10px rgba(226,176,74,0.25);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.course-card {
  background: var(--bg-white);
  border: 1px solid #eeeef0;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition);
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.course-card:hover::before { opacity: 1; }

.course-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.course-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.course-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.course-card .card-category {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: var(--gold-bg);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════════════
   APPLICATION FORM SECTION
   ═══════════════════════════════════════════════════════════ */

.apply-section {
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  position: relative;
}

.apply-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(226,176,74,0.06), transparent 70%);
  pointer-events: none;
}

.apply-section .section-title .section-label {
  background: rgba(226,176,74,0.15);
}

.apply-section .section-title h2 {
  color: #fff;
}

.apply-section .section-title p {
  color: rgba(255,255,255,0.5);
}

.apply-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.apply-form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

/* Steps indicator */
.form-steps {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.form-step-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

.form-step-indicator .step-num {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  font-weight: 600;
  font-size: 0.8rem;
  transition: all var(--transition);
}

.form-step-indicator.active {
  color: var(--gold);
}

.form-step-indicator.active .step-num {
  background: var(--gold);
  color: #1a1a2e;
}

.form-step-indicator.done {
  color: var(--green);
}

.form-step-indicator.done .step-num {
  background: var(--green);
  color: #fff;
}

.step-divider {
  width: 30px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  align-self: center;
}

/* Form fields */
.form-step-content {
  display: none;
}

.form-step-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.form-field {
  margin-bottom: 1.2rem;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}

.form-field input::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(226,176,74,0.15);
}

.form-field select option {
  background: var(--bg-dark);
  color: #fff;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
}

.btn-form-next,
.btn-form-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1a2e;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-form-next:hover,
.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(226,176,74,0.4);
}

.btn-form-back {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-form-back:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

.form-success .success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
}

/* ═══════════════════════════════════════════════════════════
   RESULTS SECTION
   ═══════════════════════════════════════════════════════════ */

.results-section {
  padding: var(--section-pad);
}

.results-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.result-filter-group {
  display: flex;
  gap: 0.4rem;
  background: var(--bg-white);
  border: 1px solid #eeeef0;
  border-radius: var(--radius-full);
  padding: 0.25rem;
}

.result-filter-btn {
  padding: 0.4rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
}

.result-filter-btn:hover {
  color: var(--text-dark);
}

.result-filter-btn.active {
  background: var(--gold);
  color: #1a1a2e;
  box-shadow: 0 2px 8px rgba(226,176,74,0.2);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.result-card {
  background: var(--bg-white);
  border: 1px solid #eeeef0;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  text-align: center;
  transition: all var(--transition);
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.result-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--gold-bg), #ffe8b8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
  border: 3px solid var(--gold-bg);
}

.result-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.result-card .result-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.result-card .result-meta {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.result-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.result-badge.board { background: #e8f0fe; color: #3b82f6; }
.result-badge.class { background: #e8fef0; color: #10b981; }
.result-badge.year { background: #f0e8fe; color: #8b5cf6; }

.result-percentage {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}

.result-percentage span {
  font-size: 1rem;
  color: var(--text-light);
}

.result-details {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid #f0f0f4;
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

.no-results .no-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }

/* ═══════════════════════════════════════════════════════════
   GOVT EXAMS SECTION
   ═══════════════════════════════════════════════════════════ */

.govt-section {
  padding: var(--section-pad);
  background: var(--bg-cream);
}

.govt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.govt-card {
  background: var(--bg-white);
  border: 1px solid #eeeef0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.govt-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.govt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.govt-card:hover::after { opacity: 1; }

.govt-card .govt-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.govt-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.govt-card .govt-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.govt-card .govt-details {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.8rem;
  background: var(--bg-body);
  border-radius: var(--radius-sm);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-brand .footer-logo span:first-child {
  font-size: 1.5rem;
}

.footer-brand .footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 0.3rem;
}

.footer-contact li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.footer-contact li span:first-child {
  flex-shrink: 0;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: var(--gold);
  opacity: 0.6;
}

.footer-bottom a:hover {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   TOAST (public site)
   ═══════════════════════════════════════════════════════════ */

.public-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-dark);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.public-toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 3rem;
  }

  .hero h1 { font-size: 2.4rem; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .owner-card { max-width: 280px; }

  .section-title h2 { font-size: 2rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 1rem;
    border-bottom: 1px solid #eee;
    box-shadow: var(--shadow-md);
  }

  .navbar:not(.scrolled) .nav-links.open a {
    color: var(--text-body);
  }

  .form-row { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .govt-grid { grid-template-columns: 1fr; }

  .apply-form { padding: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .section-title h2 { font-size: 1.6rem; }
  .owner-stats { grid-template-columns: 1fr; }
  .form-steps { gap: 0.5rem; font-size: 0.7rem; }
  .form-step-indicator span:not(.step-num) { display: none; }
}
