*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --aoc-green: #1a6b2f;
  --aoc-green-dark: #145524;
  --charcoal: #1a1a1a;
}

body {
  font-family: "Open Sans", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  flex: 1;
  min-height: 100vh;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.70) 100%
  );
}

.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 18px 48px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar img {
  height: 44px;
  width: auto;
}

.content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.card {
  background: rgba(255, 255, 255, 0.97);
  max-width: 680px;
  width: 100%;
  padding: 56px 56px 48px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.maintenance-badge {
  display: inline-block;
  background: var(--aoc-green);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.card h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}

.card h1 span {
  color: var(--aoc-green);
}

.card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

.divider {
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 36px;
}

.contact-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon.green {
  background: var(--aoc-green);
}

.contact-icon.red {
  background: #dc2626;
}

.contact-icon.grey {
  background: #e5e5e5;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.contact-icon.green svg,
.contact-icon.red svg {
  stroke: #fff;
  fill: none;
}

.contact-icon.grey svg {
  stroke: #555;
  fill: none;
}

.contact-label {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2px;
}

.contact-label.emergency {
  color: #dc2626;
}

.contact-value {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
}

.contact-value a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

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

.contact-value a.emergency:hover {
  color: #dc2626;
}

.strong {
  font-weight: 600;
}

.footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer a {
  color: var(--aoc-green);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .navbar {
    padding: 14px 20px;
  }

  .card {
    padding: 36px 24px 32px;
  }
}
