/* ═══ CYRO — Shared Stylesheet ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary:   #0d7abf;
  --primary-dark: #084d7a;
  --primary-deep: #063a5c;
  --primary-light: #29a3e0;
  --accent:    #f4a623;
  --dark:      #1a2332;
  --light:     #f4f7fa;
  --border:    #e3e9ef;
  --text:      #3d4852;
  --muted:     #6b7a89;
  --white:     #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Merriweather', Georgia, serif; color: var(--dark); line-height: 1.3; }

img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── UTILITY BAR ── */
.utility-bar {
  background: var(--primary-deep);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 7px 0;
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; }
.utility-bar a { color: rgba(255,255,255,0.85); text-decoration: none; margin-left: 18px; }
.utility-bar a:hover { color: #fff; }
.utility-left span { margin-right: 22px; }
.utility-left i { margin-right: 6px; color: var(--accent); }

/* ── HEADER / NAV ── */
header.site-header {
  background: #fff;
  border-bottom: 3px solid var(--primary);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1180px; margin: 0 auto; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 52px; height: 52px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px; letter-spacing: -0.5px;
  font-family: 'Source Sans 3', sans-serif;
}
.brand-text { line-height: 1.15; }
.brand-text .name { display: block; font-size: 21px; font-weight: 800; color: var(--primary-dark); font-family: 'Source Sans 3', sans-serif; }
.brand-text .sub  { display: block; font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: 1.2px; text-transform: uppercase; }

nav.main-nav ul { display: flex; list-style: none; gap: 2px; }
nav.main-nav a {
  display: block;
  padding: 9px 11px;
  text-decoration: none;
  color: var(--dark);
  font-size: 14px; font-weight: 600;
  white-space: nowrap;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
@media (min-width: 1025px) and (max-width: 1150px) {
  nav.main-nav a { padding: 9px 8px; font-size: 13px; }
  .header-inner { padding-left: 16px; padding-right: 16px; }
}
nav.main-nav a:hover  { background: var(--light); color: var(--primary); }
nav.main-nav a.active { background: var(--primary); color: #fff; }

.header-cta { display: flex; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 26px;
  font-size: 14.5px; font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Source Sans 3', sans-serif;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #d68f14; }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,0.6); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--primary-dark); }

.menu-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--primary-dark); cursor: pointer; }

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
  background: linear-gradient(rgba(6,58,92,0.82), rgba(8,77,122,0.82)), var(--primary-dark);
  background-size: cover; background-position: center;
  color: #fff;
  padding: 72px 0 56px;
}
.page-banner h1 { color: #fff; font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 10px; }
.page-banner p  { max-width: 640px; font-size: 17px; opacity: 0.9; }

.breadcrumbs { font-size: 13px; margin-bottom: 18px; opacity: 0.85; }
.breadcrumbs a { color: var(--accent); text-decoration: none; }
.breadcrumbs span { margin: 0 8px; }

/* ── SECTIONS ── */
section { padding: 72px 0; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: 'Source Sans 3', sans-serif;
}
.section-head h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 14px; }
.section-head p  { color: var(--muted); font-size: 16px; }

.bg-light { background: var(--light); }
.bg-primary-deep { background: linear-gradient(135deg, var(--primary-deep), var(--primary-dark)); color: #fff; }
.bg-primary-deep h2, .bg-primary-deep h3 { color: #fff; }

/* ── CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(8,77,122,0.13); }
.card-img { height: 210px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-body .tag {
  display: inline-block;
  background: rgba(13,122,191,0.1);
  color: var(--primary);
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 12px;
}
.card-body h3 { font-size: 18px; margin-bottom: 10px; }
.card-body p  { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.read-more { font-size: 14px; font-weight: 700; color: var(--primary); text-decoration: none; }
.read-more i { font-size: 12px; margin-left: 4px; transition: margin 0.2s; }
.read-more:hover i { margin-left: 8px; }

/* icon feature */
.icon-feature { display: flex; gap: 16px; align-items: flex-start; }
.icon-feature .ic {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(13,122,191,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 19px;
}
.icon-feature h4 { font-size: 15.5px; margin-bottom: 5px; font-family: 'Source Sans 3', sans-serif; font-weight: 700; }
.icon-feature p  { font-size: 13.5px; color: var(--muted); }

/* stats */
.stat-band { background: var(--primary); color: #fff; padding: 52px 0; }
.stat-band .grid-4 { text-align: center; }
.stat-num { font-size: 44px; font-weight: 800; font-family: 'Source Sans 3', sans-serif; color: #fff; line-height: 1.1; }
.stat-lbl { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.85; margin-top: 6px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(120deg, var(--accent), #d68f14);
  color: #fff;
  padding: 56px 0;
}
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; font-size: 1.7rem; margin-bottom: 6px; }
.cta-strip p  { opacity: 0.92; font-size: 15px; }
.cta-strip .btn { background: #fff; color: #b57708; }
.cta-strip .btn:hover { background: var(--primary-deep); color: #fff; }

/* ── PARTNERS ── */
.partner-strip { padding: 56px 0; border-top: 1px solid var(--border); }
.partner-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 20px;
}
.partner-box {
  min-width: 170px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 26px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}
.partner-box:hover { box-shadow: 0 10px 26px rgba(8,77,122,0.12); transform: translateY(-4px); }
.partner-box .pl-icon { font-size: 26px; color: var(--primary); margin-bottom: 10px; }
.partner-box .pl-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.partner-box .pl-type { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

/* ── FORMS ── */
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 13.5px; font-weight: 700; color: var(--dark); }
.form-field input, .form-field textarea, .form-field select {
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: inherit; font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--primary); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
footer.site-footer { background: var(--primary-deep); color: rgba(255,255,255,0.75); }
.footer-main { padding: 64px 0 44px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; }
.footer-main h4 { color: #fff; font-size: 15px; margin-bottom: 18px; font-family: 'Source Sans 3', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.footer-main ul { list-style: none; }
.footer-main ul li { margin-bottom: 9px; }
.footer-main a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; }
.footer-main a:hover { color: var(--accent); }
.footer-about p { font-size: 14px; margin: 14px 0 20px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8); font-size: 14px;
  text-decoration: none; transition: all 0.25s;
}
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-contact li { display: flex; gap: 10px; font-size: 14px; margin-bottom: 12px; }
.footer-contact i { color: var(--accent); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  font-size: 13px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ── MOBILE NAV ── */
#mobileNav {
  display: flex; flex-direction: column;
  position: fixed; top: 0; right: -300px;
  width: 280px; height: 100vh;
  background: #fff;
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  z-index: 2000;
  padding: 24px;
  transition: right 0.3s ease;
}
#mobileNav.open { right: 0; }
#mobileNav a {
  padding: 13px 8px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600; font-size: 15px;
  border-bottom: 1px solid var(--border);
}
#mobileNav a:hover { color: var(--primary); }
#mobileNav .close-btn { align-self: flex-end; background: none; border: none; font-size: 22px; color: var(--dark); cursor: pointer; margin-bottom: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav.main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .utility-bar .utility-right { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
  .page-banner { padding: 52px 0 40px; }
}
