.page-center {
    max-width: 900px;
    margin: auto;
}

/* HERO */
.contact-hero {
    background: #0a5c3d;
    padding: 40px 0;
    color: #fff;
}

.contact-hero h2 {
    margin-bottom: 8px;
}

/* MAIN */
.contact-wrapper {
    padding: 50px 0;
}

/* TOP CARDS */
.top-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    border: 1px solid #eee;
}

.info-card.highlight {
    background: #e9f8f2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

/* BLOCKS */
.block {
    margin-bottom: 50px;
}

.block-title {
    text-align: center;
    margin-bottom: 18px;
}

.block-title.with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* INFO TABLE */
.info-table {
    background: #fafafa;
    border-radius: 10px;
    padding: 16px;
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e5;
}

.row:last-child {
    border-bottom: none;
}

.row.column {
    flex-direction: column;
    gap: 6px;
}

a {
    color: #0b5d4b;
    text-decoration: none;
}

/* BRANCHES */
.branches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.branch-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.branch-card small {
    display: block;
    color: #777;
}

/* NOTE */
.note-section {
    background: #e9f8f2;
    padding: 30px 0;
}

/* TEXT */
.muted {
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .top-cards {
        grid-template-columns: 1fr;
    }

    .branches {
        grid-template-columns: 1fr;
    }

    .row {
        flex-direction: column;
        gap: 6px;
    }
}
/* ===== CONTACT PAGE – FRIENDLY ANIMATIONS ===== */

/* Keyframes */
@keyframes contactFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactSlide {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* HERO */
.contact-hero {
  animation: contactFadeUp 0.9s ease both;
}

/* TOP INFO CARDS */
.top-cards .info-card {
  animation: contactFadeUp 0.8s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-cards .info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(11, 93, 75, 0.12);
}

.top-cards .info-card:nth-child(1) { animation-delay: 0.1s; }
.top-cards .info-card:nth-child(2) { animation-delay: 0.25s; }

/* BLOCK SECTIONS */
.block {
  animation: contactFadeUp 0.9s ease both;
}

/* INFO TABLE ROWS */
.info-table .row {
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.info-table .row:hover {
  background: #f1fdf8;
  padding-left: 6px;
}

/* BRANCH CARDS */
.branch-card {
  animation: contactSlide 0.7s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(11, 93, 75, 0.12);
}

.branch-card:nth-child(1) { animation-delay: 0.1s; }
.branch-card:nth-child(2) { animation-delay: 0.2s; }
.branch-card:nth-child(3) { animation-delay: 0.3s; }

/* NOTE SECTION */
.note-section {
  animation: contactFadeUp 1s ease both;
}

/* LINKS */
a {
  transition: color 0.25s ease;
}

a:hover {
  color: #084c3e;
}
.page-center {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}
@media (min-width: 1920px) {
  .page-center {
    max-width: 1400px;
  }
}
img {
  max-width: 100%;
  height: auto;
}
.gov-hero h2,
.gov-hero .breadcrumb {
  color: #ffffff;
}
.gov-hero p {
  color: #ffffff;
}
.contact-hero h2,
.contact-hero p {
  color: #ffffff;
}
