/* About Page - Stunning Modern Design */

.about-hero {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #2dd4bf 100%);
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(94, 234, 212, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(153, 246, 228, 0.2) 0%, transparent 50%),
    url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  animation: heroPattern 30s linear infinite;
  z-index: 1;
}

@keyframes heroPattern {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-hero p {
  font-size: 1.4rem;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.95;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* Story Section with Image */
.story-section {
  padding: 100px 0;
  background: #ffffff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-content h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #1a202c;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.story-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #2d3748;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.story-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* Services Section */
.services-showcase {
  padding: 100px 0;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #22d3ee 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.services-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  z-index: 1;
}

.services-showcase .container {
  position: relative;
  z-index: 2;
}

.services-showcase h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.services-showcase .section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 4rem;
  opacity: 0.95;
  font-weight: 400;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* Infrastructure Section */
.infrastructure-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f7fafc 0%, #ffffff 100%);
}

.infrastructure-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #1a202c;
  letter-spacing: -0.02em;
}

.infrastructure-section .section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 4rem;
  font-weight: 400;
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.infra-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}

.infra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.infra-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.infra-card-content {
  padding: 30px;
}

.infra-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #2d3748;
}

.infra-card-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

/* Stats Section */
.stats-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #134e5e 0%, #71b280 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-item {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.95;
  font-weight: 500;
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background: #ffffff;
}

.values-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #1a202c;
  letter-spacing: -0.02em;
}

.values-section .section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 4rem;
  font-weight: 400;
}

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

.value-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d3748;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(67, 233, 123, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(56, 249, 215, 0.12) 0%, transparent 50%);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.35rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  opacity: 0.95;
}

.cta-section .btn {
  padding: 20px 60px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: #0f2027;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 15px 40px rgba(67, 233, 123, 0.3);
  cursor: pointer;
}

.cta-section .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(67, 233, 123, 0.4);
  background: linear-gradient(135deg, #38f9d7 0%, #43e97b 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 70px;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero p {
    font-size: 1.15rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-content h2 {
    font-size: 2.25rem;
  }

  .story-image img {
    height: 300px;
  }

  .services-showcase h2,
  .infrastructure-section h2,
  .values-section h2 {
    font-size: 2.25rem;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-section h2 {
    font-size: 2.5rem;
  }

  .cta-section p {
    font-size: 1.15rem;
  }

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

  .services-showcase,
  .infrastructure-section,
  .values-section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1.05rem;
  }

  .story-content h2 {
    font-size: 1.85rem;
  }

  .service-card,
  .value-card {
    padding: 30px 20px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
  }

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