/* Home Page Styles */

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Single orange color subtle background */
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(34, 206, 172, 0.06) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Our Journey button hover - add slight shadow, text stays white */
.hero-cta .btn-outline:hover {
  background: transparent;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Identity Section */
.identity {
  padding: 4rem 0;
}

.identity-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
}

.identity-content h3 {
  margin-bottom: 1rem;
}

.identity-content p {
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Features Section */
.features {
  /* Single orange color subtle background */
  background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.03) 100%);
}

.feature-card {
  text-align: center;
}

/* Changed "What Drives Us" feature cards to use turquoise outlines */
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 206, 172, 0.1);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-lg);
  color: var(--secondary);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-card p {
  line-height: 1.7;
}

/* Stats Section */
.stats {
  /* Single orange color subtle background */
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%), var(--bg-dark);
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.stat-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* Single orange color */
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.stat-card.animated::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  /* Single orange color */
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--bg-darker);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Official social icons without orange tint */
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
