/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  background-color: #8b8fb1;
}

img {
  max-width: 100%;
  display: block;
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.row.justify-content-center {
  justify-content: center;
}

.col-xs-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* ============================================================
   Page Root
   ============================================================ */
.under-construction-page {
  height: 100vh;
  max-height: 100vh;
  background-color: #8b8fb1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ===== Main Container ===== */
.under-construction-page .main-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(30px, 6.5vh, 60px) clamp(30px, 8vw, 120px);
}

/* ===== Logo ===== */
.under-construction-page .logo-container {
  margin-bottom: clamp(25px, 6.5vh, 60px);
}

.under-construction-page .logo {
  height: clamp(40px, 4.5vw, 64px);
  width: auto;
}

/* ===== Main Title ===== */
.under-construction-page .main-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: clamp(26px, 2.8vw, 45px);
  line-height: 1;
  letter-spacing: 0.5px;
  color: #ffffff;
  font-variant: small-caps;
  text-align: center;
  margin-bottom: clamp(18px, 3.2vh, 30px);
  text-shadow: 0px 2px 6px #00000026;
}

/* ===== Description ===== */
.under-construction-page .main-description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.6vw, 25px);
  line-height: clamp(28px, 3.2vw, 50px);
  letter-spacing: -1px;
  color: #ffffff;
  text-align: justify;
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== Bottom Section ===== */
.under-construction-page .bottom-section {
  margin-top: auto;
  padding-top: clamp(18px, 3.2vh, 30px);
  align-items: center;
}

/* ===== Improvement Message ===== */
.under-construction-page .improvement-message {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(16px, 1.6vw, 25px);
  line-height: clamp(22px, 2.2vw, 34px);
  letter-spacing: -1px;
  color: #ffffff;
  margin-top: clamp(40px, 8.5vh, 80px);
  margin-bottom: clamp(22px, 4vh, 40px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Contact Info ===== */
.under-construction-page .contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.7vh, 25px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.under-construction-page .contact-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.3vw, 20px);
  line-height: clamp(20px, 2vw, 30px);
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 10px;
}

.under-construction-page .contact-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.3vw, 20px);
  line-height: clamp(20px, 2vw, 30px);
  letter-spacing: -1px;
  color: #ffffff;
  display: block;
  margin-bottom: 10px;
}

/* ===== Illustration ===== */
.under-construction-page .rocket-illustration {
  position: absolute;
  bottom: 20px;
  right: clamp(30px, 8vw, 120px);
  max-height: clamp(280px, 45vh, 420px);
  height: auto;
  width: auto;
  z-index: 0;
}

/* ============================================================
   Mobile (max-width: 767px)
   ============================================================ */
@media (max-width: 767px) {
  .under-construction-page {
    height: auto;
    max-height: none;
    overflow: auto;
    min-height: 100vh;
  }

  .under-construction-page .main-container {
    padding: 20px;
  }

  .under-construction-page .logo-container {
    margin-bottom: 30px;
  }

  .under-construction-page .logo {
    height: 38px;
  }

  .under-construction-page .main-title {
    font-size: 30px;
    line-height: 28px;
    margin-top: 20px;
  }

  .under-construction-page .main-description {
    font-size: 16px;
    line-height: 26px;
  }

  .under-construction-page .bottom-section {
    padding-top: 40px;
    text-align: center;
  }

  .under-construction-page .improvement-message {
    font-size: 16px;
    line-height: 24px;
    margin-top: 40px;
  }

  .under-construction-page .contact-info {
    gap: 15px;
  }

  .under-construction-page .contact-label {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 4px;
  }

  .under-construction-page .contact-text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 2px;
  }

  .under-construction-page .rocket-illustration {
    position: static;
    display: block;
    max-height: 280px;
    margin-top: -20px;
  }
}
