/* COMING SOON PAGE */
.coming-soon-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00549d 0%, #003d73 50%, #ef3b42 100%);
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.coming-soon-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

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

.bg-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bg-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 15%;
  animation-delay: 5s;
}

.bg-shape.shape-3 {
  width: 250px;
  height: 250px;
  top: 60%;
  left: 70%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-30px) translateX(20px);
  }
  50% {
    transform: translateY(-60px) translateX(-20px);
  }
  75% {
    transform: translateY(-30px) translateX(20px);
  }
}

.coming-soon-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 60px 40px;
}

.coming-soon-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.coming-soon-logo {
  margin-bottom: 10px;
}

.coming-soon-logo img {
  max-width: 200px;
  height: auto;
}

.coming-soon-title {
  font-size: 56px;
  font-weight: 700;
  color: #00549d;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  margin: 0;
  line-height: 1.2;
}

.coming-soon-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #ef3b42;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  margin: 0;
  font-style: italic;
}

.coming-soon-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 600px;
  margin: 0;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00549d, #003d73);
  padding: 20px 30px;
  border-radius: 12px;
  min-width: 100px;
  box-shadow: 0 4px 15px rgba(0, 84, 157, 0.3);
}

.countdown-number {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  line-height: 1;
}

.countdown-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Notification Form */
.coming-soon-notify {
  width: 100%;
  max-width: 500px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-top: 10px;
}

.notify-title {
  font-size: 20px;
  font-weight: 600;
  color: #00549d;
  margin: 0 0 8px 0;
}

.notify-description {
  font-size: 14px;
  color: #666;
  margin: 0 0 20px 0;
}

.notify-form {
  display: flex;
  gap: 10px;
}

.notify-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  transition: all 0.3s ease;
}

.notify-input:focus {
  outline: none;
  border-color: #00549d;
}

.notify-button {
  padding: 12px 30px;
  background: linear-gradient(135deg, #00549d, #003d73);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
}

.notify-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 84, 157, 0.4);
}

.notify-message {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}

.notify-message.success {
  color: #28a745;
}

.notify-message.error {
  color: #dc3545;
}

/* Social Links */
.coming-soon-social {
  margin-top: 10px;
}

.social-text {
  font-size: 14px;
  color: #666;
  margin: 0 0 15px 0;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00549d, #003d73);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 84, 157, 0.4);
}

/* Back to Home Link */
.back-home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00549d;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.back-home-link:hover {
  color: #ef3b42;
  transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .coming-soon-container {
    padding: 40px 25px;
  }

  .coming-soon-title {
    font-size: 36px;
  }

  .coming-soon-subtitle {
    font-size: 18px;
  }

  .coming-soon-description {
    font-size: 14px;
  }

  .countdown-timer {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .countdown-item {
    padding: 15px 20px;
    min-width: 80px;
  }

  .countdown-number {
    font-size: 28px;
  }

  .countdown-label {
    font-size: 10px;
  }

  .notify-form {
    flex-direction: column;
  }

  .coming-soon-notify {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .coming-soon-wrapper {
    padding: 20px 15px;
  }

  .coming-soon-container {
    padding: 30px 20px;
  }

  .coming-soon-title {
    font-size: 28px;
  }

  .coming-soon-logo img {
    max-width: 150px;
  }

  .countdown-item {
    padding: 12px 16px;
    min-width: 70px;
  }

  .countdown-number {
    font-size: 24px;
  }
}
