/* ============================================================
   Custom Properties
   ============================================================ */
:root {
  --c-primary:        #1B6FC8;
  --c-primary-dark:   #154FA0;
  --c-secondary:      #1A2F4E;
  --c-bg:             #FFFFFF;
  --c-surface:        #F4F8FC;
  --c-accent:         #3A9AD9;
  --c-text:           #1A2F4E;
  --c-text-light:     #5A7393;
  --c-on-primary:     #FFFFFF;
  --c-success:        #10B981;
  --c-border:         #D6E4F0;

  --f-heading: 'Montserrat', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-khmer:   'Kantumruy Pro', sans-serif;

  --max-w: 80rem;
  --r:  0.5rem;
  --rl: 0.75rem;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 1rem;
}
img, svg { display: block; max-width: 100%; }
img { object-fit: contain; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px)  { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.section { padding-block: 5rem; }
.section--sm { padding-block: 3rem; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--f-heading); line-height: 1.2; color: var(--c-text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { color: var(--c-text-light); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: rgba(255,255,255,0.75); }

.section-heading { margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: 0.75rem; }
.section-heading p { font-size: 1.05rem; max-width: 42rem; }
.section-heading--center { text-align: center; }
.section-heading--center p { margin-inline: auto; }
.section-heading--light h2,
.section-heading--light .eyebrow { color: #fff; }
.section-heading--light p { color: rgba(255,255,255,0.8); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: var(--c-primary-dark); }
.btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--white { background: #fff; color: var(--c-primary); }
.btn--white:hover { background: #e8f0fb; }
.btn--ghost { background: transparent; color: var(--c-primary); border: 2px solid var(--c-border); }
.btn--ghost:hover { border-color: var(--c-primary); }
.btn--lg { padding: 0.85rem 2rem; font-size: 1rem; }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 1px 0 rgba(27,111,200,0.06);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}
.navbar__logo img { height: 2.5rem; width: auto; }
.navbar__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) { .navbar__links { display: flex; } }
.navbar__links a {
  padding: 0.4rem 0.85rem;
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text);
  transition: background 0.15s, color 0.15s;
}
.navbar__links a:hover,
.navbar__links a.active { background: var(--c-surface); color: var(--c-primary); }
.navbar__cta { display: none; }
@media (min-width: 768px) { .navbar__cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--r);
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — smooth max-height animation */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  background: #fff;
  transition: max-height 0.28s ease, padding 0.28s ease, border-color 0.28s;
}
.mobile-menu.open {
  max-height: 24rem;
  padding: 0.75rem 1rem 1rem;
  border-top-color: var(--c-border);
}
.mobile-menu a {
  padding: 0.7rem 1rem;
  border-radius: var(--r);
  font-weight: 500;
  color: var(--c-text);
  transition: background 0.15s;
}
.mobile-menu a:hover { background: var(--c-surface); }
.mobile-menu .btn { margin-top: 0.5rem; justify-content: center; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-primary) 58%, #2D8FE0 100%);
  padding-block: 7rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Dot-grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Decorative glows */
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  width: 40rem; height: 40rem;
  top: -18rem; right: -8rem;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  width: 28rem; height: 28rem;
  bottom: -14rem; left: -5rem;
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero p  { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 38rem; margin-inline: auto; margin-bottom: 2.25rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-primary) 100%);
  padding-block: 4rem;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 40rem; margin-inline: auto; }
.page-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  transition: color 0.15s;
}
.page-hero .back-link:hover { color: #fff; }
.page-hero .badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.page-hero .service-icon {
  width: 3.5rem; height: 3.5rem;
  background: rgba(255,255,255,0.15);
  border-radius: var(--rl);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.page-hero .service-icon svg { width: 1.75rem; height: 1.75rem; stroke: #fff; }

/* ============================================================
   Services Grid
   ============================================================ */
.services-grid { background: var(--c-surface); }
.services-grid__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .services-grid__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid__grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-top: 3px solid transparent;
  border-radius: var(--rl);
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s, border-top-color 0.2s;
}
.service-card:hover {
  box-shadow: 0 10px 30px rgba(27,111,200,0.13);
  transform: translateY(-3px);
  border-top-color: var(--c-primary);
}
.service-card__icon {
  width: 3.25rem; height: 3.25rem;
  background: var(--c-surface);
  border-radius: 0.625rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s;
}
.service-card:hover .service-card__icon { background: #dbeafe; }
.service-card__icon svg { width: 1.5rem; height: 1.5rem; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.875rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-primary);
  transition: gap 0.15s;
}
.service-card__link:hover { gap: 0.6rem; }
.service-card__link svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   Value Propositions
   ============================================================ */
.values-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { text-align: center; padding: 0.5rem; }
.value-card__icon {
  width: 3.5rem; height: 3.5rem;
  background: var(--c-surface);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-card__icon svg { width: 1.5rem; height: 1.5rem; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { margin-bottom: 0.5rem; }

/* ============================================================
   About Snippet
   ============================================================ */
.about-snippet__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-snippet__grid { grid-template-columns: 1fr 1fr; } }

.checklist { display: flex; flex-direction: column; gap: 0.6rem; margin-block: 1.25rem; }
.checklist li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.95rem; font-weight: 500; color: var(--c-text);
}
.checklist li svg { flex-shrink: 0; margin-top: 0.15rem; width: 1.1rem; height: 1.1rem; stroke: var(--c-success); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.about-accent {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-secondary) 100%);
  border-radius: var(--rl);
  padding: 2.5rem;
  color: #fff;
}
.about-accent__market {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.about-accent__sub { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.about-accent__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat { padding: 1rem; background: rgba(255,255,255,0.1); border-radius: var(--r); }
.stat__value { font-family: var(--f-heading); font-size: 1.6rem; font-weight: 800; color: #fff; }
.stat__label { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 0.1rem; }

/* ============================================================
   CTA Strip
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  padding-block: 4rem;
  text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-strip .sub { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 2rem; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--c-secondary);
  color: rgba(255,255,255,0.8);
  padding-block: 3.5rem 2rem;
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer__logo { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__logo-img {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 0.4rem 0.875rem;
  align-self: flex-start;
}
.footer__logo-img img { height: 2rem; width: auto; }
.footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
[lang="km"] { font-family: var(--f-khmer); }

.footer__col h4 { font-family: var(--f-heading); font-size: 0.875rem; font-weight: 600; color: #fff; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer__links a:hover { color: #fff; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 0.6rem; }
.footer__contact-item svg { flex-shrink: 0; margin-top: 0.1rem; width: 1rem; height: 1rem; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer__contact-item a:hover { color: #fff; }

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
}

/* ============================================================
   Services List (services.html)
   ============================================================ */
.services-list { display: flex; flex-direction: column; gap: 1.5rem; }
.service-row {
  display: grid;
  border: 1px solid var(--c-border);
  border-radius: var(--rl);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.service-row:hover { box-shadow: 0 4px 20px rgba(27,111,200,0.1); }
@media (min-width: 768px) { .service-row { grid-template-columns: 14rem 1fr; } }

.service-row__icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
}
.service-row__icon-col:nth-of-type(odd) { background: var(--c-primary); }
.service-row__icon-col svg { width: 2.5rem; height: 2.5rem; stroke: rgba(255,255,255,0.9); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.service-row__icon-col h3 { font-size: 1rem; font-weight: 700; color: #fff; }
.service-row:nth-child(even) .service-row__icon-col { background: var(--c-secondary); }

.service-row__content { padding: 1.75rem 2rem; }
.service-row__content p { margin-bottom: 1.25rem; }
.deliverables { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.deliverable { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--c-text); }
.deliverable svg { flex-shrink: 0; margin-top: 0.15rem; width: 0.875rem; height: 0.875rem; stroke: var(--c-success); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   Service Detail (services/[slug].html)
   ============================================================ */
.service-detail__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) { .service-detail__grid { grid-template-columns: 2fr 1fr; } }

.offerings { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.offering {
  border: 1px solid var(--c-border);
  border-radius: var(--rl);
  overflow: hidden;
}
.offering__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  background: var(--c-surface);
  user-select: none;
  gap: 1rem;
}
.offering__header:hover { background: #e4eef8; }
.offering__header h3 { font-size: 0.975rem; }
.offering__toggle { flex-shrink: 0; width: 1.25rem; height: 1.25rem; transition: transform 0.2s; }
.offering__toggle svg { width: 1.25rem; height: 1.25rem; stroke: var(--c-text-light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.offering.open .offering__toggle { transform: rotate(180deg); }
.offering__body { display: none; padding: 1.25rem; border-top: 1px solid var(--c-border); }
.offering.open .offering__body { display: block; }
.offering__body p { font-size: 0.9rem; margin-bottom: 0.75rem; }
.offering__meta { font-size: 0.82rem; color: var(--c-text-light); }
.offering__meta span { display: block; }

.what-you-get h3 { margin-bottom: 1rem; }
.deliverables-list { display: flex; flex-direction: column; gap: 0.6rem; }
.deliverables-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--c-text); }
.deliverables-list li svg { flex-shrink: 0; margin-top: 0.15rem; width: 1rem; height: 1rem; stroke: var(--c-success); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.sidebar-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--rl);
  padding: 1.75rem;
  position: sticky;
  top: 5rem;
}
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.sidebar-card p { font-size: 0.875rem; margin-bottom: 1.5rem; }
.sidebar-card .btn { display: flex; justify-content: center; margin-bottom: 0.75rem; }
.sidebar-card__email { font-size: 0.8rem; text-align: center; color: var(--c-text-light); }
.sidebar-card__email a { color: var(--c-primary); font-weight: 500; }
.sidebar-divider { border: none; border-top: 1px solid var(--c-border); margin-block: 1.25rem; }
.sidebar-card__all-link { display: flex; justify-content: center; font-size: 0.875rem; font-weight: 500; color: var(--c-text-light); transition: color 0.15s; }
.sidebar-card__all-link:hover { color: var(--c-primary); }

/* ============================================================
   About Page
   ============================================================ */
.mission-vision {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .mission-vision { grid-template-columns: 1fr 1fr; } }

.mv-card {
  border-radius: var(--rl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mv-card--light { background: var(--c-surface); border: 1px solid var(--c-border); }
.mv-card--dark  { background: var(--c-secondary); color: #fff; }
.mv-card--dark h3 { color: #fff; }
.mv-card--dark p  { color: rgba(255,255,255,0.75); }
.mv-card__icon { width: 3rem; height: 3rem; border-radius: var(--r); display: flex; align-items: center; justify-content: center; }
.mv-card--light .mv-card__icon { background: #dbeafe; }
.mv-card--dark  .mv-card__icon { background: rgba(255,255,255,0.12); }
.mv-card__icon svg { width: 1.4rem; height: 1.4rem; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.mv-card--light .mv-card__icon svg { stroke: var(--c-primary); }
.mv-card--dark  .mv-card__icon svg { stroke: #fff; }

.values-section { background: var(--c-surface); }
.values-cards {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .values-cards { grid-template-columns: repeat(3, 1fr); } }
.value-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--rl);
  padding: 1.5rem;
}
.value-item__dot {
  width: 0.5rem; height: 0.5rem;
  background: var(--c-primary);
  border-radius: 50%;
  margin-bottom: 0.75rem;
}
.value-item h3 { font-size: 0.975rem; margin-bottom: 0.4rem; }
.value-item p  { font-size: 0.875rem; }

.team-placeholder {
  background: var(--c-surface);
  border-radius: var(--rl);
  padding: 3rem;
  text-align: center;
  border: 2px dashed var(--c-border);
}
.team-placeholder h3 { margin-bottom: 0.5rem; }

/* ============================================================
   Contact Page
   ============================================================ */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.contact-info-item__icon {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  background: var(--c-surface);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item__icon svg { width: 1.1rem; height: 1.1rem; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-item h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact-info-item p, .contact-info-item a { font-size: 0.875rem; }
.contact-info-item a { color: var(--c-primary); }

.region-card {
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  border-radius: var(--rl);
  padding: 1.5rem;
  color: #fff;
}
.region-card h4 { font-family: var(--f-heading); font-size: 1rem; color: #fff; margin-bottom: 0.25rem; }
.region-card p  { font-size: 0.875rem; color: rgba(255,255,255,0.75); }

.contact-form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--rl);
  padding: 2rem;
}
.contact-form-card h2 { font-size: 1.4rem; margin-bottom: 0.35rem; }
.contact-form-card > p { font-size: 0.9rem; margin-bottom: 1.75rem; }
.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--c-text); }
.form-group label .req { color: var(--c-primary); margin-left: 0.2rem; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.6rem 0.875rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r);
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: var(--c-text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(27,111,200,0.1);
}
.form-group textarea { resize: vertical; min-height: 7rem; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }

.mailto-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: var(--c-text-light);
}
.mailto-note a { color: var(--c-primary); }

/* ============================================================
   Value Item (About page) — icon treatment
   ============================================================ */
.value-item__icon {
  width: 2.75rem; height: 2.75rem;
  background: #dbeafe;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.875rem;
}
.value-item__icon svg {
  width: 1.3rem; height: 1.3rem;
  stroke: var(--c-primary); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ============================================================
   Scroll-to-top button
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  width: 2.75rem; height: 2.75rem;
  background: var(--c-primary);
  color: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(27,111,200,0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--c-primary-dark); }
.scroll-top svg { width: 1.1rem; height: 1.1rem; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   Animations
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Utilities
   ============================================================ */
.text-center { text-align: center; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
