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

:root {
  --blue:       #0a3d6b;
  --blue2:      #0d4f8a;
  --blue3:      #1565c0;
  --blue-light: #e8f0fb;
  --green:      #1a6b3a;
  --green2:     #218a4a;
  --grey:       #f5f5f5;
  --grey2:      #e8e8e8;
  --grey3:      #666;
  --text:       #1a1a1a;
  --text2:      #444;
  --white:      #ffffff;
  --border:     #ddd;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --max-w:      1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.site-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── UTILITY BAR ── */
.utility-bar { background: var(--blue); color: rgba(255,255,255,0.85); font-size: 12px; }
.utility-inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.skip-link { color: rgba(255,255,255,0.7); font-size: 11px; }
.skip-link:hover { color: #fff; }
.utility-right { display: flex; align-items: center; gap: 20px; }
.utility-apps { display: flex; gap: 16px; }
.util-app-link { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 600; }
.util-app-link:hover { color: #fff; text-decoration: none; }
.util-translate { background: none; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); font-size: 12px; padding: 3px 10px; border-radius: 4px; cursor: pointer; font-family: var(--font-body); }
.util-translate:hover { background: rgba(255,255,255,0.1); }
.util-logins { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.util-logins a { color: rgba(255,255,255,0.85); }
.util-logins a:hover { color: #fff; text-decoration: underline; }
.util-logins span { color: rgba(255,255,255,0.4); }

/* ── HEADER ── */
.site-header { background: var(--white); border-bottom: 3px solid var(--blue); position: sticky; top: 0; z-index: 200; transition: box-shadow 0.2s; }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }
.header-inner { display: flex; align-items: center; gap: 20px; height: 72px; }

/* LOGO */
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-mark { width: 50px; height: 50px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 24px; font-weight: 800; color: #fff; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--blue); line-height: 1.2; }
.logo-tag { font-size: 10px; color: var(--grey3); font-style: italic; }

/* MAIN NAV */
.main-nav { flex: 1; }
.main-nav-list { display: flex; list-style: none; gap: 2px; }
.nav-btn { background: none; border: none; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text2); cursor: pointer; padding: 8px 14px; border-radius: 4px; display: flex; align-items: center; gap: 4px; transition: all 0.18s; white-space: nowrap; }
.nav-btn:hover, .has-dropdown:hover .nav-btn { background: var(--blue-light); color: var(--blue); }
.nav-arrow { font-size: 10px; transition: transform 0.2s; }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* MEGA DROPDOWN */
.mega-dropdown { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 3px solid var(--blue); box-shadow: 0 8px 32px rgba(0,0,0,0.12); z-index: 300; padding: 28px 24px; }
.has-dropdown { position: static; }
.main-nav-list { position: relative; }
.has-dropdown:hover .mega-dropdown { display: block; }
.mega-dropdown ul { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; list-style: none; }
.mega-dropdown ul li a { display: block; padding: 8px 12px; font-size: 13px; color: var(--text2); border-radius: 4px; transition: all 0.15s; }
.mega-dropdown ul li a:hover { background: var(--blue-light); color: var(--blue); text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-search-btn { background: none; border: 1px solid var(--border); border-radius: 6px; width: 36px; height: 36px; font-size: 16px; cursor: pointer; transition: all 0.2s; }
.header-search-btn:hover { background: var(--blue-light); border-color: var(--blue); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; transition: all 0.3s; }

/* SEARCH BAR */
.search-bar { display: none; background: var(--blue); padding: 14px 0; }
.search-bar.open { display: block; }
.search-bar .site-container { display: flex; gap: 10px; align-items: center; }
.search-input { flex: 1; padding: 10px 16px; border-radius: 6px; border: none; font-size: 15px; font-family: var(--font-body); outline: none; }
.search-submit { padding: 10px 24px; background: var(--green); color: #fff; border: none; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font-body); }
.search-close { background: none; border: none; color: rgba(255,255,255,0.8); font-size: 20px; cursor: pointer; padding: 4px 8px; }

/* MOBILE OVERLAY + MENU */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 400; }
.mobile-overlay.open { display: block; }
.mobile-menu { position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: #fff; z-index: 500; overflow-y: auto; transition: right 0.3s ease; box-shadow: -4px 0 20px rgba(0,0,0,0.15); }
.mobile-menu.open { right: 0; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; background: var(--blue); color: #fff; }
.mobile-menu-title { font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.mobile-close-btn { background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; }
.mobile-nav details { border-bottom: 1px solid var(--border); }
.mobile-nav summary { padding: 14px 20px; font-weight: 600; font-size: 14px; cursor: pointer; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.mobile-nav summary::after { content: '▾'; font-size: 11px; color: var(--grey3); }
.mobile-nav details[open] summary::after { transform: rotate(180deg); }
.mobile-nav details a { display: block; padding: 10px 20px 10px 32px; font-size: 13px; color: var(--text2); border-bottom: 1px solid #f0f0f0; }
.mobile-nav details a:hover { background: var(--blue-light); color: var(--blue); text-decoration: none; }

/* ── HERO SLIDER ── */
.hero-slider { position: relative; height: 420px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.hero-smile { position: absolute; bottom: 0; right: 0; width: 50%; opacity: 0.15; pointer-events: none; }
.hero-smile img { width: 100%; }
.hero-content-wrap { position: absolute; inset: 0; display: flex; align-items: center; }
.hero-content { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; width: 100%; }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(26px, 4vw, 48px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 14px; max-width: 640px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero-content p { font-size: 16px; color: rgba(255,255,255,0.88); max-width: 520px; margin-bottom: 24px; font-weight: 300; }
.hero-btn { display: inline-block; padding: 12px 28px; background: var(--white); color: var(--blue); font-weight: 700; font-family: var(--font-head); font-size: 14px; border-radius: 4px; transition: all 0.2s; }
.hero-btn:hover { background: var(--blue); color: #fff; text-decoration: none; }
.hero-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); border: none; color: #fff; font-size: 32px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 50%; transition: background 0.2s; z-index: 10; user-select: none; }
.hero-nav:hover { background: rgba(255,255,255,0.4); }
.hero-prev { left: 16px; }
.hero-next { right: 16px; }
.hero-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.7); background: transparent; cursor: pointer; transition: all 0.2s; }
.hero-dot.active { background: #fff; border-color: #fff; }

/* ── SPOTLIGHT ── */
.spotlight-section { background: var(--blue); padding: 0; }
.spotlight-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 20px; padding: 16px 0; }
.spotlight-cards { flex: 1; position: relative; min-height: 48px; }
.spotlight-card { display: none; }
.spotlight-card.active { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.spotlight-card-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); white-space: nowrap; }
.spotlight-card h3 { font-size: 15px; font-weight: 600; margin: 0; }
.spotlight-card h3 a { color: #fff; }
.spotlight-card h3 a:hover { text-decoration: underline; }
.spotlight-read { font-size: 13px; color: rgba(255,255,255,0.75); white-space: nowrap; }
.spotlight-read:hover { color: #fff; }
.spotlight-controls { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.spotlight-controls button { background: rgba(255,255,255,0.15); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.spotlight-controls button:hover { background: rgba(255,255,255,0.3); }
.spotlight-viewall { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); padding: 6px 14px; border: 1px solid rgba(255,255,255,0.3); border-radius: 4px; }
.spotlight-viewall:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }

/* ── ICON QUICK LINKS ── */
.icon-links-section { background: var(--white); border-bottom: 1px solid var(--border); padding: 0; }
.icon-links-grid { display: grid; grid-template-columns: repeat(6, 1fr); border-left: 1px solid var(--border); }
.icon-link { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px 12px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text2); font-size: 13px; font-weight: 600; text-align: center; transition: all 0.18s; }
.icon-link:hover { background: var(--blue-light); color: var(--blue); text-decoration: none; }
.icon-link-img { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }

/* ── NEWS CALENDAR + */ ─
.news-calendar-section { background: var(--grey); padding: 48px 0; }
.news-calendar-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; }
.section-title-row { margin-bottom: 20px; }
.section-title-row h2 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--blue); padding-bottom: 12px; border-bottom: 3px solid var(--blue); }

.news-list { display: flex; flex-direction: column; }
.news-item { display: flex; flex-direction: column; gap: 4px; padding: 14px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; transition: all 0.15s; }
.news-item:hover { padding-left: 8px; }
.news-item:hover .news-item-title { color: var(--blue); }
.news-item-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 2px 10px; border-radius: 100px; }
.news-item-tag.important { background: #fde8e8; color: #c0392b; border: 1px solid #f5c6c6; }
.news-item-date { font-size: 11px; color: var(--grey3); }
.news-item-title { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }
.view-all-link { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--blue); }
.view-all-link:hover { text-decoration: underline; }

.calendar-list { display: flex; flex-direction: column; gap: 2px; }
.cal-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; transition: background 0.15s; }
.cal-item:hover { padding-left: 4px; }
.cal-date { display: flex; flex-direction: column; align-items: center; background: var(--blue); color: #fff; border-radius: 6px; padding: 6px 10px; min-width: 48px; flex-shrink: 0; }
.cal-month { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; line-height: 1; }
.cal-day { font-family: var(--font-head); font-size: 22px; font-weight: 800; line-height: 1; margin-top: 2px; }
.cal-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }
.cal-sub { font-size: 11px; color: var(--grey3); margin-top: 2px; }

/* ── FEATURE PANELS ── */
.feature-panels-section { background: var(--white); padding: 40px 0; }
.feature-panels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-panel { display: block; border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: all 0.25s; }
.feature-panel:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.14); text-decoration: none; }
.feature-panel-img { height: 180px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; position: relative; }
.feature-panel-emoji { font-size: 64px; }
.feature-panel-body { padding: 20px 22px; background: var(--white); display: flex; align-items: center; justify-content: space-between; }
.feature-panel-body h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--blue); line-height: 1.3; }
.feature-panel-link { font-size: 13px; font-weight: 600; color: var(--blue); white-space: nowrap; padding-left: 16px; flex-shrink: 0; }

/* ── QUICK LINKS TABS ── */
.quicklinks-section { background: var(--grey); padding: 40px 0 48px; }
.quicklinks-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--blue); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 3px solid var(--blue); }
.quicklinks-tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 2px solid var(--border); }
.ql-tab { background: none; border: none; border-bottom: 3px solid transparent; padding: 10px 22px; font-size: 14px; font-weight: 600; color: var(--grey3); cursor: pointer; font-family: var(--font-body); margin-bottom: -2px; transition: all 0.2s; }
.ql-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.ql-tab:hover { color: var(--blue); }
.ql-panel { display: none; }
.ql-panel.active { display: block; }
.ql-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.ql-list li a { display: flex; align-items: center; gap: 8px; padding: 10px 14px; font-size: 14px; color: var(--text2); border-radius: 4px; transition: all 0.15s; }
.ql-list li a::before { content: '›'; font-size: 16px; color: var(--blue); font-weight: 700; }
.ql-list li a:hover { background: var(--blue-light); color: var(--blue); text-decoration: none; }

 FOOTER PROMOS ── *//* 
.footer-promos { background: var(--blue); padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-promos-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.footer-promo { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; text-decoration: none; color: #fff; transition: background 0.2s; }
.footer-promo:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
.footer-promo-logo { font-size: 36px; flex-shrink: 0; }
.footer-promo strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.footer-promo p { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.5; }

/* ── FOOTER ── */
.site-footer { background: var(--blue); color: rgba(255,255,255,0.8); padding: 36px 0 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-inner { display: flex; flex-direction: column; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo-mark { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 20px; font-weight: 800; color: #fff; flex-shrink: 0; }
.footer-logo-text { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff; }
.footer-address { font-size: 13px; color: rgba(255,255,255,0.65); font-style: normal; line-height: 1.7; }
.footer-address a { color: rgba(255,255,255,0.8); }
.footer-address a:hover { color: #fff; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 24px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 600; }
.footer-nav a:hover { color: #fff; }
.footer-legal-nav { display: flex; gap: 20px; }
.footer-legal-nav a { font-size: 12px; color: rgba(255,255,255,0.6); }
.footer-legal-nav a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--blue); padding: 56px 0 48px; }
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.page-hero-eyebrow { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 560px; font-weight: 300; }

/* ── CONTENT PAGES ── */
.content-section { padding: 48px 0; }
.content-section.alt { background: var(--grey); }
.content-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.content-section h2 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--blue); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 3px solid var(--blue); }
.content-section h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.content-section p { font-size: 15px; color: var(--text2); line-height: 1.75; margin-bottom: 16px; }

/* CARDS / GRIDS */
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.22s; text-decoration: none; color: inherit; display: block; }
.card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-3px); text-decoration: none; }
.card-icon { height: 120px; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.card-body { padding: 20px; }
.card-body h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.card-body p { font-size: 13px; color: var(--text2); line-height: 1.6; }
.card-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); background: rgba(26,107,58,0.1); border: 1px solid rgba(26,107,58,0.2); padding: 2px 10px; border-radius: 100px; margin-bottom: 8px; }

.list-item { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border: 1px solid var(--border); border-radius: 6px; background: var(--white); text-decoration: none; color: inherit; transition: all 0.18s; margin-bottom: 8px; }
.list-item:hover { border-color: var(--blue); background: var(--blue-light); text-decoration: none; }
.list-item-icon { width: 40px; height: 40px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.list-item-name { font-weight: 600; font-size: 14px; color: var(--blue); }
.list-item-sub { font-size: 12px; color: var(--grey3); margin-top: 2px; }
.list-item-arrow { margin-left: auto; color: var(--grey3); }

/* STAFF CARDS */
.staff-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px 20px; text-align: center; transition: all 0.2s; }
.staff-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.staff-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--blue); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 22px; font-weight: 800; color: #fff; }
.staff-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 3px; }
.staff-title { font-size: 12px; color: var(--grey3); margin-bottom: 10px; }
.staff-email { font-size: 12px; color: var(--blue); font-weight: 600; }
.staff-email:hover { text-decoration: underline; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-item { display: flex; gap: 14px; padding: 18px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; margin-bottom: 12px; }
.contact-icon { width: 38px; height: 38px; background: var(--blue); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; color: #fff; }
.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--grey3); margin-bottom: 3px; }
.contact-val { font-size: 14px; font-weight: 600; color: var(--text); }
.contact-val a { color: var(--blue); }
.contact-form { background: var(--grey); border: 1px solid var(--border); border-radius: 8px; padding: 32px; }
.contact-form h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group textarea, .form-group select { background: var(--white); border: 1px solid var(--border); border-radius: 6px; color: var(--text); font-family: var(--font-body); font-size: 14px; padding: 10px 13px; outline: none; transition: border-color 0.2s; width: 100%; -webkit-appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(10,61,107,0.1); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit { width: 100%; padding: 13px; background: var(--blue); color: #fff; border: none; border-radius: 6px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: var(--font-body); transition: background 0.2s; margin-top: 6px; }
.form-submit:hover { background: var(--blue2); }

/* BREADCRUMB */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--grey3); }
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: var(--grey3); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .icon-links-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-panels-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .news-calendar-grid { grid-template-columns: 1fr; }
  .footer-promos-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .utility-bar { display: none; }
  .hero-slider { height: 320px; }
  .hero-content h1 { font-size: 22px; }
  .icon-links-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-panels-grid { grid-template-columns: 1fr; }
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .ql-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .icon-links-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
