/* About Us Page Specific Styles */

.about-hero {
  padding: 10rem 2rem 6rem;
  text-align: center;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(30, 58, 138, 0.05));
  transform: rotate(15deg);
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.company-logo {
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp 1s ease 0.2s forwards;
}

.main-logo {
  height: 120px;
  width: auto;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.main-logo:hover {
  transform: scale(1.05);
}

.company-name {
  font-size: 4rem;
  font-weight: 800;
  margin: 1rem 0;
  background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: slideUp 1s ease 0.4s forwards;
}

.tagline {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-style: italic;
  opacity: 0;
  animation: slideUp 1s ease 0.6s forwards;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Vision and Mission Section */
.vision-mission {
  padding: 6rem 0;
  background: var(--white);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.vision-card, .mission-card {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vision-card::before, .mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--white);
  font-size: 2rem;
}

.vision-card h2, .mission-card h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.vision-card p, .mission-card p {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Core Values Section */
.core-values {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #e5e7eb 100%);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 4rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-row {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 6px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.value-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(30, 58, 138, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-row:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--primary-color);
}

.value-row:hover::before {
  opacity: 1;
}

.value-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--bg-light);
  margin-right: 2rem;
  min-width: 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.value-icon {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.value-row:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.value-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.value-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.value-row:hover .value-content h3 {
  color: var(--secondary-color);
}

.value-content p {
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
}

/* Founder Message Section */
.founder-message {
  padding: 6rem 0;
  background: var(--white);
}

.founder-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.founder-quote {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  margin-top: 3rem;
}

.founder-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 4rem;
  color: var(--accent-color);
  font-family: Georgia, serif;
}

.founder-quote blockquote {
  margin: 0;
  text-align: left;
}

.founder-quote p {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.founder-quote p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--primary-color);
}

.founder-quote strong {
  color: var(--accent-color);
  font-weight: 700;
}

/* CTA Section */
.about-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.about-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--accent-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .company-name {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vision-card, .mission-card {
    padding: 2rem;
  }
  
  .values-list {
    gap: 1.5rem;
  }
  
  .value-row {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .value-number {
    margin-right: 0;
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }
  
  .value-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .value-row:hover {
    transform: translateY(-5px);
  }
  
  .founder-quote {
    padding: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 8rem 1rem 4rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .main-logo {
    height: 80px;
  }
  
  .company-name {
    font-size: 2rem;
  }
  
  .vision-card, .mission-card {
    padding: 1.5rem;
  }
  
  .value-row {
    padding: 1.5rem;
  }
  
  .value-number {
    font-size: 2rem;
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .value-content h3 {
    font-size: 1.3rem;
  }
  
  .value-content p {
    font-size: 1rem;
  }
  
  .founder-quote {
    padding: 1.5rem;
  }
}
