/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #333;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Container */
.maintenance-container {
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.maintenance-box {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 40px 30px;
 box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  max-width: 500px;
  width: 100%;
  transition: transform 0.3s;
}

.maintenance-box:hover {
  transform: translateY(-4px);
}

.maintenance-icon {
  font-size: 50px;
  color: #0056b3;
  margin-bottom: 20px;
  animation: rotateTools 2.5s linear infinite;
}

h1 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #0056b3;
}

p {
  font-size: 16px;
  margin: 6px 0;
}

.highlight {
  font-weight: 600;
  margin-top: 15px;
  color: #0d6efd;
}

.phone {
  font-size: 18px;
  margin-top: 5px;
  color: #0056b3;
}

button {
  margin-top: 25px;
  background-color: #0d6efd;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Animations */
@keyframes rotateTools {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .maintenance-box {
    padding: 30px 20px;
  }

  h1 {
    font-size: 22px;
  }

  .phone {
    font-size: 16px;
  }

  button {
    font-size: 14px;
    padding: 10px 20px;
  }
}
