/*--------------------------------------------------------------
# About Us Page Styles
--------------------------------------------------------------*/

/* About Section */
.about-content .about-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-color);
}

.about-content .about-description {
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-content .about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
}

.about-features span {
  font-weight: 500;
  color: var(--heading-color);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, #FFB700 0%, #FFA000 100%);
  border-radius: 15px;
  padding: 25px 35px;
  box-shadow: 0 10px 30px rgba(255, 183, 0, 0.3);
}

.experience-badge .badge-content {
  text-align: center;
  color: #000;
}

.experience-badge .years {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .experience-badge {
    bottom: 10px;
    left: 10px;
    padding: 15px 25px;
  }
  
  .experience-badge .years {
    font-size: 1.8rem;
  }
  
  .about-content .about-title {
    font-size: 1.8rem;
  }
}

/* Mission & Vision */
.mission-box,
.vision-box {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border-left: 4px solid #FFB700;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.mission-box .icon-box,
.vision-box .icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFB700 0%, #FFA000 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #000;
  font-size: 28px;
}

.mission-box h3,
.vision-box h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.mission-box p,
.vision-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 0;
}

/* Why Choose Us / Feature Boxes */
.feature-box {
  background: var(--surface-color);
  padding: 35px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: #FFB700;
}

.feature-box .icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FFB700 0%, #FFA000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #000;
  font-size: 30px;
}

.feature-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

/* Value Cards */
.value-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: #FFB700;
}

.value-card .value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFB700 0%, #FFA000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #000;
  font-size: 26px;
}

.value-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

/* CTA Section */
.cta.section {
  background: linear-gradient(135deg, #252223 0%, #3a3536 100%);
  color: #fff;
}

.cta.section h2 {
  color: #fff;
}

.cta.section p {
  color: rgba(255,255,255,0.8);
}

.cta.section .btn-primary {
  background: linear-gradient(135deg, #FFB700 0%, #FFA000 100%);
  border: none;
  color: #000;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta.section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 183, 0, 0.4);
  color: #000;
}

.cta.section .btn-outline-dark {
  border: 2px solid #FFB700;
  color: #FFB700;
  background: transparent;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta.section .btn-outline-dark:hover {
  background: #FFB700;
  color: #000;
  transform: translateY(-2px);
}
