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

:root{
  --green:#075b3a;
  --dark-green:#033b28;
  --gold:#d8a72d;
  --gold-light:#f5d36b;
  --cream:#fbfaf5;
  --text:#17352a;
  --muted:#718078;
  --white:#ffffff;
}

html,body{
  width:100%;
  min-height:100%;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 8% 10%,rgba(216,167,45,.15),transparent 25%),
    radial-gradient(circle at 92% 90%,rgba(7,91,58,.14),transparent 30%),
    linear-gradient(135deg,#fff 0%,var(--cream) 52%,#edf6ef 100%);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  width:420px;
  height:420px;
  border:75px solid rgba(7,91,58,.055);
  border-radius:50%;
  top:-220px;
  left:-220px;
}

body::after{
  content:"";
  position:fixed;
  width:480px;
  height:480px;
  border:80px solid rgba(216,167,45,.07);
  border-radius:50%;
  right:-280px;
  bottom:-280px;
}

.maintenance-page{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:45px 20px;
  position:relative;
  z-index:1;
}

.maintenance-card{
  width:min(900px,100%);
  text-align:center;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(7,91,58,.1);
  border-radius:34px;
  padding:48px 45px 38px;
  box-shadow:0 28px 80px rgba(3,59,40,.14);
  position:relative;
  overflow:hidden;
}

.maintenance-card::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:8px;
  background:linear-gradient(90deg,var(--green),var(--gold),var(--green));
}

/* Large school logo */
.logo-wrap{
  width:210px;
  height:210px;
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-radius:50%;
  border:5px solid rgba(216,167,45,.35);
  box-shadow:
    0 15px 40px rgba(3,59,40,.12),
    inset 0 0 0 8px rgba(7,91,58,.045);
  animation:logoFloat 4s ease-in-out infinite;
}

.school-logo{
  width:185px;
  height:185px;
  object-fit:contain;
  border-radius:50%;
}

.gear{
  width:78px;
  height:78px;
  margin:5px auto 20px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg,#eaf5ee,#fff6d9);
  border:2px solid rgba(216,167,45,.35);
  color:var(--green);
  font-size:38px;
  animation:spin 5s linear infinite;
}

.badge{
  display:inline-block;
  background:#e9f4ed;
  color:var(--green);
  border-radius:999px;
  padding:9px 18px;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.3px;
  margin-bottom:18px;
}

h1{
  color:var(--dark-green);
  font-size:clamp(38px,6vw,66px);
  line-height:1;
  letter-spacing:-2.5px;
  margin-bottom:18px;
}

h1 span{
  color:var(--gold);
}

.description{
  max-width:650px;
  margin:0 auto;
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
}

.progress-area{
  max-width:560px;
  margin:30px auto 15px;
  text-align:left;
}

.progress-info{
  display:flex;
  justify-content:space-between;
  gap:15px;
  color:var(--green);
  font-size:12px;
  font-weight:700;
  margin-bottom:9px;
}

.progress-info strong{
  color:var(--gold);
}

.progress-bar{
  height:11px;
  background:#e8eee9;
  border-radius:30px;
  overflow:hidden;
}

.progress-fill{
  width:78%;
  height:100%;
  border-radius:30px;
  background:linear-gradient(90deg,var(--green),var(--gold));
  animation:progress 2.2s ease-in-out infinite alternate;
}

.contact-buttons{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.contact-btn{
  min-width:245px;
  display:flex;
  align-items:center;
  gap:12px;
  text-align:left;
  padding:14px 18px;
  border:1px solid #dfe8e2;
  border-radius:15px;
  background:#fff;
  color:var(--green);
  text-decoration:none;
  transition:.25s ease;
}

.contact-btn:hover{
  transform:translateY(-4px);
  border-color:var(--gold);
  box-shadow:0 12px 28px rgba(3,59,40,.1);
}

.contact-icon{
  width:44px;
  height:44px;
  flex:0 0 44px;
  display:grid;
  place-items:center;
  background:#eaf5ee;
  border-radius:12px;
  font-size:21px;
}

.contact-btn b{
  display:block;
  font-size:14px;
}

.contact-btn small{
  display:block;
  color:var(--muted);
  font-size:11px;
  margin-top:3px;
}

.dots{
  display:flex;
  justify-content:center;
  gap:7px;
  margin:23px 0 18px;
}

.dots i{
  display:block;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
  animation:pulse 1.4s infinite ease-in-out;
}

.dots i:nth-child(2){animation-delay:.2s}
.dots i:nth-child(3){animation-delay:.4s}

footer{
  border-top:1px solid #edf0ed;
  padding-top:18px;
  display:flex;
  justify-content:center;
  gap:7px;
  flex-wrap:wrap;
  font-size:12px;
  color:var(--muted);
}

footer strong{
  color:var(--green);
}

@keyframes logoFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

@keyframes spin{
  from{transform:rotate(0)}
  to{transform:rotate(360deg)}
}

@keyframes progress{
  from{width:72%}
  to{width:86%}
}

@keyframes pulse{
  0%,80%,100%{
    transform:scale(.65);
    opacity:.45;
  }
  40%{
    transform:scale(1);
    opacity:1;
  }
}

@media(max-width:650px){
  .maintenance-page{
    padding:25px 14px;
  }

  .maintenance-card{
    padding:40px 20px 30px;
    border-radius:25px;
  }

  .logo-wrap{
    width:165px;
    height:165px;
    border-width:4px;
  }

  .school-logo{
    width:145px;
    height:145px;
  }

  .gear{
    width:65px;
    height:65px;
    font-size:30px;
    margin-bottom:18px;
  }

  h1{
    font-size:42px;
    letter-spacing:-1.7px;
  }

  .description{
    font-size:15px;
  }

  .progress-info{
    font-size:10px;
  }

  .contact-btn{
    width:100%;
    min-width:0;
  }
}

@media(max-width:400px){
  .logo-wrap{
    width:140px;
    height:140px;
  }

  .school-logo{
    width:123px;
    height:123px;
  }

  h1{
    font-size:36px;
  }
}
