:root {
  --red: #e83500;
  --red2: #ff4d1a;
  --red-g: rgba(232, 53, 0, 0.45);
  --amber: #f5a623;
  --amber-g: rgba(245, 166, 35, 0.35);
  --blue: #00c2ff;
  --blue-g: rgba(0, 194, 255, 0.3);
  --bg-dark: #06060a;
  --card-bg: rgba(14, 14, 24, 0.72);
  --text-primary: #dde0ec;
  --text-muted: #aeb2c8;
  --line: rgba(255, 255, 255, 0.1);
  --glow: 0 0 28px var(--red-g);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--text-primary);
  background: radial-gradient(circle at 20% 12%, rgba(232, 53, 0, 0.2) 0%, var(--bg-dark) 40%, #040408 100%);
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

.bg-photo {
  position: fixed;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  filter: saturate(1.05);
  z-index: -5;
  animation: slowFloat 14s ease-in-out infinite;
}

.bg-photo-1 {
  width: min(25vw, 330px);
  aspect-ratio: 4 / 5;
  top: 8%;
  left: 3%;
  background-image: url("../images/about-section-img.jpg");
}

.bg-photo-2 {
  width: min(30vw, 360px);
  aspect-ratio: 16 / 10;
  right: 4%;
  top: 10%;
  background-image: url("../images/led-products/outdoor-LED.jpg");
  animation-delay: 1s;
}

.bg-photo-3 {
  width: min(28vw, 340px);
  aspect-ratio: 16 / 10;
  right: 8%;
  bottom: 10%;
  background-image: url("../images/led-products/video-wall.jpg");
  animation-delay: 2s;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  z-index: -4;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.25;
  z-index: -3;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 53, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 53, 0, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  animation: drift 12s linear infinite;
  z-index: -2;
}

.orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(80px);
  z-index: -1;
  animation: float 10s ease-in-out infinite;
}

.orb-1 {
  top: -90px;
  left: -100px;
  background: rgba(232, 53, 0, 0.42);
}

.orb-2 {
  bottom: -120px;
  right: -120px;
  background: rgba(245, 166, 35, 0.35);
  animation-delay: 1.5s;
}

.coming-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

.coming-hero {
  display: block;
  max-width: 1080px;
  margin: auto;
}

.hero-content {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1rem, 2vw, 2rem);
  background: linear-gradient(145deg, rgba(12, 12, 20, 0.88), var(--card-bg));
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
  text-align: center;
  display: grid;
  gap: 0.75rem;
  overflow: visible;
}

.top-content {
  display: grid;
  gap: 0.28rem;
  position: relative;
  z-index: 2;
}

.logo-wrap {
  position: relative;
  width: max-content;
  margin: 0 auto 0.35rem;
}

.brand-logo {
  width: clamp(74px, 12vw, 118px);
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.38rem;
  background: rgba(4, 13, 30, 0.6);
  box-shadow: 0 0 24px var(--red-g);
}

.pulse-ring {
  position: absolute;
  inset: -12px;
  border-radius: 999px;
  border: 1px solid rgba(232, 53, 0, 0.52);
  animation: pulse 2.4s ease-out infinite;
}

.tagline {
  margin: 0.22rem 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--amber);
}

h1 {
  margin: 0.1rem 0 0.35rem;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.description {
  margin: 0 auto 0.2rem;
  max-width: 680px;
  color: var(--text-muted);
  font-size: clamp(0.92rem, 1.5vw, 1.04rem);
}

.status-row {
  margin: 0.45rem auto 0.25rem;
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #e7d8c5;
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(24, 14, 10, 0.5);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7);
  animation: ping 1.8s infinite;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0.3rem 0 0.2rem;
  position: relative;
  z-index: 2;
}

.feature {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(16, 12, 12, 0.85);
  border-radius: 14px;
  padding: 0.85rem 0.6rem;
}

.feature h2 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--red);
  text-shadow: 0 0 14px var(--red-g);
}

.feature p {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: #c4d0ec;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, var(--red), var(--red2));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin: 0.2rem auto 0;
  width: auto;
  min-width: 180px;
  max-width: max-content;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px var(--red-g);
}

.contact-details {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.address-block {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.6rem;
}

.address-block i {
  color: var(--red);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.contacts-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .contacts-grid {
    flex-direction: row;
    justify-content: center;
    gap: 3.5rem;
  }
}

.person-contact {
  text-align: left;
}

.person-contact-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.contact-row i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.email-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.email-link:hover {
  color: var(--red);
  text-decoration: underline;
}

@keyframes drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(42px);
  }
}

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

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(15px, -20px, 0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.26);
    opacity: 0;
  }
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(245, 166, 35, 0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-140%) skewX(-16deg);
  }
  100% {
    transform: translateX(350%) skewX(-16deg);
  }
}

@media (max-width: 991.98px) {
  .coming-wrap {
    padding: 0.7rem 0;
  }

  .bg-photo-1 {
    width: 42vw;
    left: -12vw;
  }

  .bg-photo-2 {
    width: 44vw;
    right: -12vw;
  }

  .bg-photo-3 {
    width: 45vw;
    right: -10vw;
  }
}

@media (max-width: 767.98px) {
  body {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
  }

  .coming-wrap {
    height: auto;
    min-height: 100vh;
  }

  .bg-photo {
    display: none;
  }

  .bg-video {
    opacity: 0.26;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .status-row {
    border-radius: 18px;
    text-align: left;
    width: 100%;
    justify-content: flex-start;
  }

  .feature h2 {
    font-size: 1.15rem;
  }

  .feature p {
    font-size: 0.72rem;
  }

  .contact-btn {
    min-width: 165px;
  }
}
