
/* ==========================================================
   Delivery Kart — About Us Page Styling (Final Version)
========================================================== */

/* ===== HERO SECTION ===== */
.about-hero {
  background: linear-gradient(90deg, #f5f2ff, #ebe4ff);
  padding: 6rem 2rem 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero-content {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
}

.about-text h1 {
  color: #432c85;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.about-text p {
  color: #3a2d60;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #9d8eff, #a978ff);
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(90, 53, 255, 0.2);
}

.btn-outline {
  border: 2px solid #a978ff;
  background: #fff;
  color: #432c85;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #f3efff;
}

/* ===== ABOUT STATS ===== */
.about-stats {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 8px 18px rgba(67, 44, 133, 0.08);
}

.about-stats ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.8rem;
}

.about-stats li:last-child {
  border-bottom: none;
}

.stat-value {
  font-size: 1.3rem;
  color: #5a35ff;
  font-weight: 700;
}

.stat-label {
  color: #3a2d60;
  font-size: 0.9rem;
}

/* ===== COMPANY STORY ===== */
.about-story {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 2rem;
  text-align: center;
}

.about-story h2 {
  color: #432c85;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.about-story p {
  color: #3a2d60;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.story-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 6px 18px rgba(67, 44, 133, 0.08);
  transition: 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(90, 53, 255, 0.15);
}

.story-card h3 {
  color: #5a35ff;
  font-size: 1.1rem;
  margin: 1rem 0.8rem 0;
}

.story-card p {
  color: #3a2d60;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.6rem;
}

/* ===== VALUES SECTION ===== */
.about-values {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.2rem;
  box-shadow: 0 6px 18px rgba(90, 53, 255, 0.08);
  text-align: center;
  transition: 0.3s ease;
}

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

.value-card i {
  font-size: 1.8rem;
  color: #5a35ff;
  margin-bottom: 0.8rem;
}

.value-card h4 {
  color: #432c85;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: #3a2d60;
  font-size: 0.9rem;
}

/* ===== LEADERSHIP SECTION ===== */
.about-leadership {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 0 2rem;
  text-align: center;
}

.about-leadership h2 {
  color: #432c85;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.leaders {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.leader-card {
  background: #f8f6ff;
  border-radius: 14px;
  padding: 1.8rem;
  width: 240px;
  box-shadow: 0 6px 18px rgba(67, 44, 133, 0.08);
  transition: 0.3s;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(90, 53, 255, 0.15);
}

.leader-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.leader-card h4 {
  color: #432c85;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.leader-card p {
  color: #5a35ff;
  font-size: 0.9rem;
  margin: 0;
}

/* ===== CTA SECTION ===== */
.about-cta {
  text-align: center;
  background: linear-gradient(135deg, #f3efff, #ebe3ff);
  padding: 4.5rem 2rem;
  border-radius: 16px;
  margin: 5rem auto;
  max-width: 950px;
  box-shadow: 0 10px 24px rgba(90, 53, 255, 0.12);
}

.about-cta h3 {
  color: #432c85;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-cta p {
  color: #3a2d60;
  margin-bottom: 1.8rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
.about-text,
.about-stats,
.story-card,
.value-card,
.leader-card,
.about-cta {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s ease forwards;
}

.about-stats {
  animation-delay: 0.1s;
}

.story-card:nth-child(2) {
  animation-delay: 0.2s;
}

.value-card:nth-child(2) {
  animation-delay: 0.2s;
}

.leader-card:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */

/* EXTRA SMALL MOBILE (250px - 399px) */
@media (max-width: 399px) {
  .about-hero {
    padding: 2rem 1rem 2.5rem;
  }

  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-text h1 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .about-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.9rem;
    text-align: center;
  }

  .about-stats {
    padding: 1.2rem;
    margin-top: 1.5rem;
  }

  .about-stats li {
    padding-bottom: 0.6rem;
  }

  .stat-value {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .about-story h2,
  .about-leadership h2 {
    font-size: 1.4rem;
  }

  .about-story p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .story-cards,
  .about-values {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-card,
  .value-card {
    padding: 1rem 0.8rem;
  }

  .story-card h3 {
    font-size: 1rem;
  }

  .leader-card {
    width: 100%;
    padding: 1.2rem;
  }

  .leader-card img {
    width: 70px;
    height: 70px;
  }

  .about-cta {
    padding: 2rem 1rem;
    margin: 2rem 0.5rem;
  }

  .about-cta h3 {
    font-size: 1.3rem;
  }

  .about-cta p {
    font-size: 0.9rem;
  }
}

/* SMALL MOBILE (400px - 599px) */
@media (min-width: 400px) and (max-width: 599px) {
  .about-hero {
    padding: 2.5rem 1.2rem;
  }

  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text h1 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    padding: 10px 18px;
  }

  .about-stats {
    padding: 1.5rem;
  }

  .about-story h2,
  .about-leadership h2 {
    font-size: 1.5rem;
  }

  .story-cards,
  .about-values {
    grid-template-columns: 1fr;
  }

  .leaders {
    flex-direction: column;
    gap: 1?.5rem;
  }

  .leader-card {
    width: 100%;
  }

  .about-cta {
    padding: 2.5rem 1.2rem;
    margin: 2.5rem 0.5rem;
  }

  .about-cta h3 {
    font-size: 1.4rem;
  }
}

/* MEDIUM MOBILE (600px - 799px) */
@media (min-width: 600px) and (max-width: 799px) {
  .about-hero {
    padding: 3.5rem 2rem;
  }

  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text h1 {
    font-size: 2rem;
  }

  .about-buttons {
    flex-direction: row;
    gap: 1rem;
  }

  .story-cards,
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .leaders {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .leader-card {
    width: 100%;
  }

  .about-story h2,
  .about-leadership h2 {
    font-size: 1.7rem;
  }

  .about-cta {
    padding: 3rem 2rem;
  }

  .about-cta h3 {
    font-size: 1.6rem;
  }
}

/* TABLET (800px - 1023px) */
@media (min-width: 800px) and (max-width: 1023px) {
  .about-hero-content {
    grid-template-columns: 1fr 350px;
    gap: 2rem;
  }

  .about-text h1 {
    font-size: 2.2rem;
  }

  .about-stats {
    padding: 1.8rem;
  }

  .story-cards,
  .about-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }

  .leaders {
    gap: 1.5rem;
  }

  .leader-card {
    width: 220px;
  }

  .about-story h2,
  .about-leadership h2 {
    font-size: 1.8rem;
  }

  .about-cta {
    padding: 3.5rem 2.5rem;
    margin: 4rem 2rem;
  }
}

/* DESKTOP (1024px and above) */
@media (min-width: 1024px) {
  .about-hero-content {
    grid-template-columns: 1fr 380px;
    gap: 3rem;
  }

  .story-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }

  .leaders {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .leader-card {
    width: 240px;
  }
}