/* ============================================
   ABOUT PAGE STYLES
   Tawfeeqoh Hamzat - Premium Personal Brand
   ============================================ */

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  padding: 10rem 8vw 4rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.page-hero-content {
  max-width: 700px;
}

.page-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-periwinkle);
  margin-bottom: 1.5rem;
}

.page-headline {
  margin-bottom: 1.5rem;
}

.page-intro {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  padding: var(--space-3xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.profile-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transform: rotate(-2deg);
  transition: all var(--transition-medium);
}

.profile-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.profile-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.profile-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-periwinkle) 0%, var(--accent-periwinkle-dark) 100%);
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 16px;
}

.about-values {
  margin-top: 2.5rem;
}

.about-values h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 1.5rem;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(123, 108, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon i {
  font-size: 18px;
  color: var(--accent-periwinkle);
}

.value-content h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.value-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ============================================
   SKILLS SECTION
   ============================================ */

.skills-section {
  padding: var(--space-3xl) 0;
  background: rgba(255, 255, 255, 0.4);
}

.skills-title {
  margin-bottom: 3rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.skill-category {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: all var(--transition-medium);
}

.skill-category:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.skill-icon {
  width: 56px;
  height: 56px;
  background: rgba(123, 108, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.skill-icon i {
  font-size: 24px;
  color: var(--accent-periwinkle);
}

.skill-category h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.skill-category ul {
  list-style: none;
}

.skill-category li {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.skill-category li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent-periwinkle);
  border-radius: 50%;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
  padding: var(--space-3xl) 0;
}

.process-title {
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-step-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: all var(--transition-medium);
}

.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.process-step-card .step-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-periwinkle);
  background: rgba(123, 108, 255, 0.1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.process-step-card h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.process-step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
  padding: var(--space-3xl) 0;
  background: rgba(255, 255, 255, 0.4);
}

.trust-title {
  margin-bottom: 3rem;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-periwinkle);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: var(--space-3xl) 0;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-headline {
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .page-hero {
    padding: 8rem 6vw 3rem;
    min-height: auto;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .profile-card {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-stats {
    gap: 3rem;
  }
  
  .stat-number {
    font-size: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    padding: 7rem 5vw 2rem;
  }
  
  .about-content h2 {
    font-size: 28px;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .trust-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .skill-category {
    padding: 1.5rem;
  }
  
  .process-step-card {
    padding: 1.5rem;
  }
}