/* ============================================
   AMAPA ABOUT US PAGE - MODERN REDESIGN
   ============================================ */

:root {
  --amapa-orange: #BA411A;
  --amapa-orange-light: #D65A33;
  --amapa-orange-dark: #9A3515;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --success: #10B981;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   HERO SECTION - ABOUT
   ============================================ */
.about-hero {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  padding: var(--space-3xl) var(--space-md);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(186, 65, 26, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-xs) var(--space-md);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.about-hero h1 .highlight {
  color: var(--amapa-orange);
}

.about-hero-subtitle {
  font-size: 1.5rem;
  color: var(--gray-200);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  font-weight: 500;
}

.about-hero-flags {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

.about-hero-flags img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-base);
}

.about-hero-flags img:hover {
  transform: scale(1.15) rotate(5deg);
}

/* ============================================
   MISSION SECTION
   ============================================ */
.about-mission {
  padding: var(--space-3xl) var(--space-md);
  background: white;
}

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

.about-section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.about-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
}

.about-section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.about-mission-card {
  background: var(--gray-50);
  padding: var(--space-xl);
  border-radius: 16px;
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
  text-align: center;
}

.about-mission-card:hover {
  border-color: var(--amapa-orange);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.about-mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--amapa-orange) 0%, var(--amapa-orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto var(--space-md);
}

.about-mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.about-mission-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   STORY SECTION
   ============================================ */
.about-story {
  padding: var(--space-3xl) var(--space-md);
  background: var(--gray-50);
}

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

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

.about-story-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-lg);
}

.about-story-text .story-intro {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--amapa-orange);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.about-story-text p {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-story-text p strong {
  color: var(--gray-900);
  font-weight: 600;
}

.about-story-highlight {
  background: white;
  padding: var(--space-lg);
  border-radius: 16px;
  border-left: 4px solid var(--amapa-orange);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.about-story-highlight p {
  font-size: 1.125rem;
  color: var(--gray-800);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.about-story-image {
  position: relative;
}

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

.about-story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-story-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-story-badge-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.about-story-badge-subtitle {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.about-founder {
  padding: var(--space-3xl) var(--space-md);
  background: white;
}

.about-founder-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-founder-card {
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
  padding: var(--space-2xl);
  border-radius: 24px;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.about-founder-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  border: 4px solid var(--amapa-orange);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

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

.about-founder-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
}

.about-founder-title {
  font-size: 1.125rem;
  color: var(--amapa-orange);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.about-founder-bio {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.about-founder-credentials {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.about-credential {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--gray-700);
  font-size: 1rem;
}

.about-credential svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.about-values {
  padding: var(--space-3xl) var(--space-md);
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
}

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

.about-values-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.about-values-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.about-values-header p {
  font-size: 1.125rem;
  color: var(--gray-300);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.about-value-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: var(--space-xl);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.about-value-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--amapa-orange);
  transform: translateY(-4px);
}

.about-value-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.about-value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
}

.about-value-description {
  color: var(--gray-300);
  line-height: 1.6;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.about-timeline {
  padding: var(--space-3xl) var(--space-md);
  background: white;
}

.about-timeline-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.about-timeline-item::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 80px;
  bottom: -60px;
  width: 2px;
  background: var(--gray-200);
}

.about-timeline-item:last-child::before {
  display: none;
}

.about-timeline-date {
  background: var(--amapa-orange);
  color: white;
  padding: var(--space-sm);
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  height: fit-content;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.about-timeline-content {
  background: var(--gray-50);
  padding: var(--space-lg);
  border-radius: 16px;
  border: 2px solid var(--gray-200);
}

.about-timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.about-timeline-description {
  color: var(--gray-700);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.about-contact {
  padding: var(--space-3xl) var(--space-md);
  background: var(--gray-50);
  text-align: center;
}

.about-contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
}

.about-contact-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.about-social-links {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.about-social-link {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.about-social-link:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--amapa-orange);
  box-shadow: var(--shadow-xl);
}

.about-social-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* ============================================
   CTA SECTION
   ============================================ */
.about-cta {
  padding: var(--space-3xl) var(--space-md);
  background: linear-gradient(135deg, var(--amapa-orange) 0%, var(--amapa-orange-dark) 100%);
  text-align: center;
}

.about-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.about-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.about-cta-button {
  display: inline-block;
  background: white;
  color: var(--amapa-orange);
  padding: 1.25rem 3rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
}

.about-cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .about-story-content {
    grid-template-columns: 1fr;
  }
  
  .about-story-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .about-section-title {
    font-size: 2rem;
  }
  
  .about-story-text h2 {
    font-size: 2rem;
  }
  
  .about-timeline-item {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .about-timeline-item::before {
    display: none;
  }
  
  .about-timeline-date {
    margin-bottom: var(--space-md);
  }
  
  .about-founder-credentials {
    flex-direction: column;
    align-items: center;
  }
  
  .about-mission-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.75rem;
  }
  
  .about-section-title {
    font-size: 1.5rem;
  }
  
  .about-hero,
  .about-mission,
  .about-story,
  .about-founder,
  .about-values,
  .about-timeline,
  .about-contact,
  .about-cta {
    padding: var(--space-xl) var(--space-md);
  }
  
  .about-hero-flags img {
    width: 44px;
    height: 44px;
  }
  
  .about-social-link {
    width: 60px;
    height: 60px;
  }
  
  .about-social-link img {
    width: 32px;
    height: 32px;
  }
}
