/* ============================================
   SimpliSmart Solution — Stylesheet
   ============================================ */

:root {
  /* Colors */
  --navy-dark: #0a1c33;
  --navy-mid: #0d2545;
  --navy-light: #10305c;
  --lime: #8dc63f;
  --lime-dark: #74ab2c;
  --white: #ffffff;
  --gray-100: #f5f7fa;
  --gray-200: #e9edf2;
  --gray-400: #9aa5b1;
  --gray-600: #64707d;
  --gray-800: #2b3542;
  --text-dark: #14212f;

  /* Card gradients */
  --orange-1: #f7941d;
  --orange-2: #d9540c;
  --green-1: #43b649;
  --green-2: #0e8a4b;
  --blue-1: #2e9df5;
  --blue-2: #1958c9;
  --purple-1: #9b5de5;
  --purple-2: #5c22b8;

  /* Type */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container-w: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

button { font-family: inherit; cursor: pointer; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--navy-dark);
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

/* ============ Placeholder image blocks ============ */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.06) 10px,
    rgba(255,255,255,0.12) 10px,
    rgba(255,255,255,0.12) 20px
  );
  border: 1px dashed rgba(255,255,255,0.45);
  width: 100%;
  height: 100%;
  padding: 12px;
}
.ph span { opacity: 0.85; }

/* ==================================================
   TOP BAR + HEADER
   ================================================== */
.topbar {
  background: var(--navy-dark);
}

.header {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container-w);
  margin: 0 auto;
  gap: 16px;
}

.topinfo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 8px 24px;
  max-width: var(--container-w);
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--gray-400);
  flex-wrap: wrap;
}

.topinfo a {
  color: var(--gray-400);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
}
.topinfo a:hover { color: var(--lime); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 1.2rem;
}
.logo-text {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.1;
}
.logo-text .accent { color: var(--lime); }
.logo-text small {
  display: block;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--gray-400);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: var(--gray-200);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color .15s;
}
.nav a:hover, .nav a.active { color: var(--lime); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--lime);
}

.nav .has-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(10,28,51,0.25);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  color: var(--text-dark);
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
}
.dropdown-menu a:hover { background: var(--gray-100); color: var(--green-2); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--lime);
  color: var(--navy-dark);
  box-shadow: 0 8px 20px rgba(141,198,63,0.28);
}
.btn-primary:hover { background: var(--lime-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }

.btn-small {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.header-actions .btn-primary {
  padding: 11px 20px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==================================================
   HERO
   ================================================== */
.hero {
  background:
    radial-gradient(circle at 78% 30%, rgba(141,198,63,0.10), transparent 45%),
    linear-gradient(115deg, var(--navy-dark) 38%, var(--navy-mid) 100%);
  padding: 70px 0 90px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--gray-200);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--lime); }

.hero p {
  color: var(--gray-400);
  font-size: 1.02rem;
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.hero-visual .ph {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.06) 10px, rgba(255,255,255,0.12) 10px, rgba(255,255,255,0.12) 20px),
    linear-gradient(135deg, var(--navy-light), var(--green-2));
}

/* ==================================================
   SERVICE CARDS STRIP
   ================================================== */
.services {
  margin-top: -60px;
  position: relative;
  z-index: 5;
}
.services .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: 16px;
  padding: 32px 26px 28px;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(10,28,51,0.2);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(10,28,51,0.3);
}

.service-card.orange { background: linear-gradient(150deg, var(--orange-1), var(--orange-2)); }
.service-card.green  { background: linear-gradient(150deg, var(--green-1), var(--green-2)); }
.service-card.blue   { background: linear-gradient(150deg, var(--blue-1), var(--blue-2)); }
.service-card.purple { background: linear-gradient(150deg, var(--purple-1), var(--purple-2)); }

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.5rem;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.18rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  margin: 0 0 28px;
  line-height: 1.55;
}

.service-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: background .15s ease;
}
.service-card:hover .service-arrow { background: rgba(255,255,255,0.35); }

/* ==================================================
   WHY CHOOSE US
   ================================================== */
.why {
  padding: 130px 0 80px;
  text-align: center;
}
.why-eyebrow {
  color: var(--green-2);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.why h2 {
  font-size: 2.1rem;
  margin-bottom: 14px;
}
.why-divider {
  width: 60px;
  height: 3px;
  background: var(--lime);
  margin: 0 auto 56px;
  border-radius: 2px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.why-item { padding: 0 8px; }

.why-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}
.why-icon.navy { background: var(--navy-dark); }
.why-icon.green { background: var(--green-1); }

.why-item h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.why-item p {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ==================================================
   WHAT WE DO
   ================================================== */
.whatwedo {
  padding: 80px 0 100px;
  background: var(--gray-100);
}

.whatwedo-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 20px;
  flex-wrap: wrap;
}

.whatwedo-eyebrow {
  color: var(--green-2);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.whatwedo-head h2 { font-size: 1.9rem; }

.btn-view-all {
  background: var(--white);
  color: var(--navy-dark);
  border: 1px solid var(--gray-200);
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all .15s ease;
}
.btn-view-all:hover { border-color: var(--lime); color: var(--green-2); }

.whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.wwd-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(10,28,51,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wwd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(10,28,51,0.12);
}

.wwd-image img {
  Width: 100%;
  Height: 100%;
  Object-fit: Cover;
  Display: Block;
}

.wwd-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--navy-light), var(--navy-mid));
}
.wwd-card:nth-child(1) .wwd-image { background: linear-gradient(150deg, var(--orange-1), var(--navy-mid)); }
.wwd-card:nth-child(2) .wwd-image { background: linear-gradient(150deg, var(--blue-1), var(--navy-mid)); }
.wwd-card:nth-child(3) .wwd-image { background: linear-gradient(150deg, var(--gray-800), var(--navy-dark)); }
.wwd-card:nth-child(4) .wwd-image { background: linear-gradient(150deg, var(--green-1), var(--navy-mid)); }

.wwd-body { padding: 22px 22px 26px; }
.wwd-body h3 {
  font-size: 1.08rem;
  margin-bottom: 12px;
  line-height: 1.35;
}
.wwd-body p {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0 0 16px;
}

.learn-more {
  color: var(--green-2);
  font-weight: 600;
  font-size: 0.87rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .15s ease;
}
.learn-more:hover { gap: 10px; }
/* ==================================================
   STATS BAR
   ================================================== */
.stats {
  background: var(--navy-dark);
  padding: 44px 0;
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.stat-num {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
}
.stat-label {
  color: var(--gray-400);
  font-size: 0.85rem;
}

/* ==================================================
   BOTTOM CTA
   ================================================== */
.cta-band {
  background: linear-gradient(100deg, #0d3f7a 0%, var(--green-2) 55%, var(--lime) 130%);
  padding: 46px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--white);
  font-size: 1.55rem;
  margin-bottom: 8px;
}
.cta-band p {
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-size: 0.92rem;
}
.cta-band .btn-outline {
  background: rgba(255,255,255,0.06);
}

/* ==================================================
   FOOTER
   ================================================== */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 24px;
  color: var(--gray-400);
}
.footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.footer p, .footer a {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.9;
}
.footer a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==================================================
   SKELETON PAGES
   ================================================== */
.page-hero {
  background: linear-gradient(115deg, var(--navy-dark) 30%, var(--navy-mid) 100%);
  padding: 70px 0;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 {
  color: var(--white);
  font-size: 2.4rem;
}
.page-hero p {
  color: var(--gray-400);
  margin: 14px auto 0;
  max-width: 520px;
}
.skeleton-body {
  padding: 90px 0;
  text-align: center;
}
.skeleton-body p {
  color: var(--gray-600);
  max-width: 560px;
  margin: 14px auto 0;
}
.skeleton-badge {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}

/* ==================================================
   RESPONSIVE
   ================================================== */
@media (max-width: 1080px) {
  .services .container,
  .whatwedo-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/10; }
  .hero { padding: 40px 0 70px; }
  .services { margin-top: -40px; }
}

@media (max-width: 860px) {
  .topinfo { display: none; }
  .nav { 
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--navy-mid);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 28px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform .25s ease;
    box-shadow: -12px 0 30px rgba(0,0,0,0.3);
    z-index: 90;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a { width: 100%; padding: 12px 0; font-size: 1rem; }
  .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    display: none;
    width: 100%;
    margin-top: 4px;
  }
  .dropdown.mobile-open .dropdown-menu { display: block; }
  .dropdown-menu a { color: var(--gray-200); }
  .dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: var(--lime); }
  .nav-toggle { display: flex; }
  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(5,12,23,0.55);
    z-index: 80;
  }
  .nav-overlay.open { display: block; }
}

@media (max-width: 720px) {
  .services .container { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .whatwedo-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: 1fr; }
  .footer .container { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer .container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { padding: 12px 18px; }
  .why { padding: 90px 0 60px; }
}

/* ==================================================
   CONTACT PAGE
   ================================================== */
.contact-hero {
  background: linear-gradient(115deg, var(--navy-dark) 30%, var(--navy-mid) 100%);
  padding: 64px 0;
}
.contact-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}
.contact-hero-copy h1 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.contact-hero-copy h3 {
  color: var(--lime);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.contact-hero-copy p {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin: 0 0 14px;
  line-height: 1.65;
}
.contact-tags {
  color: var(--gray-200) !important;
  font-weight: 500;
}
.contact-hero-visual {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-light), var(--green-2));
}
.contact-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-bar {
  background: var(--white);
  padding: 0;
}
.contact-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  max-width: var(--container-w);
}
.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 34px;
  color: var(--white);
}
.contact-bar-item.whatsapp { background: linear-gradient(100deg, var(--green-1), var(--green-2)); }
.contact-bar-item.email { background: var(--navy-dark); }
.contact-bar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-bar-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 4px;
}
.contact-bar-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.contact-bar-sub {
  display: block;
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 3px;
}
 
.offices {
  padding: 70px 0;
  background: var(--gray-100);
}
.offices-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.offices-title span { color: var(--lime); font-size: 0.7rem; }
 
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.office-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(10,28,51,0.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.office-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(10,28,51,0.13); }
.office-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
}
.office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.office-flag {
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-dark);
  padding: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.office-body { padding: 22px 22px 26px; text-align: center; }
.office-pin { font-size: 1.3rem; display: block; margin-bottom: 6px; }
.office-body h4 { font-size: 1.05rem; margin-bottom: 10px; }
.office-body p {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0 0 12px;
}
.office-note {
  color: var(--green-2) !important;
  font-weight: 600;
  font-size: 0.82rem !important;
}
 
.contact-form-section {
  padding: 70px 0 90px;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 30px;
  align-items: start;
}
.contact-form-card, .contact-map-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(10,28,51,0.05);
}
.contact-form-card h3, .contact-map-card h3 {
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 7px;
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--gray-100);
  transition: border-color .15s ease, background .15s ease;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: var(--white);
}
.form-field textarea { resize: vertical; }

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.form-privacy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-600);
  margin: 14px 0 0;
}

.map-ph {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
  border: 1px dashed var(--gray-400);
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 20px;
}
.map-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.map-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.map-feature {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
}
.map-feature span { font-size: 1.3rem; display: block; margin-bottom: 6px; }
.map-feature strong { display: block; font-size: 0.82rem; margin-bottom: 4px; }
.map-feature small { font-size: 0.74rem; color: var(--gray-600); line-height: 1.4; display: block; }

.feature-strip {
  background: var(--navy-dark);
  padding: 30px 0;
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-strip-item span { font-size: 1.4rem; flex-shrink: 0; }
.feature-strip-item strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.feature-strip-item small {
  color: var(--gray-400);
  font-size: 0.72rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .contact-hero-inner { grid-template-columns: 1fr; }
  .contact-hero-visual { order: -1; aspect-ratio: 16/10; }
  .offices-grid { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .feature-strip-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .contact-bar-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .interest-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip-inner { grid-template-columns: 1fr; }
  .contact-hero-copy h1 { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}


.interest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.interest-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 2px solid #d8dee6;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: background-color .18s ease, border-color .18s ease,
              box-shadow .18s ease, transform .12s ease;
}

.interest-item:hover {
  border-color: #9fb6d1;
  background: #f6f9fc;
}

.interest-item:active {
  transform: scale(.98);
}

/* Hide the native box but keep it accessible */
.interest-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.interest-icon {
  font-size: 1.15rem;
  line-height: 1;
}

/* Highlighted / selected state (modern browsers) */
.interest-item:has(input[type="checkbox"]:checked) {
  border-color: #0a84ff;
  background: #e8f2ff;
  color: #06407f;
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(10, 132, 255, .18);
}

/* Checkmark badge on selected items */
.interest-item:has(input[type="checkbox"]:checked)::after {
  content: "✓";
  margin-left: auto;
  font-weight: 700;
  color: #0a84ff;
}

/* Keyboard focus ring */
.interest-item:has(input[type="checkbox"]:focus-visible) {
  outline: 2px solid #0a84ff;
  outline-offset: 2px;
}

/* Fallback class toggled by JS for browsers without :has() */
.interest-item.is-selected {
  border-color: #0a84ff;
  background: #e8f2ff;
  color: #06407f;
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(10, 132, 255, .18);
}

.interest-item.is-selected::after {
  content: "✓";
  margin-left: auto;
  font-weight: 700;
  color: #0a84ff;
}