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

/* Common Section Styles */
.about-section {
  padding: 80px 20px;
}

.bg-light {
  background-color: #f8fafc;
}

.bg-dark {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.text-white {
  color: white;
}

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

.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.justify-center { justify-content: center; }

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

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

.section-label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-label.dark {
  background: rgba(15, 23, 42, 0.05);
  color: var(--primary-color);
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section-header h3 {
  font-size: 1.5rem;
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* 1. Hero Section */
.about-hero {
  text-align: center;
  padding: calc(var(--header-height) + 60px) 20px 80px;
  background: var(--gradient-hero);
  color: white;
  position: relative;
}

.about-hero h1 {
  font-size: 3.8rem;
  margin-bottom: 25px;
  line-height: 1.2;
  color: white;
}

.about-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid white;
  color: white;
}

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

/* 2. Who We Are */
.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.who-we-are-image {
  position: relative;
}

.who-we-are-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary-color);
  color: white;
  padding: 30px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  box-shadow: 0 15px 30px rgba(10, 37, 64, 0.2);
  border: 10px solid white;
}

.experience-badge .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-gold);
}

.experience-badge .text {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  text-align: center;
}

.who-we-are-content .section-header {
  text-align: left;
  margin-bottom: 30px;
}

.who-we-are-content h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-top: 10px;
  color: var(--primary-color);
}

.who-we-are-content p {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 15px;
}

.who-we-are-content .lead-text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-main);
}

.who-we-are-content .highlight-text-large {
  font-size: 1.25rem !important;
  color: var(--accent-gold) !important;
  font-weight: 700;
  margin: 20px 0 !important;
  border-left: 4px solid var(--accent-gold);
  padding-left: 15px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.feature-list li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .who-we-are-content .section-header {
    text-align: center;
  }
  .experience-badge {
    bottom: -20px;
    right: 20px;
    width: 120px;
    height: 120px;
    padding: 20px;
    border-width: 6px;
  }
  .experience-badge .number {
    font-size: 2rem;
  }
  .experience-badge .text {
    font-size: 0.75rem;
  }
}


/* 3. Our Mission */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-content-left .section-header {
  margin-bottom: 25px;
  text-align: left;
}

.mission-content-left h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-top: 10px;
  line-height: 1.2;
}

.mission-text .lead-text {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.mission-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.mission-feature-item .icon-box {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-feature-item h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.mission-feature-item p {
  font-size: 0.95rem;
  color: var(--text-main);
  margin: 0;
  line-height: 1.5;
}

.mission-image-right img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* 4. Why Choose Us */
@media (min-width: 768px) {
  .why-choose-us .section-header {
    max-width: 900px;
  }
  .why-choose-us .section-header h2 {
    white-space: nowrap;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-card h4 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-main);
  line-height: 1.6;
}

/* 5. What We Offer */
@media (min-width: 768px) {
  .what-we-offer .section-header {
    max-width: 900px;
  }
  .what-we-offer .section-header h2 {
    white-space: nowrap;
  }
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.offer-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.offer-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.offer-content {
  padding: 30px 25px;
}

.offer-content h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.offer-content p {
  color: var(--text-main);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* 6. Our Values */
.our-values .section-header {
  margin-bottom: 20px;
}

.values-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
}

.value-item {
  flex: 1 1 300px;
  max-width: 400px;
  background: #f8fafc;
  padding: 35px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-gold);
}

.value-item h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value-item p {
  color: var(--text-main);
  line-height: 1.6;
}

/* 7. Our Promise */
.our-promise h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.our-promise h3 {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 30px;
}
.promise-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 20px;
}

/* 8. Final CTA */
.final-cta {
  padding: 100px 20px;
}
.final-cta h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.final-cta p {
  font-size: 1.2rem;
  color: var(--text-main);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-hero h1 { font-size: 2.5rem; }
  .section-header h2, .our-promise h2, .final-cta h2, .mission-content h2 { font-size: 2.2rem; }
  .section-header h3, .our-promise h3, .mission-content h3 { font-size: 1.2rem; }
  .hero-actions { flex-direction: column; gap: 15px; }
  .hero-actions .btn { width: 100%; }
}

@media (max-width: 640px) {
  /* Hero Section */
  .about-hero { padding: calc(var(--header-height) + 30px) 15px 40px; }
  .about-hero h1 { font-size: 1.8rem; margin-bottom: 15px; }
  .about-hero p { font-size: 0.9rem; }
  
  /* Section Headers */
  .section-label { font-size: 0.75rem; padding: 4px 10px; }
  .section-header h2, .our-promise h2, .final-cta h2, .mission-content-left h2, .who-we-are-content h2 { font-size: 1.5rem; margin-bottom: 15px; }
  .section-subtitle, .who-we-are-content .lead-text, .mission-text .lead-text { font-size: 0.9rem; }
  
  /* Text & Paragraphs */
  .who-we-are-content p, .mission-text p, .feature-card p, .offer-content p, .mission-feature-item p, .value-item p, .promise-content p { font-size: 0.85rem; line-height: 1.5; }
  .who-we-are-content .highlight-text-large { font-size: 1rem !important; margin: 15px 0 !important; }
  .feature-list li { font-size: 0.85rem; }
  
  /* Headings inside cards */
  .feature-card h4, .offer-content h4, .mission-feature-item h4, .value-item h4 { font-size: 1.1rem; margin-bottom: 8px; }
  
  /* Meet Founder Bullets: Single line scale down */
  .meet-founder .mission-features { gap: 5px; }
  .meet-founder .mission-feature-item { gap: 10px; margin-bottom: 0 !important; }
  .meet-founder .mission-feature-item h4 { font-size: 0.75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.2; }
  .meet-founder .mission-feature-item .icon-box { width: 32px; height: 32px; border-radius: 8px; }
  .meet-founder .mission-feature-item .icon-box svg { width: 16px; height: 16px; }
  
  /* Why Choose Us Cards */
  .feature-card { padding: 20px 15px; }
  .feature-card h4 { font-size: 0.95rem; margin-bottom: 5px; }
  .feature-card p { font-size: 0.8rem; line-height: 1.4; }
  .feature-icon { width: 45px; height: 45px; margin-bottom: 12px; }
  .feature-icon svg { width: 22px; height: 22px; }
  
  /* Grid gaps & Padding */
  .who-we-are-grid, .mission-grid, .features-grid, .offerings-grid, .values-flex { gap: 15px; margin-top: 25px; }
  
  /* Who We Are - Reorder and resize image */
  .who-we-are-grid { display: flex; flex-direction: column; }
  .who-we-are-content { order: 1; }
  .who-we-are-image { order: 2; max-width: 260px; margin: 20px auto 0; }
  .experience-badge { width: 90px; height: 90px; padding: 15px; border-width: 4px; bottom: -10px; right: -10px; }
  .experience-badge .number { font-size: 1.5rem; }
  .experience-badge .text { font-size: 0.65rem; margin-top: 2px; }

  .offer-content { padding: 20px 15px; }
  .value-item { padding: 20px 15px; }
  .final-cta { padding: 60px 15px; }
  
  /* Buttons */
  .hero-actions .btn, .final-cta .btn { padding: 10px 16px; font-size: 0.85rem; justify-content: center; }
  .final-cta p { font-size: 0.9rem; }
}
