:root{
  --navy:#0b1f3a;
  --navy-mid:#152d52;
  --gold:#e8a820;
  --gold-light:#f5c842;
  --teal:#1a7f8e;
  --teal-light:#22a8bc;
  --cream:#fdf8f0;
  --white:#fff;
  --text:#1e2d40;
  --muted:#6b7f97;
  --border:#dde4ee;
  --section-alt:#f4f8fc;
  --radius:14px;
  --shadow:0 4px 24px rgba(11,31,58,.10);
  --shadow-lg:0 12px 48px rgba(11,31,58,.16);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:"DM Sans",sans-serif;color:var(--text);background:var(--white);overflow-x:hidden}
h1,h2,h3{font-family:"Playfair Display",serif}

nav{
  position:fixed;top:0;left:0;right:0;z-index:999;
  background:rgba(11,31,58,.97);
  backdrop-filter:blur(12px);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 5%;
  height:68px;
  box-shadow:0 2px 16px rgba(0,0,0,.22);
}
.nav-logo{
  font-family:"Playfair Display",serif;
  font-size:1.45rem;font-weight:900;
  color:var(--white);
  text-decoration:none;
  letter-spacing:-.5px;
}
.nav-logo span{color:var(--gold)}
.nav-links{display:flex;gap:2rem;list-style:none}
.nav-links a{color:rgba(255,255,255,.82);text-decoration:none;font-size:.9rem;font-weight:500;transition:color .2s}
.nav-links a:hover{color:var(--gold)}
.nav-cta{
  background:var(--gold);color:var(--navy);
  padding:9px 22px;border-radius:8px;
  font-weight:700;font-size:.88rem;
  text-decoration:none;transition:background .2s;
  white-space:nowrap;
}
.nav-cta:hover{background:var(--gold-light)}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:4px}
.hamburger span{display:block;width:24px;height:2px;background:var(--white);border-radius:2px}
.mobile-menu{
  display:none;position:fixed;top:68px;left:0;right:0;
  background:var(--navy);padding:1.5rem 5%;
  flex-direction:column;gap:1.2rem;
  z-index:998;box-shadow:0 8px 24px rgba(0,0,0,.3);
}
.mobile-menu.open{display:flex}
.mobile-menu a{color:rgba(255,255,255,.88);text-decoration:none;font-size:1rem;font-weight:600}
.mobile-menu a:hover{color:var(--gold)}

section{padding:80px 5%}
.section-label{
  display:inline-block;
  background:rgba(26,127,142,.1);color:var(--teal);
  padding:5px 14px;border-radius:999px;
  font-size:.78rem;font-weight:700;letter-spacing:.08em;
  text-transform:uppercase;margin-bottom:.8rem;
}
.section-title{font-size:clamp(1.7rem,3.5vw,2.5rem);color:var(--navy);line-height:1.2;margin-bottom:1rem}
.section-sub{color:var(--muted);font-size:1.05rem;line-height:1.65;max-width:560px}
.section-header{margin-bottom:3rem}
.section-header.center{text-align:center}
.section-header.center .section-sub{margin:0 auto}

.hero{
  min-height:100vh;
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 55%,#1a4a6e 100%);
  display:flex;align-items:center;
  padding:100px 5% 60px;
  position:relative;overflow:hidden;
}
.hero-orb{
  position:absolute;width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle,rgba(232,168,32,.12) 0%,transparent 70%);
  top:-150px;right:-100px;pointer-events:none;
}
.hero-content{position:relative;z-index:2;max-width:680px}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(232,168,32,.15);border:1px solid rgba(232,168,32,.3);
  color:var(--gold-light);padding:7px 16px;border-radius:999px;
  font-size:.82rem;font-weight:700;letter-spacing:.05em;
  text-transform:uppercase;margin-bottom:1.5rem;
}
.hero h1{font-size:clamp(2.2rem,5vw,3.8rem);color:var(--white);line-height:1.15;margin-bottom:1.25rem}
.hero h1 span{color:var(--gold)}
.hero p{color:rgba(255,255,255,.75);font-size:1.1rem;line-height:1.7;max-width:560px;margin-bottom:2.2rem}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap}
.btn-primary{
  background:var(--gold);color:var(--navy);
  padding:14px 30px;border-radius:10px;
  font-weight:800;font-size:.95rem;text-decoration:none;
  transition:.2s;box-shadow:0 4px 20px rgba(232,168,32,.4);
  display:inline-block;
}
.btn-primary:hover{background:var(--gold-light);transform:translateY(-2px)}
.btn-outline{
  background:transparent;color:var(--white);
  padding:14px 30px;border-radius:10px;
  font-weight:700;font-size:.95rem;text-decoration:none;
  border:2px solid rgba(255,255,255,.35);
  transition:.2s;display:inline-block;
}
.btn-outline:hover{border-color:var(--white);background:rgba(255,255,255,.07);transform:translateY(-2px)}
.hero-stats{display:flex;gap:3rem;margin-top:3.5rem}
.hero-stat .num{font-family:"Playfair Display",serif;font-size:2rem;color:var(--gold);font-weight:900}
.hero-stat .lbl{font-size:.8rem;color:rgba(255,255,255,.6);font-weight:600;text-transform:uppercase;letter-spacing:.05em}

.search-section{background:var(--navy);padding:50px 5%}
.search-box{background:var(--white);border-radius:18px;padding:2.5rem;box-shadow:var(--shadow-lg);max-width:900px;margin:0 auto}
.search-grid{display:grid;grid-template-columns:1fr 1fr auto;gap:1rem;align-items:end}
.search-field{display:flex;flex-direction:column;gap:6px}
.search-field label{font-size:.8rem;font-weight:800;color:var(--navy);text-transform:uppercase;letter-spacing:.05em}
.search-field select{
  border:2px solid var(--border);border-radius:10px;
  padding:12px 14px;font-size:.92rem;font-family:inherit;
  color:var(--text);background:var(--white);
  cursor:pointer;outline:none;
}
.btn-search{
  background:var(--gold);color:var(--navy);
  border:none;border-radius:10px;
  padding:13px 28px;font-weight:900;font-size:.95rem;
  cursor:pointer;font-family:inherit;transition:.2s;
  white-space:nowrap;box-shadow:0 4px 16px rgba(232,168,32,.35);
}
.btn-search:hover{background:var(--gold-light);transform:translateY(-2px)}

.about-section{background:var(--cream)}
.about-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:5rem;align-items:center}
.about-visual{
  background:linear-gradient(135deg,var(--navy) 0%,var(--teal) 100%);
  border-radius:20px;padding:3rem;
  color:white;text-align:center;
  box-shadow:var(--shadow-lg);
}
.about-visual .big-icon{font-size:5rem;margin-bottom:1rem}
.about-visual h3{font-size:1.5rem;margin-bottom:.8rem}
.about-visual p{opacity:.92;line-height:1.6}
.about-text p{color:var(--muted);line-height:1.8;margin-bottom:1.1rem;font-size:1rem}
.about-points{margin:1.5rem 0 2rem;display:flex;flex-direction:column;gap:.8rem}
.about-point{display:flex;align-items:center;gap:10px;color:var(--text);font-size:.95rem;font-weight:600}
.about-point::before{
  content:"✓";width:22px;height:22px;
  background:rgba(26,127,142,.12);color:var(--teal);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:.75rem;font-weight:900;flex-shrink:0;
}
.btn-teal{
  background:var(--teal);color:var(--white);
  padding:13px 28px;border-radius:10px;
  font-weight:800;font-size:.95rem;text-decoration:none;
  transition:.2s;display:inline-block;
  box-shadow:0 4px 16px rgba(26,127,142,.3);
}
.btn-teal:hover{background:var(--teal-light);transform:translateY(-2px)}

.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.8rem}
.service-card{
  background:var(--white);border:1.5px solid var(--border);
  border-radius:var(--radius);padding:2rem;
  transition:.3s;cursor:pointer;
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:transparent}
.service-icon{font-size:2.5rem;margin-bottom:1rem}
.service-card h3{font-family:"DM Sans",sans-serif;font-weight:900;font-size:1.05rem;color:var(--navy);margin-bottom:.6rem}
.service-card p{color:var(--muted);font-size:.9rem;line-height:1.6}

.courses-section{background:var(--section-alt)}
.courses-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(170px,1fr));gap:1.4rem}
.course-card{
  background:var(--white);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow);
  transition:.3s;cursor:pointer;
  border:1.5px solid transparent;
}
.course-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:var(--gold)}
.course-thumb{height:100px;display:flex;align-items:center;justify-content:center;font-size:3rem}
.course-info{padding:1rem}
.course-info h3{font-family:"DM Sans",sans-serif;font-size:.95rem;font-weight:900;color:var(--navy);margin-bottom:.6rem}
.btn-sm{
  background:transparent;border:1.5px solid var(--teal);
  color:var(--teal);padding:6px 14px;border-radius:6px;
  font-size:.78rem;font-weight:800;cursor:pointer;
  font-family:inherit;transition:.2s;
}
.btn-sm:hover{background:var(--teal);color:white}

.colleges-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(290px,1fr));gap:1.8rem}
.college-card{
  background:var(--white);border-radius:var(--radius);
  box-shadow:var(--shadow);overflow:hidden;
  transition:.3s;cursor:pointer;
  border:1.5px solid var(--border);
}
.college-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:var(--teal-light)}
.college-thumb{
  height:160px;display:flex;align-items:center;justify-content:center;
  font-size:4rem;position:relative;
  background:linear-gradient(135deg,#0b1f3a,#1a4a6e);
  color:rgba(255,255,255,.95);
}
.college-thumb img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.college-badge{
  position:absolute;top:12px;right:12px;
  background:var(--gold);color:var(--navy);
  font-size:.7rem;font-weight:900;padding:3px 10px;border-radius:999px;
  text-transform:uppercase;letter-spacing:.04em;z-index:2;
}
.college-info{padding:1.3rem 1.4rem}
.college-info h3{font-family:"DM Sans",sans-serif;font-size:1rem;font-weight:900;color:var(--navy);margin-bottom:.35rem}
.college-loc{display:flex;align-items:center;gap:5px;color:var(--muted);font-size:.82rem;margin-bottom:.7rem}
.college-courses{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:1rem}
.course-tag{background:rgba(26,127,142,.1);color:var(--teal);padding:3px 10px;border-radius:6px;font-size:.74rem;font-weight:800}
.college-desc{font-size:.84rem;color:var(--muted);margin-bottom:.9rem;line-height:1.55}
.btn-view{width:100%;background:var(--navy);color:var(--white);border:none;border-radius:8px;padding:10px;font-weight:800;font-size:.88rem;cursor:pointer;font-family:inherit;transition:background .2s}
.btn-view:hover{background:var(--teal)}
.center-actions{display:flex;justify-content:center;margin-top:2.5rem}

.inquiry-section{background:var(--cream)}
.inquiry-wrap{max-width:780px;margin:0 auto;background:var(--white);border-radius:20px;padding:2.2rem 2.4rem;box-shadow:var(--shadow-lg);border:1.5px solid var(--border)}
.inquiry-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}
.form-field{display:flex;flex-direction:column;gap:6px}
.form-field.full{grid-column:1/-1}
.form-field label{font-size:.82rem;font-weight:900;color:var(--navy);text-transform:uppercase;letter-spacing:.05em}
.form-field .req{color:#e84848}
.form-field input,.form-field textarea{border:2px solid var(--border);border-radius:10px;padding:12px 14px;font-size:.92rem;font-family:inherit;color:var(--text);background:var(--white);outline:none;transition:border-color .2s;resize:vertical}
.form-field input:focus,.form-field textarea:focus{border-color:var(--teal)}
.form-field input.invalid,.form-field textarea.invalid{border-color:#e84848}
.field-error{font-size:.78rem;color:#e84848;min-height:1em}
.btn-submit{width:100%;background:var(--navy);color:var(--white);border:none;border-radius:10px;padding:14px;font-weight:900;font-size:1rem;cursor:pointer;font-family:inherit;transition:.2s;box-shadow:0 4px 16px rgba(11,31,58,.25)}
.btn-submit:hover:not(:disabled){background:var(--teal);transform:translateY(-2px)}
.btn-submit:disabled{opacity:.65;cursor:not-allowed}
.inquiry-alert{padding:14px 18px;border-radius:10px;margin-bottom:1.2rem;font-size:.92rem;font-weight:700}
.inquiry-alert.success{background:#eafaf1;color:#1a7a4a;border:1.5px solid #a3d9b8}
.inquiry-alert.danger{background:#fef0f0;color:#c0392b;border:1.5px solid #f5b7b1}

footer{background:#070f1c;color:rgba(255,255,255,.7);padding:60px 5% 30px}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-brand p{margin-top:1rem;font-size:.87rem;line-height:1.7;max-width:320px}
footer h4{color:var(--white);font-family:"DM Sans",sans-serif;font-size:.88rem;font-weight:900;text-transform:uppercase;letter-spacing:.07em;margin-bottom:1.2rem}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:.6rem}
.footer-links a{color:rgba(255,255,255,.6);text-decoration:none;font-size:.87rem;transition:color .2s}
.footer-links a:hover{color:var(--gold)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:1.5rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;font-size:.82rem;color:rgba(255,255,255,.45)}

@media (max-width:1100px){
  .about-grid{grid-template-columns:1fr;gap:3rem}
}
@media (max-width:768px){
  nav .nav-links,nav .nav-cta{display:none}
  .hamburger{display:flex}
  nav{padding:0 4%;height:60px}
  .hero{padding:80px 4% 40px;min-height:auto}
  .hero h1{font-size:1.8rem;line-height:1.2;margin-bottom:1rem}
  .hero p{font-size:1rem;margin-bottom:1.5rem}
  .hero-badge{font-size:.75rem;padding:6px 12px;margin-bottom:1rem}
  .hero-btns{gap:.8rem}
  .btn-primary,.btn-outline{padding:12px 24px;font-size:.9rem}
  .hero-stats{gap:1.2rem;flex-wrap:wrap;margin-top:2rem}
  .hero-stat{flex:1;min-width:100px}
  .hero-stat .num{font-size:1.6rem}
  .hero-stat .lbl{font-size:.7rem}
  .search-section{padding:30px 4%}
  .search-box{padding:1.5rem;border-radius:12px}
  .search-box h2{font-size:1.3rem;margin-bottom:.3rem}
  .search-box p{font-size:.85rem;margin-bottom:1.2rem}
  .search-grid{grid-template-columns:1fr;gap:.8rem}
  .search-field label{font-size:.75rem}
  .search-field select{padding:10px 12px;font-size:.85rem}
  .btn-search{width:100%;padding:11px 20px;font-size:.9rem}
  section{padding:40px 4%}
  .section-title{font-size:1.6rem;margin-bottom:.8rem}
  .section-sub{font-size:.95rem}
  .section-header{margin-bottom:2rem}
  .section-label{font-size:.7rem;padding:4px 12px;margin-bottom:.6rem}
  .about-grid{gap:2rem}
  .about-visual{padding:2rem 1.5rem;border-radius:16px}
  .about-visual .big-icon{font-size:3.5rem;margin-bottom:.8rem}
  .about-visual h3{font-size:1.2rem;margin-bottom:.6rem}
  .about-visual p{font-size:.88rem}
  .about-badge{bottom:-10px;right:-10px;padding:.7rem 1rem}
  .about-badge .num{font-size:1.5rem}
  .about-badge .txt{font-size:.7rem}
  .about-text p{font-size:.92rem;margin-bottom:1rem}
  .about-points{margin:1.2rem 0 1.5rem;gap:.6rem}
  .about-point{font-size:.88rem}
  .btn-teal{padding:11px 24px;font-size:.9rem}
  .services-grid{grid-template-columns:1fr;gap:1.2rem}
  .service-card{padding:1.5rem;border-radius:12px}
  .service-icon{font-size:2rem;margin-bottom:.8rem}
  .service-card h3{font-size:1rem;margin-bottom:.5rem}
  .service-card p{font-size:.85rem}
  .courses-grid{grid-template-columns:repeat(2,1fr);gap:1rem}
  .course-card{border-radius:12px}
  .course-thumb{height:80px;font-size:2.5rem}
  .course-info{padding:.8rem}
  .course-info h3{font-size:.85rem;margin-bottom:.5rem}
  .btn-sm{padding:5px 12px;font-size:.75rem}
  .colleges-grid{grid-template-columns:1fr;gap:1.2rem}
  .college-card{border-radius:12px}
  .college-thumb{height:140px;font-size:3rem}
  .college-badge{font-size:.65rem;padding:2px 8px;top:10px;right:10px}
  .college-info{padding:1rem 1.1rem}
  .college-info h3{font-size:.95rem;margin-bottom:.3rem}
  .college-loc{font-size:.78rem;margin-bottom:.6rem}
  .college-courses{gap:4px;margin-bottom:.8rem}
  .course-tag{font-size:.7rem;padding:2px 8px}
  .college-desc{font-size:.8rem;margin-bottom:.7rem}
  .btn-view{padding:9px;font-size:.85rem;border-radius:7px}
  .center-actions{margin-top:2rem}
  .inquiry-section{padding:40px 4%}
  .inquiry-wrap{padding:1.5rem;border-radius:16px}
  .inquiry-grid{grid-template-columns:1fr;gap:1rem}
  .form-field label{font-size:.78rem}
  .form-field input,.form-field textarea{padding:10px 12px;font-size:.88rem;border-radius:8px}
  .btn-submit{padding:12px;font-size:.95rem;border-radius:8px}
  .inquiry-alert{padding:12px 14px;font-size:.88rem;margin-bottom:1rem}
  footer{padding:40px 4% 20px}
  .footer-grid{grid-template-columns:1fr;gap:1.5rem}
  .footer-brand p{font-size:.85rem}
  footer h4{font-size:.85rem;margin-bottom:1rem}
  .footer-links{gap:.5rem}
  .footer-links a{font-size:.85rem}
  .footer-bottom{flex-direction:column;text-align:center;gap:.8rem;font-size:.78rem;padding-top:1.2rem}
}
@media (max-width:600px){
  nav{padding:0 3%;height:56px}
  .nav-logo{font-size:1.3rem}
  .mobile-menu{padding:1rem 3%;gap:1rem;top:56px}
  .mobile-menu a{font-size:.95rem}
  .hero{padding:70px 3% 30px}
  .hero h1{font-size:1.6rem}
  .hero p{font-size:.95rem;line-height:1.6}
  .hero-badge{font-size:.7rem;padding:5px 10px}
  .hero-btns{flex-direction:column;width:100%}
  .btn-primary,.btn-outline{width:100%;padding:11px 20px;font-size:.88rem;text-align:center}
  .hero-stats{flex-direction:row;gap:1rem;margin-top:1.5rem}
  .hero-stat{min-width:90px;text-align:center}
  .hero-stat .num{font-size:1.4rem}
  .hero-stat .lbl{font-size:.65rem}
  .search-section{padding:25px 3%}
  .search-box{padding:1.2rem}
  .search-box h2{font-size:1.2rem}
  .search-box p{font-size:.8rem;margin-bottom:1rem}
  .search-field label{font-size:.7rem}
  .search-field select{padding:9px 10px;font-size:.82rem}
  .btn-search{padding:10px 18px;font-size:.88rem}
  section{padding:35px 3%}
  .section-title{font-size:1.5rem}
  .section-sub{font-size:.9rem;line-height:1.6}
  .section-header{margin-bottom:1.5rem}
  .about-visual{padding:1.5rem 1.2rem}
  .about-visual .big-icon{font-size:3rem}
  .about-visual h3{font-size:1.1rem}
  .about-visual p{font-size:.85rem}
  .about-badge{padding:.6rem .9rem}
  .about-badge .num{font-size:1.3rem}
  .about-badge .txt{font-size:.65rem}
  .about-text p{font-size:.9rem}
  .about-points{gap:.5rem}
  .about-point{font-size:.85rem}
  .about-point::before{width:20px;height:20px;font-size:.7rem}
  .btn-teal{padding:10px 22px;font-size:.88rem}
  .services-grid{gap:1rem}
  .service-card{padding:1.3rem}
  .service-icon{font-size:1.8rem}
  .service-card h3{font-size:.95rem}
  .service-card p{font-size:.82rem;line-height:1.5}
  .courses-grid{grid-template-columns:repeat(2,1fr);gap:.8rem}
  .course-thumb{height:70px;font-size:2rem}
  .course-info{padding:.7rem}
  .course-info h3{font-size:.8rem}
  .btn-sm{padding:4px 10px;font-size:.72rem}
  .colleges-grid{gap:1rem}
  .college-card{border-radius:10px}
  .college-thumb{height:130px;font-size:2.5rem}
  .college-info{padding:.9rem 1rem}
  .college-info h3{font-size:.9rem}
  .college-loc{font-size:.75rem}
  .college-courses{gap:3px;margin-bottom:.7rem}
  .course-tag{font-size:.68rem;padding:2px 7px}
  .college-desc{font-size:.78rem;line-height:1.5}
  .btn-view{padding:8px;font-size:.82rem}
  .center-actions{margin-top:1.5rem}
  .inquiry-wrap{padding:1.2rem}
  .inquiry-grid{gap:.9rem}
  .form-field label{font-size:.75rem}
  .form-field input,.form-field textarea{padding:9px 11px;font-size:.85rem}
  .btn-submit{padding:11px;font-size:.92rem}
  .inquiry-alert{padding:10px 12px;font-size:.85rem}
  footer{padding:35px 3% 18px}
  .footer-grid{gap:1.2rem}
  .footer-brand p{font-size:.82rem;line-height:1.6}
  footer h4{font-size:.82rem;margin-bottom:.9rem}
  .footer-links{gap:.4rem}
  .footer-links a{font-size:.82rem}
  .footer-bottom{font-size:.75rem;padding-top:1rem}
}
@media (max-width:480px){
  nav{padding:0 2.5%}
  .hero{padding:65px 2.5% 25px}
  .hero h1{font-size:1.5rem}
  .hero-stats{gap:.8rem}
  .hero-stat{min-width:85px}
  .hero-stat .num{font-size:1.3rem}
  .search-section{padding:20px 2.5%}
  .search-box{padding:1rem}
  section{padding:30px 2.5%}
  .section-title{font-size:1.4rem}
  .section-header{margin-bottom:1.2rem}
  .courses-grid{gap:.7rem}
  .colleges-grid{gap:.9rem}
  .inquiry-wrap{padding:1rem}
  footer{padding:30px 2.5% 15px}
}
