/* ===================================================
   Under Construction — Custom Overrides
   =================================================== */

/* Full viewport, centered, with bg image + dark overlay */
.coming-soon-area {
  min-height: 100vh;
  background: #101015 url('../img/bg-statisense.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 0 40px;
  position: relative;
}

.coming-soon-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 16, 0.80);
}

.coming-soon-area .container {
  position: relative;
  z-index: 1;
}

/* Remove the hardcoded inline margin on the col */
.coming-soon-area .col-md-12 {
  margin: 0 !important;
}

/* Logo */
.cs-logo {
  margin-bottom: 8px;
}

.cs-logo img {
  max-height: 96px;
  filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
}

/* Heading */
.c-son-title {
  margin: 28px auto 20px;
}

.c-son-title h3 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 52px;
  display: inline-block;
  position: relative;
}

.c-son-title h3::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: #a0ce4e;
  border-radius: 2px;
  margin: 14px auto 0;
}

.c-son-title p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 620px;
}

/* Countdown wrapper */
.countdown-wrapper {
  margin: 28px 0;
}

/* Individual countdown boxes */
.countdown .cdown {
  width: 114px;
  height: 114px;
  border: 1.5px solid rgba(160, 206, 78, 0.45);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding-top: 16px;
  margin: 8px;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.countdown .cdown:hover {
  border-color: #a0ce4e;
  background: rgba(160, 206, 78, 0.10);
  transform: translateY(-5px);
}

.countdown .cdown .time-count {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  line-height: 48px;
}

.countdown .cdown p {
  font-size: 11px;
  color: #a0ce4e;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 16px;
  margin: 0;
}

/* Footer */
.cs-footer {
  margin-top: 36px;
}

.footer-copyr-logo {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 0;
}

.footer-copyr-logo p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.40);
  letter-spacing: 0.5px;
  margin: 12px auto;
}

/* Social icons — outlined circles with smooth hover */
.footer-social ul {
  margin: 18px auto 0;
}

.footer-social ul li a {
  width: 38px;
  height: 38px;
  padding-top: 9px;
  font-size: 14px;
  background-color: transparent;
  border: 1.5px solid rgba(160, 206, 78, 0.35);
  color: rgba(255, 255, 255, 0.60);
  border-radius: 50%;
  margin: 4px;
  transition: background-color 0.3s ease, border-color 0.3s ease,
              color 0.3s ease, transform 0.3s ease;
}

.footer-social ul li a:hover {
  background-color: #a0ce4e;
  border-color: #a0ce4e;
  color: #ffffff;
  transform: translateY(-4px) !important;
}

/* Full-screen preloader with CSS spinner */
div#preloader {
  background: #101015;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

div#preloader::after {
  content: '';
  width: 52px;
  height: 52px;
  border: 3px solid rgba(160, 206, 78, 0.2);
  border-top-color: #a0ce4e;
  border-radius: 50%;
  animation: preloader-spin 0.75s linear infinite;
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .c-son-title h3 {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 1px;
  }

  .c-son-title p {
    font-size: 14px;
    line-height: 1.65;
  }

  .countdown .cdown {
    width: 72px;
    height: 88px;
    padding-top: 12px;
    margin: 5px;
    border-radius: 8px;
  }

  .countdown .cdown .time-count {
    font-size: 28px;
    line-height: 36px;
  }

  .countdown .cdown p {
    font-size: 9px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .cs-logo img {
    max-height: 70px;
  }

  .countdown .cdown {
    width: 62px;
    height: 80px;
    padding-top: 10px;
    margin: 3px;
  }

  .countdown .cdown .time-count {
    font-size: 24px;
    line-height: 30px;
  }
}
