:root {
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background-image: url("../src/assets/img/IMG-20260504-WA0016.jpg.jpeg"),
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 25%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(4, 8, 18, 0.55), rgba(8, 19, 38, 0.65));
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
  background-blend-mode: overlay, normal, normal, normal;
  background-attachment: fixed;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e2e8f0;
}
.maintenance-card {
  width: min(100%, 680px);
  padding: 2.2rem;
  border-radius: 1.75rem;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.1);
  box-shadow: 0 40px 130px rgba(10, 16, 36, 0.4);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.maintenance-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 35%),
    radial-gradient(circle at bottom left, rgba(168, 85, 247, 0.12), transparent 28%);
  pointer-events: none;
  z-index: 0;
}
.maintenance-card::after {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 2rem;
  height: 1px;
  background: rgba(226, 232, 240, 0.08);
  z-index: 0;
}
.card-header {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.5rem;
  z-index: 1;
}
.icon-glow {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.18), rgba(59, 130, 246, 0.06));
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.12);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.14);
  color: #7dd3fc;
  font-weight: 700;
  font-size: 0.95rem;
}
.status-badge svg {
  width: 1rem;
  height: 1rem;
}
.service-note {
  margin-top: 0.75rem;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}
.headline {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  position: relative;
}
.headline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 4rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
}
.subtext {
  margin: 1.25rem 0 1.75rem;
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 42rem;
}
.info-panel {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.info-panel h2 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #e2e8f0;
}
.contact-section {
  padding: 1.15rem;
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.82));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.contact-title {
  margin-bottom: 1rem;
  color: #f8fafc;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.contact-list {
  display: grid;
  gap: 0.85rem;
}
.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(56, 189, 248, 0.14);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.contact-item:hover {
  background: rgba(15, 23, 42, 0.84);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-1px);
}
.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
}
.contact-label {
  display: block;
  color: #94a3b8;
  font-size: 0.82rem;
}
.contact-value {
  display: block;
  color: #e2e8f0;
  font-weight: 600;
  word-break: break-all;
}
.contact-item:hover .contact-value {
  color: #dbeafe;
}
.contact-link {
  color: #38bdf8;
  text-decoration: none;
}
.contact-link:hover {
  text-decoration: underline;
}
.details {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.details li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  color: #cbd5e1;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(56, 189, 248, 0.25);
}
.details li svg {
  width: 1.3rem;
  height: 1.3rem;
  color: #38bdf8;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.footer-text {
  margin-top: 1.75rem;
  color: #94a3b8;
  font-size: 0.98rem;
}
@media (max-width: 640px) {
  .maintenance-card {
    padding: 1.75rem;
  }
  .button-group {
    flex-direction: column;
  }
}
