/* About Us Page Styles */

.about-us-container {
  padding: 40px 0;
}

/* Intro Section */
.intro-section-about {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
}

.brand-name-about {
  font-size: 16px;
  color: #9252ba;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.slogan-about {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.4;
}

.intro-text-about {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Story Section */
.story-section {
  margin-bottom: 80px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  margin-left: 10px;
  color: #222;
  text-align: left;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #9252ba, #7a3d9e);
  margin: 15px 0 0 0;
}

.story-content {
  padding: 20px 10px;
}

.story-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.4;
}

.story-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-image {
  margin-left: 10px;
  margin-right: 10px;
}

.story-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Mission, Vision, Values */
.mvv-section {
  margin-bottom: 80px;
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
  padding: 60px 30px;
  border-radius: 12px;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 45px;
  padding-right: 45px;
}

.mvv-grid {
  margin-left: 0;
  margin-right: 0;
}

.mvv-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 25px;
  margin-left: 10px;
  margin-right: 10px;
}

.mvv-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.mvv-card .mvv-icon {
  font-size: 48px;
  color: #9252ba;
  margin-bottom: 20px;
  display: block;
}

.mvv-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  margin-top: 0;
}

.mvv-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Why Choose Section */
.why-choose-section {
  margin-bottom: 80px;
}

.features-grid {
  margin-left: 0;
  margin-right: 0;
}

.feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #9252ba;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 25px;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  gap: 20px;
}

.feature-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.feature-item .feature-icon {
  font-size: 32px;
  color: #9252ba;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  margin-top: 0;
}

.feature-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Craftsmanship Section */
.craftsmanship-section {
  margin-bottom: 80px;
}

.section-intro {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
  padding: 0 10px;
}

.craft-process {
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.craft-process::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #9252ba, transparent);
  z-index: 0;
}

@media (max-width: 768px) {
  .craft-process::before {
    display: none;
  }
}

.craft-step {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  border: 2px solid #9252ba;
  text-align: center;
  margin-bottom: 25px;
  margin-left: 10px;
  margin-right: 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.craft-step:hover {
  box-shadow: 0 8px 24px rgba(146, 82, 186, 0.15);
  transform: translateY(-5px);
  border-color: #7a3d9e;
}

.craft-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #9252ba, #7a3d9e);
  color: #ffffff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.craft-step h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  margin-top: 0;
}

.craft-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #9252ba, #7a3d9e);
  padding: 60px 30px;
  border-radius: 12px;
  margin: 80px 10px;
  text-align: center;
}

.stats-section .section-title {
  color: #ffffff;
  margin-left: 0;
}

.stats-section .section-title::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  margin-left: 0;
  margin-right: 0;
}

.stat-box {
  padding: 30px;
  margin-bottom: 25px;
  margin-left: 10px;
  margin-right: 10px;
}

.stat-box h3 {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  margin-top: 0;
}

.stat-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* Values Showcase */
.values-showcase {
  margin-bottom: 80px;
}

.values-grid {
  margin-left: 0;
  margin-right: 0;
}

.value-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 25px;
  margin-left: 10px;
  margin-right: 10px;
}

.value-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.value-card .value-emoji {
  font-size: 52px;
  display: block;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  margin-top: 0;
}

.value-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* CTA Section */
.cta-about-section {
  background: linear-gradient(135deg, #9252ba, #7a3d9e);
  padding: 60px 30px;
  text-align: center;
  border-radius: 12px;
  color: #ffffff;
  margin: 80px 10px 40px 10px;
}

.cta-about-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 1.4;
}

.cta-about-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 14px 40px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.cta-buttons .btn-primary {
  background: #ffffff;
  color: #9252ba;
}

.cta-buttons .btn-primary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-buttons .btn-secondary:hover {
  background: #ffffff;
  color: #9252ba;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .slogan-about {
    font-size: 28px;
  }

  .story-content h3 {
    font-size: 22px;
  }

  .mvv-section {
    padding: 40px 20px;
    margin-left: -15px;
    margin-right: -15px;
  }

  .mvv-card {
    margin-left: 10px;
    margin-right: 10px;
  }

  .stats-section {
    margin: 60px 10px;
  }

  .stat-box h3 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .craft-process::before {
    display: none;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-item .feature-icon {
    margin: 0 auto;
  }

  .intro-text-about {
    font-size: 15px;
  }
}
