@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --primary:    #004B87;
  --primary-dk: #003260;
  --accent:     #00A86B;
  --accent-lt:  #e6f7f1;
  --light-bg:   #f4f6f9;
  --border:     #dce3ec;
  --text:       #1a1a2e;
  --muted:      #5a6a7e;
  --white:      #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); font-size: 15px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.sim-banner { background: #f39c12; color: #1a1a1a; text-align: center; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .5px; padding: 7px 20px; }

.topbar { background: var(--primary-dk); color: rgba(255,255,255,.75); font-size: 12px; font-family: 'Montserrat', sans-serif; }
.topbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 6px 20px; }
.topbar a { color: rgba(255,255,255,.75); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; }

.navbar { background: var(--primary); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.18); }
.navbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; height: 68px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 42px; object-fit: contain; }
.brand-sep { width: 1px; height: 32px; background: rgba(255,255,255,.3); }
.brand-name { color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.2; }
.brand-sub { color: rgba(255,255,255,.7); font-size: 11px; font-weight: 400; }

.nav-menu { display: flex; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.88); font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; padding: 0 16px; height: 68px; transition: background .2s; }
.nav-menu > li > a:hover { background: rgba(255,255,255,.12); color: #fff; }
.dropdown { display: none; position: absolute; top: 68px; left: 0; background: #fff; min-width: 220px; box-shadow: 0 6px 20px rgba(0,0,0,.14); border-top: 3px solid var(--accent); z-index: 200; }
.nav-menu > li:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 11px 18px; font-size: 13px; color: var(--text); border-bottom: 1px solid var(--border); transition: background .15s; }
.dropdown a:hover { background: var(--accent-lt); color: var(--accent); }
.nav-cta { background: var(--accent) !important; color: #fff !important; border-radius: 4px; padding: 8px 18px !important; height: auto !important; margin-left: 10px; }
.nav-cta:hover { background: #007f52 !important; }

.hero { background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 60%, #0066b2 100%); padding: 70px 20px 80px; position: relative; overflow: hidden; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 50px; position: relative; }
.hero-text { flex: 1; }
.hero-tag { display: inline-block; background: var(--accent); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; margin-bottom: 18px; }
.hero h1 { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 38px; font-weight: 700; line-height: 1.25; margin-bottom: 16px; }
.hero h1 span { color: #7ecfff; }
.hero p { color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.7; max-width: 520px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s; border: 2px solid transparent; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #007f52; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.hero-card { background: rgba(255,255,255,.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; padding: 28px; min-width: 280px; flex-shrink: 0; }
.hero-card h3 { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 15px; margin-bottom: 16px; }
.quick-links { display: flex; flex-direction: column; gap: 10px; }
.quick-link { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.12); border-radius: 6px; padding: 10px 14px; color: #fff; font-size: 13px; transition: background .2s; }
.quick-link:hover { background: rgba(255,255,255,.22); }
.quick-link .ql-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }

.alert-strip { background: var(--accent-lt); border-top: 3px solid var(--accent); padding: 12px 20px; }
.alert-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--primary-dk); }
.alert-badge { background: var(--accent); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; padding: 3px 10px; border-radius: 2px; white-space: nowrap; }

.section { padding: 60px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 40px; }
.section-header h2 { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.section-header h2 span { color: var(--accent); }
.section-header p { color: var(--muted); font-size: 15px; }
.divider { width: 48px; height: 4px; background: var(--accent); border-radius: 2px; margin: 10px 0; }
.section-alt { background: var(--light-bg); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px 24px; transition: box-shadow .25s, transform .25s; border-top: 4px solid var(--primary); }
.service-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
.service-card.accent-top { border-top-color: var(--accent); }
.service-icon { width: 52px; height: 52px; border-radius: 10px; background: var(--accent-lt); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.service-card h3 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.card-link { font-size: 13px; color: var(--accent); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.card-link:hover { text-decoration: underline; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2px; background: var(--border); border-radius: 8px; overflow: hidden; }
.stat-item { background: #fff; padding: 32px 24px; text-align: center; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 700; color: var(--primary); }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.news-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: box-shadow .2s; }
.news-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.09); }
.news-thumb { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.news-thumb.bg1 { background: linear-gradient(135deg, #e8f0fe, #c5d8f8); }
.news-thumb.bg2 { background: linear-gradient(135deg, #e6f7f1, #b2e8d2); }
.news-thumb.bg3 { background: linear-gradient(135deg, #fef3e2, #fddcaa); }
.news-body { padding: 20px; }
.news-meta { font-size: 11px; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.news-tag-badge { background: var(--accent-lt); color: var(--accent); padding: 2px 8px; border-radius: 2px; font-weight: 600; }
.news-card h4 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.45; margin-bottom: 8px; }
.news-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.process-steps { display: flex; gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 28px; right: 28px; height: 2px; background: var(--border); z-index: 0; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 4px solid #fff; box-shadow: 0 0 0 2px var(--primary); margin-bottom: 14px; }
.step-num.done { background: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.step h4 { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.step p { font-size: 12px; color: var(--muted); line-height: 1.5; }

.contact-bar { background: var(--primary); padding: 40px 20px; }
.contact-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.contact-bar h2 { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; }
.contact-bar p { color: rgba(255,255,255,.75); font-size: 14px; margin-top: 4px; }
.contact-channels { display: flex; gap: 16px; flex-wrap: wrap; }
.channel { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.1); border-radius: 6px; padding: 12px 18px; color: #fff; }
.channel-icon { font-size: 22px; }
.channel span { display: block; font-size: 11px; opacity: .7; }
.channel strong { font-family: 'Montserrat', sans-serif; font-size: 14px; }

.footer { background: var(--primary-dk); color: rgba(255,255,255,.75); padding: 50px 20px 20px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 36px; object-fit: contain; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 13px; line-height: 1.65; max-width: 260px; }
.footer-col h5 { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.45); }
.footer-badges { display: flex; gap: 10px; }
.badge { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); padding: 4px 10px; border-radius: 3px; font-size: 11px; color: rgba(255,255,255,.5); }

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; }
  .hero-card { min-width: auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 24px; }
  .process-steps::before { display: none; }
  .nav-menu { display: none; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle { display: flex; gap: 4px; }
.lang-btn {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 3px;
  cursor: pointer; transition: all .2s;
}
.lang-btn:hover { background: rgba(255,255,255,.22); color: #fff; }
.lang-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
