/* ═══════════════════════════════════════════════
   UniEducare – Modern Design System
   ═══════════════════════════════════════════════ */

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

/* ── Variables ── */
:root {
  --navy:        #1a2a5e;
  --navy-dark:   #0f1a3d;
  --navy-light:  #243572;
  --gold:        #c9a84c;
  --gold-light:  #e2c06a;
  --gold-pale:   #f5e9c8;
  --white:       #ffffff;
  --off-white:   #f8f9fe;
  --text:        #1e2535;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-gold: 0 8px 30px rgba(201,168,76,.35);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', 'Hind Siliguri', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Typography ── */
h1,h2,h3,h4,h5 { line-height: 1.2; font-weight: 700; }
p { line-height: 1.75; }

/* ── Utilities ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-center { text-align: center; }

/* Close button — always hidden until menu is open on mobile */
.nav-close { display: none !important; }

/* ── Go to top button ── */
#goTop {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8923e 100%);
  color: var(--navy-dark);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
  z-index: 999;
}
#goTop.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#goTop:hover   { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); transform: translateY(-2px); }

/* ── Lang toggle ── */
/* Hide ALL inactive lang elements regardless of component CSS specificity */
[data-lang]:not(.lang-active) { display: none !important; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  overflow: visible;
  padding: .9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(15,26,61,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
  padding: .6rem 1.5rem;
}
.navbar-brand img { height: 46px; transition: height var(--transition); }
#navbar.scrolled .navbar-brand img { height: 38px; }

.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.88);
  padding: .45rem .85rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(255,255,255,.1); color: var(--gold-light); }
.nav-links a.active { background: rgba(201,168,76,.18); color: var(--gold); }

.lang-btn {
  background: rgba(201,168,76,.15);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: .38rem .9rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: all var(--transition);
  margin-left: .4rem;
}
.lang-btn:hover { background: var(--gold); color: var(--navy); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.9); font-size: 1.6rem; padding: .2rem;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(15,26,61,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: .5rem 1rem 1rem;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .65rem 1rem; font-size: .95rem; border-radius: 6px; }
  .nav-close { display: none !important; }
}

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1e3a8a 50%, var(--navy) 100%);
}

/* Animated background shapes */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(30,58,138,.5) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 7rem 0 5rem;
  width: 100%;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 7rem 0 4rem; }
  .hero-visual { display: none; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge i { font-size: .9rem; }

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  letter-spacing: -.02em;
}
.hero-content h1 .highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero-content h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  opacity: .6;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 900px) { .hero-actions { justify-content: center; } }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--gold) 0%, #b8923e 100%);
  color: var(--navy-dark);
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: none; cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,.5);
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: rgba(255,255,255,.9);
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid rgba(255,255,255,.3);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero stats strip */
.hero-stats {
  display: flex; gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
}
.hero-stat {
  flex: 1;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { border-right: none; }
.hero-stat .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: .3rem;
}
.hero-stat .lbl { font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 500; }
@media (max-width: 900px) {
  .hero-stats { justify-content: center; }
  .hero-stat { padding: 0 1.2rem; }
}

/* Hero visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-card-float {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%; max-width: 380px;
}
.hero-card-float .card-title { color: var(--gold); font-weight: 700; font-size: 1.1rem; margin-bottom: 1.2rem; }
.destination-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.destination-item {
  display: flex; align-items: center; gap: .75rem;
  color: rgba(255,255,255,.85); font-size: .9rem;
  padding: .5rem .75rem;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  transition: background var(--transition);
}
.destination-item:hover { background: rgba(255,255,255,.1); }
.dest-flag { font-size: 1.3rem; }
.dest-count { margin-left: auto; color: var(--gold); font-weight: 700; font-size: .82rem; }

/* Floating badge on hero card */
.hero-badge-float {
  position: absolute;
  bottom: -1rem; left: -1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: .7rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: .9rem;
  box-shadow: var(--shadow-gold);
  display: flex; align-items: center; gap: .5rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  font-size: .78rem;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  animation: bounce 2s infinite;
}
.scroll-indicator i { font-size: 1rem; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════════════════════════════
   SECTION SHARED
   ════════════════════════════════════════════════ */
section { padding: 6rem 0; }
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.section-title span { color: var(--gold); }
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 620px;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-lead { margin: 0 auto; }

/* Gold accent line */
.accent-line {
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: .75rem 0 1.2rem;
}
.centered .accent-line { margin: .75rem auto 1.2rem; }

/* ════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════ */
#about { background: var(--off-white); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }

.about-text p { color: var(--text-muted); margin-bottom: 1.1rem; }

.stat-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.stat-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-item .num  { font-size: 1.9rem; font-weight: 900; color: var(--navy); display: block; }
.stat-item .lbl  { font-size: .78rem; color: var(--text-muted); font-weight: 500; margin-top: .2rem; }

.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap .placeholder-icon { font-size: 5rem; color: rgba(255,255,255,.2); }

.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
  font-weight: 800;
}
.about-badge .big { font-size: 2rem; display: block; line-height: 1; }
.about-badge .small { font-size: .75rem; font-weight: 600; opacity: .85; }

@media (max-width: 768px) { .about-badge { right: 0; bottom: -1rem; } }

/* ════════════════════════════════════════════════
   MISSION / VISION / VALUES
   ════════════════════════════════════════════════ */
#mission { background: var(--white); }

.mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }
.mvv-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mvv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.mvv-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.mvv-icon i { font-size: 1.4rem; color: var(--gold); }

.mvv-card h3 { color: var(--navy); margin-bottom: .75rem; font-size: 1.05rem; }
.mvv-card p  { color: var(--text-muted); font-size: .93rem; line-height: 1.75; }
.mvv-card ul { color: var(--text-muted); font-size: .93rem; line-height: 1.75; list-style: none; }
.mvv-card ul li {
  display: flex; align-items: center; gap: .6rem;
  padding: .3rem 0;
  border-bottom: 1px solid var(--border);
}
.mvv-card ul li:last-child { border-bottom: none; }
.mvv-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════ */
#services { background: var(--navy-dark); overflow: hidden; position: relative; }
#services::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(201,168,76,.08) 0%, transparent 60%);
  pointer-events: none;
}
#services .section-title { color: var(--white); }
#services .section-lead  { color: rgba(255,255,255,.6); }
#services .section-tag   { color: var(--gold); }

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

.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.service-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.service-card:hover::after { opacity: 1; }

.service-num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  font-style: italic;
}

.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold) 0%, #b8923e 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-gold);
}
.service-icon i { font-size: 1.5rem; color: var(--navy-dark); }
.service-card h3 { color: var(--white); margin-bottom: .75rem; font-size: 1.05rem; }
.service-card p  { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.75; }

/* ════════════════════════════════════════════════
   TEAM
   ════════════════════════════════════════════════ */
#team { background: var(--off-white); }

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.team-card-img {
  height: 200px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.team-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-img .placeholder-icon { font-size: 4rem; color: rgba(255,255,255,.25); }

.team-card-body { padding: 1.3rem 1.2rem; }
.team-card-body h4 { color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.team-role {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .6rem;
}
.team-bio { color: var(--text-muted); font-size: .83rem; line-height: 1.65; }

/* ════════════════════════════════════════════════
   PARTNERS
   ════════════════════════════════════════════════ */
#partners { background: var(--white); }

.partner-filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: .45rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 500;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap: 1rem;
}
.partner-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  text-align: center;
  background: var(--white);
  transition: all var(--transition);
  cursor: default;
}
.partner-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,.15);
  transform: translateY(-2px);
}
.partner-card.hidden { display: none; }
.partner-logo-area {
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
}
.partner-logo-area img { max-height: 56px; max-width: 100%; object-fit: contain; }
.partner-logo-placeholder {
  width: 56px; height: 56px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--navy);
}
.pname    { font-size: .82rem; color: var(--navy); font-weight: 600; line-height: 1.4; }
.pcountry { font-size: .74rem; color: var(--text-muted); margin-top: .2rem; }

/* ════════════════════════════════════════════════
   CTA STRIP
   ════════════════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(135deg, var(--gold) 0%, #b8923e 100%);
  padding: 4rem 0;
  text-align: center;
}
.cta-strip h2 { color: var(--navy-dark); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 900; margin-bottom: .75rem; }
.cta-strip p  { color: rgba(15,26,61,.75); font-size: 1.05rem; margin-bottom: 2rem; }
.btn-navy {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--navy-dark);
  color: var(--white);
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(15,26,61,.35);
}
.btn-navy:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(15,26,61,.4); color: var(--white); }

/* ════════════════════════════════════════════════
   APPLY / CONTACT
   ════════════════════════════════════════════════ */
#apply {
  background: linear-gradient(160deg, var(--navy-dark) 0%, #1e3a8a 60%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
#apply::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,.1) 0%, transparent 60%);
  pointer-events: none;
}
#apply .section-title { color: var(--white); }
#apply .section-lead  { color: rgba(255,255,255,.65); }
#apply .section-tag   { color: var(--gold); }

.apply-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; position: relative; }
@media (max-width: 900px) { .apply-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Contact info */
.contact-info-box h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.4rem;
}
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(201,168,76,.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon i { color: var(--gold); font-size: 1.1rem; }
.contact-item-text strong { display: block; color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 600; margin-bottom: .2rem; }
.contact-item-text span  { color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.6; }

.social-row { display: flex; gap: .75rem; margin-top: 2rem; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

/* Form */
.apply-form-box {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .83rem; color: rgba(255,255,255,.75); font-weight: 600; margin-bottom: .4rem; letter-spacing: .02em; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: .93rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group select option { color: var(--text); background: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.11);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #b8923e 100%);
  color: var(--navy-dark);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
  margin-top: .5rem;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn-gold:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-success {
  text-align: center; padding: 3rem 2rem;
  display: none;
}
.form-success .success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8923e 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem; color: var(--navy-dark);
}
.form-success h4 { color: var(--gold); font-size: 1.3rem; margin-bottom: .6rem; }
.form-success p  { color: rgba(255,255,255,.7); font-size: .93rem; }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
footer {
  background: #060d1f;
  color: rgba(255,255,255,.65);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 42px; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.8; max-width: 260px; }
.footer-brand .social-row { margin-top: 1.5rem; }

footer h4 { color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 700; margin-bottom: 1.2rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color var(--transition); display: flex; align-items: center; gap: .4rem; }
.footer-links a:hover { color: var(--gold); }
.footer-links a i { font-size: .75rem; }

.footer-contact-item { display: flex; gap: .75rem; margin-bottom: .9rem; align-items: flex-start; }
.footer-contact-item i { color: var(--gold); font-size: .9rem; margin-top: .15rem; flex-shrink: 0; }
.footer-contact-item span { font-size: .85rem; line-height: 1.6; color: rgba(255,255,255,.55); }

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
@media (max-width: 560px) { .footer-bottom { justify-content: center; } }

/* ════════════════════════════════════════════════
   CUSTOM PAGES
   ════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); }
.page-body { padding: 4rem 0; }
.page-content { max-width: 820px; margin: 0 auto; }
.page-content h2,h3 { color: var(--navy); margin: 2rem 0 .75rem; }
.page-content p { color: var(--text-muted); margin-bottom: 1rem; }
.page-content ul, .page-content ol { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--text-muted); }
.page-content li { margin-bottom: .4rem; }

/* ════════════════════════════════════════════════
   ADMIN ALERT BOXES
   ════════════════════════════════════════════════ */
.alert { padding: .8rem 1rem; border-radius: 8px; margin-bottom: 1rem; font-size: .9rem; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ════════════════════════════════════════════════
   RESPONSIVE TWEAKS
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .stat-row { grid-template-columns: repeat(3,1fr); gap: .75rem; }
}
@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
}
