/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 3rem 1rem;
}

/* === Fixed Header Badge === */
header.fixed-logo-header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
}

header .logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  box-shadow: none;
  animation: fadePop 1.2s ease-out forwards;
  opacity: 0;
}

/* === Coming Soon (Hero Section) === */
.coming-soon {
  background: #f0f4ff;
  text-align: center;
  border-radius: 12px;
  padding: 5rem 2rem;
  margin-top: 6rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  animation: fadeInUp 1.2s ease-out;
}

.coming-soon h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: #4a56e2;
  animation: floatPulse 4s ease-in-out infinite;
}

.coming-soon p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #555;
}

/* === Card Layout === */
.card {
  background: #feedf7;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #333;
}

/* === Contact Widget === */
.contact-widget {
  background: #2b2d42;
  color: white;
  padding: 3rem 1.5rem;
  margin-top: 4rem;
  border-radius: 12px;
}

.contact-widget h2 {
  color: #ffd166;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-widget ul {
  list-style: none;
  padding-left: 0;
}

.contact-widget li {
  margin-bottom: 0.8rem;
}

.contact-widget a {
  color: #8ecae6;
  text-decoration: none;
}

.contact-widget a:hover {
  color: white;
  text-decoration: underline;
}

/* === Animations === */
@keyframes fadePop {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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

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

/* === Responsive === */
@media (max-width: 600px) {
  .coming-soon h2 {
    font-size: 2rem;
  }

  .card, .contact-widget {
    padding: 1.5rem;
  }
}
