/* Planet Communication — Under Construction
   Official logo is kept as the original uploaded image.
*/

:root {
  --royal-blue: #124f8f;
  --deep-blue: #0b3766;
  --emerald: #0aa34a;
  --dark: #0d1b2a;
  --muted: #5c6b78;
  --light: #f5f8fb;
  --white: #ffffff;
  --border: rgba(18, 79, 143, 0.12);
}

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

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

body {
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--dark);
  background: var(--light);
}

.construction-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 15% 15%, rgba(10, 163, 74, 0.09), transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(18, 79, 143, 0.10), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f5f8fb 100%);
}

.background-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.glow-one {
  width: 420px;
  height: 420px;
  left: -210px;
  top: -210px;
  background: rgba(10, 163, 74, 0.07);
}

.glow-two {
  width: 520px;
  height: 520px;
  right: -260px;
  bottom: -260px;
  background: rgba(18, 79, 143, 0.07);
}

.card {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: clamp(30px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(13, 27, 42, 0.12);
  text-align: center;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  justify-content: center;
}

.logo {
  display: block;
  width: min(680px, 92%);
  max-height: 280px;
  object-fit: contain;
}

.divider {
  width: 90px;
  height: 4px;
  margin: 18px auto 30px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--emerald), var(--royal-blue));
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(10, 163, 74, 0.08);
  color: #087b38;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 5px rgba(10, 163, 74, 0.10);
}

h1 {
  margin-top: 22px;
  color: var(--deep-blue);
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

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

.message {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.nepali {
  margin-top: 12px;
  color: var(--deep-blue);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.7;
  font-weight: 600;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 680px;
  margin: 34px auto 0;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--deep-blue);
  font-weight: 750;
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.05);
}

.service-icon {
  color: var(--emerald);
  font-size: 1rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 760px;
  margin: 30px auto 0;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}

.contact div {
  display: grid;
  gap: 6px;
}

.contact small {
  color: var(--emerald);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact strong {
  color: var(--dark);
  font-size: 0.94rem;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

footer span:nth-child(2) {
  color: var(--emerald);
}

@media (max-width: 680px) {
  .construction-page {
    padding: 16px;
  }

  .card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .logo {
    width: 100%;
    max-height: 190px;
  }

  .services,
  .contact {
    grid-template-columns: 1fr;
  }

  .services {
    gap: 10px;
  }

  .contact {
    gap: 16px;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }
}
