/* ================ */
/* GENERAL STYLES */
/* ================ */
body {
  
  line-height: 1.6;
  color: #333;
}

.section-title {
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #dc3545; /* Red accent */
}

/* ================ */
/* HERO SECTION */
/* ================ */
#about-hero {
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('../images/about-bg.jpg');
  background-size: cover;
  background-position: center;
}

#about-hero h1 {
  color: #dc3545; /* Red heading */
}

#about-hero p {
  color: #6c757d;
}

/* ================ */
/* CONTENT SECTIONS */
/* ================ */
.about-section {
  margin-bottom: 50px;
}

.mission-list {
  list-style-type: none;
  padding-left: 0;
}

.mission-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.mission-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #dc3545; /* Red icon */
}

/* ================ */
/* FEATURES GRID */
/* ================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-card i {
  font-size: 2.5rem;
  color: #dc3545; /* Red icons */
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* Delivery icon animation */
.fa-shipping-fast {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ================ */
/* MILESTONES */
/* ================ */
#milestones {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/milestone-bg.jpg');
  background-size: cover;
  background-attachment: fixed;
  color: white;
}

.milestone h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0;
}

.milestone p {
  opacity: 0.8;
}

/* ================ */
/* TESTIMONIALS */
/* ================ */
.testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.testimonial-card .quote {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card .quote:before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  opacity: 0.2;
  font-size: 3rem;
  position: absolute;
  top: -15px;
  left: -10px;
  color: #dc3545; /* Red quote mark */
  z-index: 0;
}

.testimonial-card .client {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

/* ================ */
/* CTA SECTION */
/* ================ */
#cta {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
}

/* ================ */
/* RESPONSIVE ADJUSTMENTS */
/* ================ */
@media (max-width: 768px) {
  #about-hero .col-lg-6:last-child {
    margin-top: 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

#whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}