/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* About Hero */
.about-hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, #754174 0%, #5a3a5a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M0 0h1000v1000H0z" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/><path d="M0 500h1000M500 0v1000" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>') repeat;
  background-size: 200px 200px;
}

.about-hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(241, 186, 166, 0.15);
  color: #f1baa6;
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.about-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.about-hero .highlight {
  color: #f1baa6;
}

.about-hero-desc {
  font-size: 1.15rem;
  color: #b885a4;
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.7;
}

/* Our Story */
.our-story {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content {
  position: relative;
}

.story-content .section-tag {
  display: inline-block;
  background: rgba(225, 91, 64, 0.08);
  color: #754174;
  padding: 0.2rem 1.2rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.story-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #2d1a2d;
  margin-bottom: 1.5rem;
}

.story-content h2 .highlight {
  color: #e15b40;
}

.story-intro {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2d1a2d;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.story-content p {
  color: #5a4a5a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.story-content p:last-of-type {
  margin-bottom: 2rem;
}

.story-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #f0e8ea;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #754174;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #8a7a8a;
  margin-top: 0.3rem;
}

.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(117, 65, 116, 0.20);
}

.story-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-image:hover img {
  transform: scale(1.02);
}

.story-image-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  color: #2d1a2d;
  box-shadow: 0 8px 20px rgba(117, 65, 116, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.story-image-badge i {
  color: #e15b40;
  font-size: 1.2rem;
}

/* Mission Vision */
.mission-vision {
  padding: 4.5rem 0 5rem;
  background: #f8f1f2;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mission-card,
.vision-card,
.values-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #e8e0e2;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(117, 65, 116, 0.10);
  border-color: #e15b40;
}

.mission-icon,
.vision-icon,
.values-icon {
  width: 70px;
  height: 70px;
  background: rgba(225, 91, 64, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #e15b40;
  margin: 0 auto 1.5rem;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
  font-size: 1.4rem;
  color: #754174;
  margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
  color: #5a4a5a;
  font-size: 0.98rem;
  line-height: 1.7;
}

.values-list {
  list-style: none;
  text-align: left;
  padding: 0;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  color: #5a4a5a;
  font-size: 0.95rem;
}

.values-list li i {
  color: #e15b40;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Our Team */
.our-team {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: #f8f1f2;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #e8e0e2;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(117, 65, 116, 0.10);
  border-color: #e15b40;
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(117, 65, 116, 0.80));
  transition: bottom 0.4s ease;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #754174;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #e15b40;
  color: #fff;
  transform: translateY(-3px);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  font-size: 1.1rem;
  color: #754174;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e15b40;
  margin-bottom: 0.5rem;
}

.team-bio {
  font-size: 0.9rem;
  color: #8a7a8a;
  line-height: 1.6;
}

/* Why Choose Us Expanded */
.why-choose-us-expanded {
  padding: 4.5rem 0 5rem;
  background: #f8f1f2;
}

.why-grid-expanded {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.4s ease;
  border: 1px solid #e8e0e2;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(117, 65, 116, 0.08);
  border-color: #e15b40;
}

.why-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #e8e0e2;
  line-height: 1;
  min-width: 50px;
  transition: color 0.3s ease;
}

.why-item:hover .why-number {
  color: #e15b40;
}

.why-item-content h3 {
  font-size: 1.1rem;
  color: #754174;
  margin-bottom: 0.4rem;
}

.why-item-content p {
  color: #8a7a8a;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonials-section .testimonial-card {
  background: #f8f1f2;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #e8e0e2;
  transition: all 0.3s ease;
}

.testimonials-section .testimonial-card:hover {
  border-color: #e15b40;
  box-shadow: 0 8px 20px rgba(117, 65, 116, 0.06);
}

.testimonials-section .testimonial-stars {
  color: #f1baa6;
  margin-bottom: 1rem;
}

.testimonials-section .testimonial-stars i {
  margin-right: 0.2rem;
}

.testimonials-section .testimonial-card p {
  color: #5a4a5a;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonials-section .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonials-section .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-section .testimonial-author h4 {
  font-size: 0.95rem;
  color: #754174;
}

.testimonials-section .testimonial-author span {
  font-size: 0.85rem;
  color: #8a7a8a;
}

/* About CTA */
.about-cta {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(135deg, #754174 0%, #5a3a5a 100%);
  color: #fff;
  text-align: center;
}

.about-cta .cta-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.about-cta .cta-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-cta .cta-wrapper .highlight {
  color: #f1baa6;
}

.about-cta .cta-wrapper p {
  color: #b885a4;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.about-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-image img {
    height: 350px;
  }
  
  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid-expanded {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-section .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 700px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .about-hero-desc {
    max-width: 100%;
  }
  
  .story-content h2 {
    font-size: 2rem;
  }
  
  .story-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .team-image {
    height: 250px;
  }
  
  .why-grid-expanded {
    grid-template-columns: 1fr;
  }
  
  .testimonials-section .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .why-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .story-image-badge {
    left: 1rem;
    bottom: 1rem;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .about-cta .cta-wrapper h2 {
    font-size: 2rem;
  }
  
  .about-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-cta .cta-buttons .btn-primary,
  .about-cta .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
/* Footer Logo */
.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.footer-brand .brand-row img {
  height: 45px;
  width: auto;
}

.footer-brand .brand-name {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-brand .brand-sub {
  background: rgba(255, 255, 255, 0.10);
  color: #f1baa6;
  font-size: 0.75rem;
  padding: 0.1rem 0.6rem;
  border-radius: 20px;
  margin-left: 0.3rem;
}

.footer-brand .tagline {
  font-size: 0.85rem;
  color: #f1baa6;
  font-style: italic;
  margin-top: 0.2rem;
}

.footer-brand .description {
  color: #b885a4;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}