/* ===========================================================
   Next Generation Health & Sustainability
   Global stylesheet (plain CSS)
   =========================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors extracted from the logo */
  --brand-blue: #0a3b8a;
  --brand-green: #1e8238;
  --brand-gold: #ffa800;

  --background: #ffffff;
  --foreground: #2d3748; /* deep charcoal */
  --card: #ffffff;
  --muted-foreground: #6b7280;
  --secondary: #f4f6f9;
  --border: #e2e7ee;
  --input: #d6dce5;
  --white: #ffffff;

  --radius: 0.5rem;
  --radius-md: 0.625rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-full: 9999px;

  --max-width: 80rem; /* 1280px */
  --font-heading: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 4px 16px rgba(16, 24, 40, 0.08);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  color-scheme: light;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

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

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

ul {
  list-style: none;
}

main {
  min-height: 60vh;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  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: 4rem;
}

@media (min-width: 1024px) {
  .section {
    padding-block: 5rem;
  }
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2;
}

.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;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.btn .icon {
  width: 1rem;
  height: 1rem;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: var(--white);
}
.btn-primary:hover {
  background-color: rgba(10, 59, 138, 0.9);
}

.btn-outline {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background-color: transparent;
}
.btn-outline:hover {
  background-color: var(--brand-blue);
  color: var(--white);
}

.btn-gold {
  background-color: var(--brand-gold);
  color: var(--brand-blue);
}
.btn-gold:hover {
  background-color: var(--white);
}

/* ===========================================================
   Header
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 2.75rem;
  width: 2.75rem;
  object-fit: contain;
}

.brand-text {
  display: none;
  flex-direction: column;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .brand-text {
    display: flex;
  }
}

.brand-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.brand-tagline {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-green);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(45, 55, 72, 0.7);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background-color: var(--secondary);
  color: var(--brand-blue);
}

.nav-link.active {
  background-color: var(--secondary);
  color: var(--brand-blue);
}

.nav-cta {
  margin-left: 0.5rem;
  border-radius: var(--radius);
  background-color: var(--brand-blue);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  transition: background-color 0.2s ease;
}

.nav-cta:hover {
  background-color: var(--brand-green);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.5rem;
  color: var(--brand-blue);
  background-color: transparent;
  border: none;
  transition: background-color 0.2s ease;
}

.menu-toggle:hover {
  background-color: var(--secondary);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle .icon-close {
  display: none;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-block: 0.75rem;
}

.mobile-nav .nav-link {
  padding: 0.625rem 0.75rem;
}

.mobile-nav .nav-cta {
  margin-left: 0;
  margin-top: 0.25rem;
  text-align: center;
  padding: 0.625rem 0.75rem;
}

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  background-color: rgba(244, 246, 249, 0.4);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .footer-about {
    grid-column: span 2;
  }
}

.footer-about p {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-green);
}

.footer-contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact .icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--brand-green);
}

.footer-contact a:hover {
  color: var(--brand-green);
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-block: 1.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
  }
}

/* ===========================================================
   Page hero (inner pages)
   =========================================================== */
.page-hero {
  border-bottom: 1px solid var(--border);
  background-color: rgba(244, 246, 249, 0.4);
}

.page-hero-inner {
  padding-block: 3.5rem;
}

@media (min-width: 1024px) {
  .page-hero-inner {
    padding-block: 5rem;
  }
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-green);
}

.page-hero h1 {
  margin-top: 0.5rem;
  max-width: 48rem;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brand-blue);
  text-wrap: balance;
}

.page-hero p {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

/* ===========================================================
   Home: hero
   =========================================================== */
.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background-color: var(--background);
}

.home-hero-inner {
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .home-hero-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    padding-block: 6rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(30, 130, 56, 0.3);
  background-color: rgba(30, 130, 56, 0.05);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-green);
}

.badge .icon {
  width: 0.875rem;
  height: 0.875rem;
}

.home-hero h1 {
  margin-top: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--brand-blue);
  text-wrap: balance;
}

.home-hero .lead {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-image-wrap {
  position: relative;
}

.hero-image-accent {
  position: absolute;
  right: -1rem;
  top: -1rem;
  height: 6rem;
  width: 6rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 168, 0, 0.15);
  display: none;
}

@media (min-width: 1024px) {
  .hero-image-accent {
    display: block;
  }
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ===========================================================
   Section heading (centered)
   =========================================================== */
.section-head {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.section-head .eyebrow {
  display: block;
}

.section-head h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--brand-blue);
  text-wrap: balance;
}

/* ===========================================================
   Card grids (impact / services)
   =========================================================== */
.card-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .card-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(30, 130, 56, 0.4);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background-color: rgba(30, 130, 56, 0.1);
  color: var(--brand-green);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--brand-green);
  color: var(--white);
}

.feature-card h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.feature-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ===========================================================
   Mission strip (home) & CTA banner
   =========================================================== */
.mission-strip,
.cta-banner {
  background-color: var(--brand-blue);
}

.mission-inner {
  display: grid;
  align-items: center;
  gap: 2rem;
  padding-block: 3.5rem;
}

@media (min-width: 1024px) {
  .mission-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mission-text {
    grid-column: span 2;
  }
  .mission-action {
    display: flex;
    justify-content: flex-end;
  }
}

.mission-text h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--white);
  text-wrap: balance;
}

.mission-text p {
  margin-top: 0.75rem;
  max-width: 42rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  text-wrap: pretty;
}

.cta-banner {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius-2xl);
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--white);
  text-wrap: balance;
}

.cta-banner p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.8);
  text-wrap: pretty;
}

.cta-banner .btn {
  margin-top: 0.5rem;
}

/* ===========================================================
   About page
   =========================================================== */
.two-col {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--brand-blue);
}

.body-text {
  margin-top: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.panel {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background-color: rgba(244, 246, 249, 0.4);
  padding: 2rem;
}

.panel h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.check-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-list .icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--brand-green);
}

.check-list span {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(45, 55, 72, 0.8);
}

.vision-mission {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .vision-mission {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.vm-card {
  border-radius: var(--radius-2xl);
  background-color: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.vm-card.blue {
  border-left: 4px solid var(--brand-blue);
}

.vm-card.green {
  border-left: 4px solid var(--brand-green);
}

.vm-icon {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
}

.vm-icon.blue {
  background-color: rgba(10, 59, 138, 0.1);
  color: var(--brand-blue);
}

.vm-icon.green {
  background-color: rgba(30, 130, 56, 0.1);
  color: var(--brand-green);
}

.vm-card h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.vm-card.blue h3 {
  color: var(--brand-blue);
}

.vm-card.green h3 {
  color: var(--brand-green);
}

.vm-card p {
  margin-top: 0.75rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ===========================================================
   Footprint page
   =========================================================== */
.bg-secondary {
  background-color: rgba(244, 246, 249, 0.4);
}

.country-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .country-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .country-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.country-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1rem 1.25rem;
  transition: border-color 0.2s ease;
}

.country-card:hover {
  border-color: rgba(30, 130, 56, 0.4);
}

.country-card .icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--brand-green);
}

.country-card span {
  font-weight: 500;
  color: var(--brand-blue);
}

.partners-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.partners-head .icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--brand-green);
}

.partners-head h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--brand-blue);
}

.partners-intro {
  margin-top: 0.75rem;
  max-width: 42rem;
  color: var(--muted-foreground);
}

.partner-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-md);
}

.partner-initials {
  display: flex;
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background-color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--muted-foreground);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.partner-card:hover .partner-initials {
  background-color: var(--brand-blue);
  color: var(--white);
}

.partner-card span.name {
  font-weight: 500;
  color: var(--brand-blue);
}

/* ===========================================================
   Gallery
   =========================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background-color: var(--secondary);
  padding: 0;
  text-align: left;
  border: 1px solid var(--border);
}

.gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.gallery-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  background-image: linear-gradient(
    to top,
    rgba(10, 59, 138, 0.8),
    transparent
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(45, 55, 72, 0.9);
}

.lightbox.open {
  display: flex;
}

.lightbox-btn {
  position: absolute;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  color: var(--white);
  border: none;
  transition: background-color 0.2s ease;
}

.lightbox-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  right: 1rem;
  top: 1rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-figure {
  position: relative;
  width: 100%;
  max-width: 56rem;
  max-height: 85vh;
}

.lightbox-image {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.lightbox-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.lightbox-figure figcaption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ===========================================================
   Contact page
   =========================================================== */
.contact-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.25rem;
}

.contact-item-icon {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
}

.contact-item-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-item-icon.blue {
  background-color: rgba(10, 59, 138, 0.1);
  color: var(--brand-blue);
}

.contact-item-icon.green {
  background-color: rgba(30, 130, 56, 0.1);
  color: var(--brand-green);
}

.contact-item-icon.gold {
  background-color: rgba(255, 168, 0, 0.15);
  color: var(--brand-gold);
}

.contact-item .label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-item .value {
  font-weight: 600;
  color: var(--brand-blue);
  word-break: break-word;
}

.contact-item a.value:hover {
  color: var(--brand-green);
}

/* Form */
.contact-form {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .contact-form {
    padding: 2rem;
  }
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-field label {
  margin-bottom: 0.375rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--input);
  background-color: var(--background);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: var(--foreground);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(10, 59, 138, 0.2);
}

.form-success {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2.5rem;
  text-align: center;
}

.form-success-icon {
  display: inline-flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: rgba(30, 130, 56, 0.1);
  color: var(--brand-green);
}

.form-success-icon .icon {
  width: 2rem;
  height: 2rem;
}

.form-success h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.form-success p {
  margin-top: 0.5rem;
  max-width: 24rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.form-success .btn {
  margin-top: 1.5rem;
}

.hidden {
  display: none !important;
}

/* ---------- Animation ---------- */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.6s ease-out both;
}
