/**
 * About page specific styles for Yellow Stone Infra
 */

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #2e8b57 0%, #3cb371 50%, #228b22 100%);
  min-height: 60vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.hero-badge {
  margin-bottom: 1.5rem;
}

.hero-buttons {
  margin-top: 2rem;
}

/* Animation Keyframes */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes ping {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}

/* Floating Circles */
.floating-circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(230, 184, 0, 0.15);
  z-index: 0;
}

.circle-1 {
  width: 150px;
  height: 150px;
  top: -30px;
  left: 10%;
  animation: bounce 8s infinite alternate;
}

.circle-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 15%;
  animation: pulse 6s infinite;
}

.circle-3 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 20%;
  animation: ping 10s infinite;
}

.circle-4 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 5%;
  animation: bounce 7s infinite alternate-reverse;
}

.hero-badge {
  display: inline-block;
  background: rgba(139, 69, 19, 0.9);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
  background: rgba(255,255,255,0.85) !important;
  -webkit-text-fill-color: #111 !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  padding: 0.25em 0.75em;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  letter-spacing: -1px;
}

.hero h1 .highlight {
  color: #ff6b35;
}

.hero p {
  font-size: 1.2rem;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #8B4513;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-secondary {
  background: transparent;
  color: #8B4513;
  padding: 15px 30px;
  border: 2px solid #8B4513;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #6B3410;
  transform: translateY(-2px);
}

.btn-secondary:hover {
  background: #8B4513;
  color: white;
}

/* Statistics Section */
.stats-section {
  background: #2C3E50;
  padding: 80px 40px;
  color: white;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stats-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.stats-header p {
  font-size: 1.1rem;
  color: #BDC3C7;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: #E6B800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #E6B800;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #BDC3C7;
  font-weight: 500;
}

/* Content Sections */
.content-section {
  padding: 80px 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.section-content.reverse {
  direction: rtl;
}

.section-content.reverse > * {
  direction: ltr;
}

.content-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-icon {
  width: 50px;
  height: 50px;
  background: #E6B800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.content-text p {
  font-size: 1.1rem;
  color: #5D6D7E;
  line-height: 1.7;
  margin-bottom: 20px;
}

.content-text .highlight {
  color: #E6B800;
  font-weight: 600;
}

.content-image {
  position: relative;
}

.content-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Values List */
.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: #F8F9FA;
  border-radius: 10px;
  border-left: 4px solid #E6B800;
}

.values-list li i {
  color: #E6B800;
  font-size: 20px;
  margin-top: 2px;
}

.value-content strong {
  color: #2C3E50;
  font-weight: 600;
}

.value-content {
  color: #5D6D7E;
}

/* Differentiators List */
.diff-list {
  list-style: none;
  padding: 0;
}

.diff-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #2C3E50;
}

.diff-list li i {
  color: #E6B800;
  font-size: 18px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #F4E4A6 0%, #E6B800 100%);
  padding: 60px 40px;
  text-align: center;
}

.cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 1.1rem;
  color: #2C3E50;
  margin-bottom: 30px;
}

/* Team Section */
.team-section {
  padding: 80px 40px;
  background: #F8F9FA;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 15px;
}

.team-header p {
  font-size: 1.1rem;
  color: #5D6D7E;
  max-width: 600px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid #E6B800;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 8px;
}

.team-role {
  color: #E6B800;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-description {
  color: #5D6D7E;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .section-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero, .content-section, .stats-section, .team-section {
    padding: 60px 20px;
  }
}