/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Content Section */
.about-content {
  background: linear-gradient(135deg, var(--gray-50), white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
  transform: scale(1.02);
}

.about-image-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
}

.about-image-badge .badge {
  background: white;
  box-shadow: var(--shadow-md);
}

.about-text h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}

.about-lead {
  font-size: var(--text-lg);
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.about-lead strong {
  color: var(--primary-600);
}

.about-text > p:not(.about-lead) {
  color: var(--gray-600);
  margin-bottom: var(--space-6);
}

.specialties {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
}

.specialties h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}

.specialties-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (max-width: 640px) {
  .specialties-list {
    grid-template-columns: 1fr;
  }
}

.specialties-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  color: var(--gray-700);
}

.specialties-list svg {
  width: 20px;
  height: 20px;
  color: var(--primary-500);
  flex-shrink: 0;
}

/* Manager Section */
.manager-section {
  background: white;
}

.manager-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--gray-50), white);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  display: flex;
  gap: var(--space-8);
  align-items: flex-start;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}

@media (max-width: 768px) {
  .manager-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-8);
  }
}

.manager-avatar {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
}

.manager-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.manager-avatar-placeholder {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
}

.manager-avatar-placeholder svg {
  width: 70px;
  height: 70px;
  color: var(--primary-600);
}

.manager-info h3 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-1);
}

.manager-title {
  font-size: var(--text-base);
  color: var(--primary-600);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.manager-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
  .manager-divider {
    margin-left: auto;
    margin-right: auto;
  }
}

.manager-quote {
  position: relative;
  padding: var(--space-4) var(--space-6);
  background: white;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-500);
  box-shadow: var(--shadow-sm);
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: 20px;
  width: 30px;
  height: 30px;
  color: var(--primary-300);
}

.manager-quote p {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

/* Values Section */
.values-section {
  background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-md);
}

.value-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.value-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: var(--text-4xl);
  }
}

.cta-content p {
  font-size: var(--text-lg);
  color: var(--gray-300);
  margin-bottom: var(--space-8);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
  background: white;
  color: var(--gray-900);
  border-color: white;
}
