/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #1a2a3a; background: #fff; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Brand Colors ── */
:root {
  --blue-dark:   #023e8a;
  --blue-mid:    #0077b6;
  --blue-light:  #00b4d8;
  --blue-pale:   #caf0f8;
  --blue-bg:     #e8f4fd;
  --steel:       #023e8a;
  --steel-mid:   #0077b6;
  --teal:        #023e8a;
  --teal-mid:    #0077b6;
  --green-mid:   #0077b6;
  --white:       #ffffff;
  --text-dark:   #1a2a3a;
  --text-mid:    #3a5068;
  --text-light:  #6a8aaa;
  --gray-bg:     #f5f7fa;
}

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-gray { background: var(--gray-bg); }
.section-blue { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%); }
.section-steel { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%); }
.section-teal { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%); }
.section-dark { background: #0d1f2d; }

/* ── Typography ── */
.eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.6rem; color: var(--blue-mid); }
.eyebrow.light { color: var(--blue-pale); }
.eyebrow.steel { color: #a8d4f5; }
.eyebrow.teal { color: #7ef5c8; }
.section-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.6rem; color: var(--blue-mid); }
h2.section-title { font-size: 2.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: var(--text-dark); }
h2.section-title.light { color: #fff; }
p.section-sub { font-size: 1.05rem; color: var(--text-mid); max-width: 640px; margin-bottom: 2.5rem; }
p.section-sub.light { color: rgba(255,255,255,0.82); }

/* ════════════════════════════════
   NAV
════════════════════════════════ */
.nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid #dde8f5; box-shadow: 0 2px 16px rgba(0,60,140,0.07); }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-size: 1.3rem; font-weight: 800; color: var(--blue-dark); display: flex; align-items: center; gap: 0.4rem; }
.logo-mark { color: var(--blue-light); }
.logo-inc { font-weight: 400; color: var(--text-light); font-size: 1.1rem; }
/* SVG Logo */
.logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo-svg { height: 42px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links > a, .nav-dropdown > .nav-link { font-size: 0.93rem; font-weight: 500; color: var(--text-mid); padding: 0.5rem 0.8rem; border-radius: 6px; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.nav-links > a:hover, .nav-dropdown > .nav-link:hover, .nav-links > a.active { color: var(--blue-mid); background: var(--blue-bg); }
.nav-portal { background: var(--steel) !important; color: #fff !important; padding: 0.5rem 1.1rem !important; border-radius: 7px !important; font-weight: 700 !important; }
.nav-portal:hover { background: var(--blue-dark) !important; color: #fff !important; }
.nav-cta { background: var(--blue-mid) !important; color: #fff !important; padding: 0.5rem 1.1rem !important; border-radius: 7px !important; font-weight: 700 !important; margin-left: 0.3rem; }
.nav-cta:hover { background: var(--blue-dark) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { cursor: pointer; display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown > .nav-link::after { content: '▾'; font-size: 0.7rem; }
.dropdown-menu { display: block; visibility: hidden; opacity: 0; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid #dde8f5; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,40,120,0.12); min-width: 260px; padding: 0.5rem; z-index: 300; transition: opacity 0.2s ease, visibility 0.2s ease; pointer-events: none; padding-top: 12px; margin-top: -4px; }
.nav-dropdown:hover .dropdown-menu { visibility: visible; opacity: 1; pointer-events: auto; }
.dropdown-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.7rem 1rem; border-radius: 8px; transition: background 0.15s; }
.dropdown-item:hover { background: var(--blue-bg); }
.dropdown-item-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.dropdown-item-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.dropdown-item-text span { display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 0.05rem; }
.dropdown-divider { height: 1px; background: #eef3f9; margin: 0.4rem 0; }

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn { display: inline-block; padding: 0.8rem 1.8rem; border-radius: 8px; font-weight: 700; font-size: 0.95rem; transition: all 0.2s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--blue-mid); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,119,182,0.3); }
.btn-steel { background: var(--blue-mid); color: #fff; }
.btn-steel:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-teal { background: var(--blue-mid); color: #fff; }
.btn-teal:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--blue-dark); }
.btn-white:hover { background: var(--blue-pale); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.75); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-outline-dark { background: transparent; color: var(--blue-mid); border: 2px solid var(--blue-mid); }
.btn-outline-dark:hover { background: var(--blue-bg); }

/* ════════════════════════════════
   HERO VARIANTS
════════════════════════════════ */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-sm { min-height: 380px; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; }
.hero-overlay-blue { background: linear-gradient(105deg, rgba(2,62,138,0.92) 0%, rgba(0,100,180,0.75) 55%, rgba(0,180,216,0.4) 100%); }
.hero-overlay-steel { background: linear-gradient(105deg, rgba(2,62,138,0.92) 0%, rgba(0,100,180,0.75) 55%, rgba(0,180,216,0.4) 100%); }
.hero-overlay-teal { background: linear-gradient(105deg, rgba(2,62,138,0.92) 0%, rgba(0,100,180,0.75) 55%, rgba(0,180,216,0.4) 100%); }
.hero-overlay-green { background: linear-gradient(105deg, rgba(2,62,138,0.92) 0%, rgba(0,100,180,0.75) 55%, rgba(0,180,216,0.4) 100%); }
.hero-content { position: relative; z-index: 2; padding: 6rem 1.5rem; width: 100%; }
.hero-content-inner { max-width: 720px; margin-left: calc((100vw - 1140px) / 2); padding-left: 1.5rem; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-pale); margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: var(--blue-pale); }
.hero-sub { font-size: 1.1rem; line-height: 1.75; color: rgba(255,255,255,0.87); margin-bottom: 2rem; max-width: 560px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; }
.hero-wave svg { width: 100%; height: 65px; display: block; }

/* ════════════════════════════════
   PAGE HERO (Interior pages)
════════════════════════════════ */
.page-hero { position: relative; min-height: 340px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(2,62,138,0.9), rgba(0,100,180,0.8)); }
.page-hero-content { position: relative; z-index: 2; text-align: center; padding: 4rem 1.5rem; max-width: 720px; margin: 0 auto; }
.page-hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 0.8rem; }
.page-hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.7; }

/* ════════════════════════════════
   ABOUT INTRO
════════════════════════════════ */
.about-intro { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: center; }
.about-img-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,40,100,0.12); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.about-text h2 { font-size: 1.8rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 1rem; }
.about-text p { color: var(--text-mid); line-height: 1.75; margin-bottom: 1rem; }

/* ════════════════════════════════
   FOUNDER CARD
════════════════════════════════ */
.founder-card { display: flex; gap: 2.5rem; align-items: flex-start; max-width: 800px; margin: 0 auto; }
.founder-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--blue-bg); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }

/* ════════════════════════════════
   VALUES GRID
════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.value-card { border-radius: 14px; padding: 1.8rem; border-top: 3px solid var(--blue-pale); }
.val-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.value-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; line-height: 1.7; }

@media (max-width: 960px) {
  .about-intro { grid-template-columns: 1fr; }
  .founder-card { flex-direction: column; align-items: center; text-align: center; }
}

/* ════════════════════════════════
   TRUST BAR
════════════════════════════════ */
.trust-bar { background: #fff; border-bottom: 1px solid #dde8f5; padding: 0.9rem 1.5rem; }
.trust-items { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.87rem; font-weight: 600; color: var(--blue-dark); }
.trust-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--blue-mid); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.65rem; font-weight: 900; flex-shrink: 0; }

/* ════════════════════════════════
   DIVISION CARDS (Homepage)
════════════════════════════════ */
.division-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.division-card { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,30,80,0.1); transition: transform 0.25s, box-shadow 0.25s; position: relative; min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; }
.division-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,30,80,0.18); }
.division-card-bg { position: absolute; inset: 0; }
.division-card-bg img { width: 100%; height: 100%; object-fit: cover; }
.division-card-overlay { position: absolute; inset: 0; }
.division-card-body { position: relative; z-index: 2; padding: 2rem; color: #fff; }
.division-card-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.division-card-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.7rem; border-radius: 4px; margin-bottom: 0.6rem; }
.division-card-body h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.4rem; }
.division-card-body p { font-size: 0.9rem; color: rgba(255,255,255,0.82); margin-bottom: 1rem; }
.division-card-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; font-weight: 700; color: #fff; border-bottom: 2px solid rgba(255,255,255,0.5); padding-bottom: 0.1rem; transition: border-color 0.2s; }
.division-card:hover .division-card-link { border-color: #fff; }

/* ════════════════════════════════
   PHOTO CARDS
════════════════════════════════ */
.photo-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.photo-card { border-radius: 14px; overflow: hidden; box-shadow: 0 3px 16px rgba(0,40,100,0.09); transition: transform 0.25s, box-shadow 0.25s; background: var(--blue-bg); }
.photo-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,40,100,0.16); }
.photo-card-img { width: 100%; height: 190px; object-fit: cover; background: linear-gradient(135deg, #90e0ef, #0077b6); }
.photo-card-body { padding: 1.3rem; }
.photo-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; }
.photo-card-body p { font-size: 0.88rem; color: var(--text-mid); }

/* ════════════════════════════════
   SERVICE ROWS
════════════════════════════════ */
.service-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.service-row.reverse .service-row-img { order: 2; }
.service-row.reverse .service-row-text { order: 1; }
.service-row-img { overflow: hidden; background: linear-gradient(135deg, var(--blue-bg), #7ec8e3); }
.service-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-row:hover .service-row-img img { transform: scale(1.03); }
.service-row-text { background: var(--gray-bg); padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.service-row-text h2 { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.8rem; }
.service-row-text p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }
.service-list { list-style: none; padding: 0; }
.service-list li { padding: 0.28rem 0; color: var(--text-mid); font-size: 0.93rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.service-list li::before { content: '✓'; color: var(--blue-mid); font-weight: 700; flex-shrink: 0; }

/* ════════════════════════════════
   SPLIT SECTION
════════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.split-img { overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-text { display: flex; flex-direction: column; justify-content: center; padding: 4rem; }
.split-text h2 { font-size: 1.9rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.split-text p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }

/* ════════════════════════════════
   APP / PORTAL FEATURE
════════════════════════════════ */
.app-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.app-mockup { background: linear-gradient(135deg, #0d1f2d, #1e3a5f); border-radius: 20px; padding: 2rem; box-shadow: 0 20px 60px rgba(0,20,60,0.3); }
.app-mockup-bar { display: flex; gap: 0.4rem; margin-bottom: 1.5rem; }
.app-mockup-bar span { width: 12px; height: 12px; border-radius: 50%; }
.app-mockup-bar span:nth-child(1) { background: #ff5f57; }
.app-mockup-bar span:nth-child(2) { background: #febc2e; }
.app-mockup-bar span:nth-child(3) { background: #28c840; }
.app-screen { background: #0a1628; border-radius: 12px; padding: 1.5rem; font-family: monospace; font-size: 0.82rem; }
.app-header { color: var(--blue-pale); font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.6rem; }
.app-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.app-row-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.app-row-value { font-size: 0.8rem; font-weight: 700; }
.status-green { color: #4ade80; }
.status-yellow { color: #fbbf24; }
.status-red { color: #f87171; }
.app-text h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.app-text p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; line-height: 1.75; }
.app-features-list { list-style: none; margin: 1.2rem 0; }
.app-features-list li { display: flex; align-items: flex-start; gap: 0.6rem; color: rgba(255,255,255,0.85); font-size: 0.93rem; padding: 0.35rem 0; }
.app-features-list li::before { content: '▸'; color: var(--blue-pale); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

/* ════════════════════════════════
   STATS
════════════════════════════════ */
.stats-bar { padding: 3.5rem 1.5rem; }
.stats-inner { display: flex; flex-wrap: wrap; justify-content: center; }
.stat { text-align: center; padding: 1rem 3rem; border-right: 1px solid rgba(255,255,255,0.15); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 2.6rem; font-weight: 900; color: var(--blue-pale); display: block; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }

/* ════════════════════════════════
   GALLERY STRIP
════════════════════════════════ */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 240px; overflow: hidden; }
.gallery-strip-item { overflow: hidden; background: var(--blue-bg); }
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-strip-item:hover img { transform: scale(1.06); }

/* ════════════════════════════════
   CTA BANNER
════════════════════════════════ */
.cta-banner { position: relative; overflow: hidden; padding: 5.5rem 1.5rem; text-align: center; }
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(2,62,138,0.92), rgba(0,100,180,0.85)); }
.cta-banner-content { position: relative; z-index: 2; color: #fff; }
.cta-banner-content h2 { font-size: 2.3rem; font-weight: 900; margin-bottom: 0.8rem; }
.cta-banner-content p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ════════════════════════════════
   PORTAL PAGE
════════════════════════════════ */
.portal-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0d1f2d 0%, #1e3a5f 100%); padding: 2rem; }
.portal-card { background: #fff; border-radius: 20px; padding: 3rem; width: 100%; max-width: 440px; box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.portal-logo { text-align: center; margin-bottom: 2rem; }
.portal-logo .logo { justify-content: center; font-size: 1.4rem; }
.portal-title { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); text-align: center; margin-bottom: 0.4rem; }
.portal-sub { font-size: 0.93rem; color: var(--text-light); text-align: center; margin-bottom: 2rem; }
.portal-form .form-group { margin-bottom: 1.2rem; }
.portal-form label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.35rem; }
.portal-form input { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #ccddf0; border-radius: 8px; font-size: 0.95rem; outline: none; transition: border-color 0.2s; font-family: inherit; }
.portal-form input:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(0,119,182,0.1); }
.portal-submit { width: 100%; padding: 0.9rem; background: var(--blue-mid); color: #fff; border: none; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s; font-family: inherit; margin-top: 0.5rem; }
.portal-submit:hover { background: var(--blue-dark); }
.portal-note { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-light); }
.portal-coming { background: #fff8e1; border: 1px solid #ffe082; border-radius: 10px; padding: 1rem 1.2rem; margin-top: 1.5rem; text-align: center; font-size: 0.88rem; color: #7a5c00; }

/* ════════════════════════════════
   CONTACT FORM
════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; padding: 5rem 0; }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.contact-info p { color: var(--text-mid); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-bg); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; color: var(--text-dark); font-weight: 700; margin-bottom: 0.1rem; }
.contact-detail-text span { color: var(--text-mid); font-size: 0.93rem; }
.contact-form { background: var(--gray-bg); border: 1px solid #dde8f5; border-radius: 20px; padding: 2.5rem; }
.contact-form h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.35rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid #c8e0f5; border-radius: 8px; font-size: 0.95rem; color: var(--text-dark); background: #fff; outline: none; transition: border-color 0.2s; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(0,119,182,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 0.9rem; background: var(--blue-mid); color: #fff; border: none; border-radius: 10px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s; font-family: inherit; }
.form-submit:hover { background: var(--blue-dark); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: #0a1628; color: rgba(255,255,255,0.8); padding: 4rem 1.5rem 0; }
.footer-inner { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer .logo { color: #fff; font-size: 1.25rem; margin-bottom: 0.8rem; display: block; }
.footer-tagline { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-pale); margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 0.55rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding: 1.5rem 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 960px) {
  .division-cards { grid-template-columns: 1fr 1fr; }
  .app-feature, .split, .service-row, .contact-grid { grid-template-columns: 1fr; }
  .service-row.reverse .service-row-img, .service-row.reverse .service-row-text { order: unset; }
  .split-img { height: 300px; }
  .hero-content-inner { margin-left: 0; }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { gap: 0; }
  .stat { padding: 1rem 1.5rem; }
}
@media (max-width: 600px) {
  .division-cards { grid-template-columns: 1fr; }
  .nav-links > a:not(.nav-cta):not(.nav-portal) { display: none; }
  .nav-dropdown { display: none; }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: 180px; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .split-text, .service-row-text { padding: 2.5rem 1.5rem; }
  .app-mockup { display: none; }
}
