html,
body.aw-maintenance-page {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Inter", Arial, sans-serif;
  background: #eaf5fb;
  color: #173a56;
}

.aw-maintenance-page * {
  box-sizing: border-box;
}

.aw-maintenance-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(0, 148, 216, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(70, 198, 240, 0.14), transparent 30%),
    linear-gradient(180deg, #fafdff 0%, #eef8fc 45%, #e2f0f8 100%);
}

.aw-maintenance-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(0, 132, 203, 0.09), transparent 14%),
    radial-gradient(circle at 84% 16%, rgba(0, 132, 203, 0.08), transparent 12%),
    radial-gradient(circle at 18% 84%, rgba(70, 198, 240, 0.10), transparent 14%),
    radial-gradient(circle at 80% 80%, rgba(70, 198, 240, 0.08), transparent 12%);
}

/* Floating bubbles */
.aw-maintenance-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.aw-maintenance-bubbles .bubble {
  position: absolute;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.85), rgba(255,255,255,0.20) 55%, rgba(255,255,255,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.38);
  box-shadow: inset 0 0 18px rgba(255,255,255,0.22), 0 10px 26px rgba(0, 132, 203, 0.10);
  opacity: 0.55;
  animation: awBubbleRise linear infinite;
}

.bubble--1 { left: 7%;  width: 22px; height: 22px; animation-duration: 16s; animation-delay: 0s; }
.bubble--2 { left: 16%; width: 14px; height: 14px; animation-duration: 12s; animation-delay: 2s; }
.bubble--3 { left: 29%; width: 34px; height: 34px; animation-duration: 19s; animation-delay: 4s; }
.bubble--4 { left: 50%; width: 18px; height: 18px; animation-duration: 14s; animation-delay: 1s; }
.bubble--5 { left: 67%; width: 26px; height: 26px; animation-duration: 20s; animation-delay: 3s; }
.bubble--6 { left: 79%; width: 12px; height: 12px; animation-duration: 13s; animation-delay: 5s; }
.bubble--7 { left: 89%; width: 28px; height: 28px; animation-duration: 18s; animation-delay: 6s; }
.bubble--8 { left: 95%; width: 16px; height: 16px; animation-duration: 14s; animation-delay: 7s; }

@keyframes awBubbleRise {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  50% {
    transform: translate3d(18px, -45vh, 0) scale(1.05);
  }
  100% {
    transform: translate3d(-10px, -115vh, 0) scale(1.15);
    opacity: 0;
  }
}

/* More visible blue waves */
.aw-maintenance-wave {
  position: absolute;
  left: -10%;
  width: 120%;
  pointer-events: none;
  border-radius: 45% 55% 0 0 / 100% 100% 0 0;
}

.aw-maintenance-wave--one {
  bottom: -55px;
  height: 190px;
  background: linear-gradient(180deg, rgba(255,255,255,0.30), rgba(133, 213, 245, 0.18));
  animation: awWaveMove1 18s ease-in-out infinite alternate;
}

.aw-maintenance-wave--two {
  bottom: -85px;
  height: 235px;
  background: linear-gradient(180deg, rgba(120, 210, 245, 0.22), rgba(0, 148, 216, 0.12));
  animation: awWaveMove2 24s ease-in-out infinite alternate;
}

.aw-maintenance-wave--three {
  bottom: -125px;
  height: 285px;
  background: linear-gradient(180deg, rgba(0, 148, 216, 0.14), rgba(0, 110, 190, 0.10));
  animation: awWaveMove3 30s ease-in-out infinite alternate;
}

@keyframes awWaveMove1 {
  0% { transform: translateX(-2%) translateY(0); }
  100% { transform: translateX(2%) translateY(-7px); }
}

@keyframes awWaveMove2 {
  0% { transform: translateX(2%) translateY(0); }
  100% { transform: translateX(-2%) translateY(-11px); }
}

@keyframes awWaveMove3 {
  0% { transform: translateX(-1%) translateY(0); }
  100% { transform: translateX(1%) translateY(-9px); }
}

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

/* Premium glass card */
.aw-maintenance__card {
  width: 100%;
  max-width: 860px;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.68));
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 30px;
  box-shadow:
    0 30px 80px rgba(16, 70, 102, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(255,255,255,0.18);
  padding: 42px 42px 36px;
  text-align: center;
}

.aw-maintenance__brand-wrap {
  position: relative;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

.aw-maintenance__brand {
  position: relative;
  z-index: 2;
}

.aw-maintenance__brand-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 110px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 148, 216, 0.18) 0%, rgba(70, 198, 240, 0.10) 38%, rgba(255,255,255,0) 72%);
  filter: blur(10px);
  z-index: 1;
  pointer-events: none;
}

.aw-maintenance__brand-shimmer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 70px;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.40) 35%,
    rgba(255,255,255,0.08) 55%,
    rgba(255,255,255,0) 75%
  );
  filter: blur(1px);
  animation: awLogoShimmer 5.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes awLogoShimmer {
  0% {
    opacity: 0;
    transform: translate(-58%, -50%) skewX(-18deg);
  }
  15% {
    opacity: 0.85;
  }
  35% {
    opacity: 0;
    transform: translate(-38%, -50%) skewX(-18deg);
  }
  100% {
    opacity: 0;
    transform: translate(-38%, -50%) skewX(-18deg);
  }
}

/* Smaller centered logo */
.aw-maintenance__logo {
  max-width: 430px;
  width: 100%;
  height: auto;
}

.aw-maintenance__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 148, 216, 0.10);
  color: #007cc2;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow:
    inset 0 0 0 1px rgba(0, 148, 216, 0.08),
    0 8px 18px rgba(0, 148, 216, 0.08);
}

.aw-maintenance__title {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.03;
  font-weight: 800;
  color: #173a56;
  letter-spacing: -0.03em;
}

.aw-maintenance__text {
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #35576f;
}

.aw-maintenance__info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto 24px;
  max-width: 700px;
}

.aw-maintenance__info-item {
  background: rgba(247, 251, 253, 0.55);
  border: 1px solid rgba(153, 214, 240, 0.34);
  border-radius: 18px;
  padding: 18px 20px;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}

.aw-maintenance__info-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #007cc2;
}

.aw-maintenance__info-value {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  color: #173a56;
}

.aw-maintenance__footer {
  padding-top: 14px;
  border-top: 1px solid rgba(0, 132, 203, 0.10);
}

.aw-maintenance__footer p {
  margin: 0;
  font-size: 0.98rem;
  color: #567388;
}

@media (max-width: 767.98px) {
  .aw-maintenance {
    padding: 28px 14px;
  }

  .aw-maintenance__card {
    padding: 28px 20px 24px;
    border-radius: 22px;
  }

  .aw-maintenance__info {
    grid-template-columns: 1fr;
  }

  .aw-maintenance__text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .aw-maintenance__logo {
    max-width: 290px;
  }

  .aw-maintenance__brand-glow {
    width: 210px;
    height: 84px;
  }

  .aw-maintenance__brand-shimmer {
    width: 180px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aw-maintenance-bubbles .bubble,
  .aw-maintenance-wave,
  .aw-maintenance__brand-shimmer {
    animation: none !important;
  }
}