body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  overflow: hidden;
}

/* Page Loader Overlay */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader-content {
  text-align: center;
  color: white;
}

.page-loader .logo {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.page-loader .logo i {
  font-size: 2.5rem;
  color: white;
}

.page-loader .loader {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  position: relative;
}

.page-loader .loader-ring {
  width: 100%;
  height: 100%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
}

.page-loader .loader-ring:nth-child(2) {
  width: 45px;
  height: 45px;
  top: 7.5px;
  left: 7.5px;
  animation-duration: 1.5s;
  animation-direction: reverse;
}

.page-loader .loader-text {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Main Content */
.coming-soon-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.coming-soon-container.loaded {
  opacity: 1;
  transform: translateY(0);
}

.coming-soon-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 4rem 3rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 600px;
  width: 90%;
  position: relative;
  overflow: hidden;
}

.coming-soon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

.logo-container {
  margin-bottom: 2rem;
}

.main-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.main-logo i {
  font-size: 2.5rem;
  color: white;
}

.brand-name {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: 1.25rem;
  color: #718096;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-info {
  background: rgba(102, 126, 234, 0.1);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 3rem;
}

.contact-info h5 {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #4a5568;
}

.contact-item i {
  color: #667eea;
  width: 20px;
  margin-right: 0.75rem;
}

/* Background Animation */
.bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.floating-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: -2s;
}

.floating-shape:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: -4s;
}

.floating-shape:nth-child(4) {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 30%;
  animation-delay: -1s;
}

.social-media {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 2rem;
  a {
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    &:hover {
      transform: scale(1.1);
    }
  }
  .bg1 {
    background-color: #11cbf6;
  }
  .bg2 {
    background-color: #f555c1;
  }
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    /* box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3); */
  }

  50% {
    transform: scale(1.05);
    /* box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5); */
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon-card {
    padding: 3rem 2rem;
    margin: 1rem;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .brand-name {
    font-size: 1.75rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }

  .contact-info {
    padding: 1.5rem;
  }
}
