/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Layout */
body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #004080;
}

/* Fullscreen Wrapper */
.maintenance-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  animation: fadeIn 1s ease-in-out;
}

/* Main Box */
.content-box {
  text-align: center;
  max-width: 700px;
  width: 100%;
  padding: 50px 30px;
  border-radius: 16px;
  border: 1px solid #fcd116;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  animation: slideUp 1.2s ease-in-out;
}

/* Logo Section */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.logo-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: popIn 0.6s ease;
}

.company-name {
  font-size: 24px;
  font-weight: 600;
  color: #004080;
}

/* Main Message */
h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #004080;
}

/* Subtext */
.subtext {
  font-size: 16px;
  color: #444;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Contact Info */
.contact p {
  font-size: 14px;
  color: #004080;
  margin: 6px 0;
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 12px;
  color: #888;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 24px;
  }

  .company-name {
    font-size: 20px;
  }

  .logo-img {
    height: 50px;
    width: 50px;
  }

  .subtext {
    font-size: 15px;
  }
}
