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

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  background: #002b55;
}

.coming-soon {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 46px);
  background: url("background.jpg") center / cover no-repeat;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 171, 27, 0.32), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(0, 120, 190, 0.45), transparent 34%),
    linear-gradient(125deg, rgba(0, 35, 70, 0.96), rgba(0, 78, 130, 0.82), rgba(0, 0, 0, 0.74));
}

.container {
  width: min(1080px, 100%);
  position: relative;
  z-index: 5;
  padding: clamp(24px, 5vw, 52px);
  border-radius: clamp(22px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(14px);
  animation: cardReveal 0.9s ease both;
}

.logo-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(430px, 86vw);
  padding: clamp(9px, 2vw, 14px) clamp(12px, 3vw, 20px);
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: clamp(18px, 3vw, 26px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  animation: logoFloat 4s ease-in-out infinite;
}

.logo-box img {
  width: 100%;
  max-width: 390px;
  height: auto;
  display: block;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 50px;
  background: #ffab1b;
  color: #073b66;
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 900;
  margin-bottom: clamp(14px, 2vw, 20px);
  animation: upFade 0.8s 0.15s ease both;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 12vw, 132px);
  line-height: 0.9;
  letter-spacing: clamp(2px, 0.8vw, 6px);
  text-transform: uppercase;
  color: #ffab1b;
  text-shadow: clamp(3px, 0.7vw, 7px) clamp(3px, 0.7vw, 7px) 0 #00355f;
  margin-bottom: clamp(12px, 2vw, 18px);
  animation: upFade 0.8s 0.3s ease both;
}

h2 {
  max-width: 900px;
  margin: 0 auto clamp(14px, 2vw, 20px);
  font-size: clamp(20px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  animation: upFade 0.8s 0.45s ease both;
}

p {
  max-width: 820px;
  margin: 0 auto clamp(24px, 4vw, 34px);
  font-size: clamp(15.5px, 2vw, 20px);
  line-height: 1.75;
  color: #f5faff;
  animation: upFade 0.8s 0.6s ease both;
}

.service-grid {
  width: 100%;
  max-width: 860px;
  margin: 0 auto clamp(24px, 4vw, 34px);
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 14px;
  animation: upFade 0.8s 0.75s ease both;
}

.service-grid span {
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(0, 88, 145, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  transition: 0.35s ease;
}

.service-grid span:hover {
  background: #ffab1b;
  color: #073b66;
  transform: translateY(-6px);
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  max-width: 660px;
  margin: 0 auto clamp(22px, 4vw, 30px);
  animation: upFade 0.8s 0.9s ease both;
}

.contact-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 18px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 16px;
  background: rgba(0, 62, 105, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: clamp(17px, 2.4vw, 23px);
  font-weight: 900;
}

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 56px;
  padding: 16px 44px;
  border-radius: 50px;
  background: #ffab1b;
  color: #073b66;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(255, 171, 27, 0.65);
  animation: upFade 0.8s 1.05s ease both, btnGlow 2.4s 1.2s infinite ease-in-out;
  transition: 0.35s ease;
}

.main-btn:hover {
  background: #ffffff;
  transform: translateY(-5px);
}

.shape {
  position: absolute;
  z-index: 2;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  animation: rotateBox 12s linear infinite;
}

.shape-one {
  width: clamp(58px, 8vw, 115px);
  height: clamp(58px, 8vw, 115px);
  left: 7%;
  top: 14%;
}

.shape-two {
  width: clamp(48px, 7vw, 92px);
  height: clamp(48px, 7vw, 92px);
  right: 7%;
  top: 20%;
  animation-delay: 2s;
}

.shape-three {
  width: clamp(50px, 7vw, 100px);
  height: clamp(50px, 7vw, 100px);
  left: 11%;
  bottom: 12%;
  animation-delay: 4s;
}

@keyframes cardReveal {
  from { opacity: 0; transform: scale(0.96) translateY(24px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes upFade {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 16px rgba(255, 171, 27, 0.55); }
  50% { box-shadow: 0 0 38px rgba(255, 171, 27, 0.95); }
}

@keyframes rotateBox {
  from { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(180deg) translateY(-22px); }
  to { transform: rotate(360deg) translateY(0); }
}

/* Tablet alignment */
@media (max-width: 991px) {
  .coming-soon {
    align-items: center;
    padding: 28px 18px;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    max-width: 700px;
  }

  .service-grid span:last-child {
    grid-column: 2 / 3;
  }
}

/* Mobile alignment */
@media (max-width: 575px) {
  .coming-soon {
    min-height: 100svh;
    padding: 16px 12px;
  }

  .container {
    padding: 24px 14px;
    border-radius: 22px;
  }

  .logo-box {
    width: min(310px, 88vw);
    margin-bottom: 16px;
  }

  .badge {
    width: auto;
    padding: 9px 16px;
  }

  h1 {
    font-size: clamp(54px, 18vw, 78px);
    text-shadow: 3px 3px 0 #00355f;
  }

  h2 {
    font-size: clamp(18px, 6vw, 25px);
  }

  p {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-grid span {
    min-height: 46px;
    padding: 10px 8px;
    font-size: 13.5px;
    white-space: normal;
    border-radius: 14px;
  }

  .service-grid span:last-child {
    grid-column: 1 / -1;
    max-width: 180px;
    width: 100%;
    justify-self: center;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-row a {
    min-height: 52px;
    font-size: 17px;
  }

  .main-btn {
    width: 100%;
    max-width: 260px;
    min-height: 52px;
  }

  .shape {
    opacity: 0.45;
  }

  .shape-one {
    left: -28px;
    top: 12%;
  }

  .shape-two {
    right: -30px;
    top: 46%;
  }

  .shape-three {
    display: none;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .container {
    padding: 20px 12px;
  }

  p {
    font-size: 14.5px;
  }

  .service-grid span {
    font-size: 13px;
  }

  .contact-row a {
    font-size: 15.5px;
  }
}
