/* ================= ABOUT PAGE STYLES ================= */
:root {
  --primary: #4361ee;
  --primary-light: #4895ef;
  --secondary: #7209b7;
  --accent: #f72585;
  --success: #4cc9f0;
  --warning: #ffd166;
  --danger: #ef476f;
  --dark: #121826;
  --light: #f8f9fa;
  --gray-100: #e9ecef;
  --gray-200: #dee2e6;
  --gray-300: #ced4da;
  --gray-800: #343a40;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-container {
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: 40px 0 80px;
}

/* ================= HERO SECTION ================= */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding: 40px 0;
}

.hero-content {
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge {
  margin-bottom: 24px;
}

.badge-text {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1));
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid rgba(67, 97, 238, 0.2);
}

.hero-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px;
  color: var(--dark);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-800);
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.stat-circle {
  position: relative;
  width: 100px;
  height: 100px;
}

.stat-circle__inner {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%;
  border: 3px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.stat-circle:hover .stat-circle__inner {
  transform: scale(1.05);
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
  opacity: 0.8;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-graphic {
  animation: float 6s ease-in-out infinite;
}

.hero-image-container {
  position: relative;
}

.hero-image {
  background: white;
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transform: perspective(1000px) rotateY(10deg) rotateX(5deg);
  transition: var(--transition);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(5deg) rotateX(3deg);
}

.screen-mockup {
  background: linear-gradient(135deg, #1a1f3a, #2d3250);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.screen-mockup__header {
  background: rgba(0,0,0,0.2);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.screen-mockup__dots {
  display: flex;
  gap: 6px;
}

.screen-mockup__dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.screen-mockup__title {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 14px;
}

.screen-mockup__content {
  padding: 30px;
}

.question-preview {
  color: var(--gray-100);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.4;
}

.answers-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.answer-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: var(--gray-100);
  transition: var(--transition);
}

.answer-row:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(8px);
}

.answer-letter {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.answer-text {
  flex: 1;
}

.hero-ornament {
  position: absolute;
  font-size: 48px;
  animation: floatElement 20s infinite ease-in-out;
}

.ornament-1 {
  top: -20px;
  left: -20px;
  animation-delay: 0s;
}

.ornament-2 {
  top: 50%;
  right: -30px;
  animation-delay: 5s;
}

.ornament-3 {
  bottom: -20px;
  left: 30%;
  animation-delay: 10s;
}

/* ================= MISSION STATEMENT ================= */
.mission-statement {
  margin-bottom: 80px;
}

.mission-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-xl);
  padding: 60px;
  color: white;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.mission-icon {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-icon svg {
  width: 48px;
  height: 48px;
  stroke: white;
}

.mission-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.mission-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mission-text {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
}

/* ================= PROBLEM & SOLUTION ================= */
.problem-solution-section {
  margin-bottom: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-800);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.ps-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.ps-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.problem-card {
  border-top: 4px solid var(--danger);
}

.solution-card {
  border-top: 4px solid var(--success);
}

.ps-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ps-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon {
  background: rgba(239, 71, 111, 0.1);
  color: var(--danger);
}

.solution-icon {
  background: rgba(76, 201, 240, 0.1);
  color: var(--success);
}

.ps-card__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--dark);
}

.ps-card__content {
  color: var(--gray-800);
}

.ps-card__content p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.problem-list,
.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-list li,
.solution-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.problem-list li:before {
  content: "⚠️";
  position: absolute;
  left: 0;
}

.solution-list li:before {
  content: "✅";
  position: absolute;
  left: 0;
}

.solution-list li strong {
  color: var(--dark);
}

/* ================= AUDIENCE SECTION ================= */
.audience-section {
  margin-bottom: 80px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.audience-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.audience-card__icon {
  font-size: 40px;
  width: 80px;
  height: 80px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-card__content {
  flex: 1;
}

.audience-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--dark);
}

.audience-card__desc {
  font-size: 14px;
  color: var(--gray-800);
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

.faith-note {
  background: rgba(255, 209, 102, 0.1);
  border: 2px solid rgba(255, 209, 102, 0.3);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
}

.faith-note__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 209, 102, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #d4a200;
}

.faith-note__icon svg {
  width: 24px;
  height: 24px;
  stroke: #d4a200;
}

.faith-note__content h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--dark);
}

.faith-note__content p {
  font-size: 16px;
  color: var(--gray-800);
  margin: 0;
  line-height: 1.6;
}

/* ================= FEATURES SECTION ================= */
.features-section {
  margin-bottom: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-card__icon {
  font-size: 32px;
  width: 64px;
  height: 64px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--dark);
}

.feature-card__content {
  color: var(--gray-800);
}

.feature-card__content p {
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}

/* ================= CREATOR SECTION ================= */
.creator-section {
  margin-bottom: 80px;
}

.creator-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 60px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 60px;
  align-items: center;
}

.creator-avatar {
  text-align: center;
  flex-shrink: 0;
}

.avatar-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 40px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  overflow: hidden; /* Add this to contain the image */
  position: relative; /* For positioning the image */
}

/* Remove gradient background when logo is present */
.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to contain to show full logo */
  border-radius: 50%;
  position: relative;
  z-index: 1; /* Ensure logo is above any background */
}

/* Make the gradient background only show if no image is loaded */
.avatar-circle:has(img) {
  background: none !important; /* Remove gradient when image is present */
}

.avatar-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(67, 97, 238, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid rgba(67, 97, 238, 0.2);
}

/* Ensure all icons have consistent styling */
.creator-contact .icon {
  min-width: 20px;
  flex-shrink: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-800);
  white-space: nowrap;
}

.contact-item svg {
  stroke: var(--primary);
  flex-shrink: 0;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
  margin-bottom: 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.testimonial-card--featured {
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(114, 9, 183, 0.05));
  border-color: var(--primary);
}

.testimonial-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.author-info span {
  font-size: 14px;
  color: var(--gray-800);
  opacity: 0.8;
}

.testimonials-cta {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.cta-link:hover {
  background: rgba(67, 97, 238, 0.1);
  gap: 12px;
}

/* ================= FINAL CTA ================= */
.final-cta {
  margin-top: 80px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-xl);
  padding: 60px;
  color: white;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.cta-banner__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.2;
}

.cta-banner__description {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-banner__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 18px;
}

.cta-banner__graphic {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.banner-icon {
  font-size: 120px;
  animation: bounce 2s infinite ease-in-out;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg) translateY(-20px);
  }
}

@keyframes floatElement {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(20px, -20px) rotate(10deg);
  }
  66% {
    transform: translate(-15px, 15px) rotate(-5deg);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .about-hero,
  .creator-card,
  .cta-banner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-graphic {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .ps-grid {
    grid-template-columns: 1fr;
  }
  
  .creator-card {
    text-align: center;
    flex-direction: column;
  }
  
  .creator-contact {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-hero,
  .mission-card,
  .creator-card,
  .cta-banner {
    padding: 40px 24px;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-cta,
  .cta-banner__actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .testimonials-cta {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .about-container {
    width: 96%;
  }
  
  .stat-circle {
    width: 80px;
    height: 80px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .mission-card {
    flex-direction: column;
    text-align: center;
  }
  
  .faith-note {
    flex-direction: column;
    text-align: center;
  }
  
  .audience-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}