/* Variables */
:root {
  --accent: #f28c28;
  --accent-2: #2d9cdb;
  --bg-soft: #f6f7f9;
  --card-bg: #ffffff;
  --muted: #58606b;
  --text: #111217;
}

/* Page Hero */
.page-hero {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.02;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Coming Soon Section */
.coming-soon-section {
  background: var(--card-bg);
  padding: 120px 20px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-content {
  max-width: 700px;
  text-align: center;
}

.coming-soon-content h1 {
  font-size: clamp(28px, 5vw, 48px);
  color: var(--text);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.coming-soon-content p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: #e8491d;
  color: white;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #c73d17;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 73, 29, 0.3);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coming-soon-content {
  animation: fadeIn 0.6s ease both;
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon-section {
    padding: 80px 20px;
  }
}