/* =========================
   GLOBAL STYLES
========================= */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* =========================
   HERO SECTION START
========================= */
.construction-hero {
  position: relative;
  height: 100vh;
  color: #fff;
  background: url('desktop-bg.jpg') no-repeat center center/cover;
  overflow: hidden;
}

/* Left black gradient overlay */
.construction-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0));
  z-index: 1;
}

/* Content positioning */
.content-wrapper {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

/* Main title */
.main-title {
  font-size: 90px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}

/* Black info box */
.info-box {
  background: #000;
  padding: 25px;
  display: inline-block;
  line-height: 21px;
}

.info-box h2 {
  font-size: 68px;
  font-weight: 600;
  margin-bottom: 0;
}

.info-box .subtitle {
  letter-spacing: 24px;
  font-size: 44px;
  margin-bottom: 25px;
}

.info-box .address {
  font-size: 23px;
  opacity: 0.8;
  text-align: center;
  text-transform: uppercase;
  line-height: 29px;
  color: #FFF;
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 768px) {

  .construction-hero {
    background: #7dafdc; /* Sky blue fallback */
    display: flex;
    /* align-items: center; */
    justify-content: center;
    text-align: center;
  }

  /* Remove left overlay */
  .construction-hero .overlay {
    display: none;
  }

  /* Add mobile background image at bottom */
  .construction-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: url('mobile-bg.png') no-repeat bottom center/contain;
    z-index: 1;
    background-size: cover;
  }

  /* Top fade effect */
  .content-wrapper {
    max-width: 100%;
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .main-title {
    font-size: 33px;
    margin-top: 90px;
    margin-bottom: 31px;
  }

  .info-box {
    width: 100%;
    background: rgba(0,0,0,0.85);
    padding: 16px 22px;
  }

.info-box h2 {
    font-size: 26px;
}
  .info-box .subtitle {
    margin-bottom: 5px;
    font-size: 11px;
    letter-spacing: 9px;
}
  .info-box .address {
    font-size: 15px;
    text-transform: capitalize;
    line-height: 23px;
}
}