:root {
  --navy: #0f2b4d;
  --navy-2: #183a5d;
  --blue: #1d4e89;
  --gold: #c79b2b;
  --gold-soft: #f3e0a8;
  --cream: #f8f7f2;
  --text: #213241;
  --muted: #64748b;
  --border: #e3e8ef;
  --shadow: 0 20px 45px rgba(9, 24, 40, 0.09);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', 'Segoe UI', Arial, sans-serif; color: var(--text); background: linear-gradient(180deg, #fdfdfc 0%, #f5f8fb 100%); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(15,43,77,0.08); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--navy); }
.brand img { width: 118px; height: 118px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1.1; }
.brand small { font-size: 0.76rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.nav { display: flex; gap: 18px; align-items: center; }
.nav a { color: var(--navy-2); font-weight: 600; padding: 8px 0; position: relative; }
.nav a.active, .nav a:hover { color: var(--gold); }
.nav a.active::after, .nav a:hover::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--gold); }
.compliance-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  margin-left: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #d8a63a);
  color: #14212d;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(199,155,43,0.22);
}
.login-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  margin-left: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #d8a63a);
  color: #14212d;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(199,155,43,0.22);
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  margin-left: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(37,211,102,0.22);
}
.compliance-btn:hover, .login-btn:hover, .whatsapp-btn:hover { transform: translateY(-1px); }
.hero { padding: 88px 0 72px; background: linear-gradient(135deg, rgba(15,43,77,0.98), rgba(29,78,137,0.96)); color: white; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
.eyebrow { margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.78rem; font-weight: 700; color: var(--gold-soft); }
.hero h1, .page-hero h1 { font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1.12; margin: 0 0 16px; color: white; }
.lead, .page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.87); max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; font-weight: 700; transition: transform 180ms ease, box-shadow 180ms ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #14212d; box-shadow: 0 10px 20px rgba(199,155,43,0.25); }
.btn-secondary { background: rgba(255,255,255,0.14); color: white; border: 1px solid rgba(255,255,255,0.2); }
.hero-card, .info-panel, .card { background: white; color: var(--text); border-radius: 20px; padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.hero-card h2, .info-panel h3, .card h3 { margin-top: 0; color: var(--navy); }
.hero-card ul { margin: 0; padding-left: 18px; line-height: 1.8; }
.section { padding: 72px 0; }
.section-alt { background: linear-gradient(180deg, #f7f9fc 0%, #f3f6fa 100%); }
.section-heading { margin-bottom: 28px; }
.section-heading h2, .two-col h2 { color: var(--navy); font-size: 1.8rem; margin: 0 0 8px; }
.cards { display: grid; gap: 18px; }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card p, .two-col p, .info-panel p, .contact-card p { color: var(--muted); }
.page-hero { padding: 72px 0 40px; background: linear-gradient(135deg, var(--navy), var(--blue)); }
.page-hero h1 { color: white; }
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
.contact-card { display: flex; flex-direction: column; gap: 12px; }
.footer { padding: 24px 0 36px; color: var(--muted); background: #f7f9fc; border-top: 1px solid var(--border); }
.footer-wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer .compliance-btn { margin-left: 0; }
@media (max-width: 900px) { .hero-grid, .two-col, .three-up, .four-up { grid-template-columns: 1fr; } .nav-wrap { flex-direction: column; align-items: flex-start; gap: 10px; } .nav { gap: 12px; flex-wrap: wrap; } }
@media (max-width: 640px) { .hero { padding-top: 56px; } .section { padding: 56px 0; } .btn { width: 100%; text-align: center; } .hero-actions { flex-direction: column; } }


/* Qualifications & accreditations grid */
.quals-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; margin-top: 8px; }
.qual { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform 180ms ease, box-shadow 180ms ease; }
.qual:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(9,24,40,0.14); }
.qual img { width: 100%; height: 220px; object-fit: contain; background: #f1f5f9; padding: 10px; border-bottom: 1px solid var(--border); }
.qual span { padding: 12px 14px; font-weight: 700; color: var(--navy); font-size: 0.9rem; }
@media (max-width: 900px) { .quals-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 480px) { .quals-grid { grid-template-columns: 1fr; } }
