/* Red Features Section */

.red-features-section {
  background: #fff9f9;

  padding: 70px 0;

  position: relative;

  overflow: hidden;
}

.red-features-section:before {
  content: "";

  position: absolute;

  top: -50px;

  right: -50px;

  width: 200px;

  height: 200px;

  background: rgba(215, 42, 45, 0.05);

  border-radius: 50%;

  z-index: 0;
}

.red-features-section:after {
  content: "";

  position: absolute;

  bottom: -80px;

  left: -80px;

  width: 250px;

  height: 250px;

  background: rgba(215, 42, 45, 0.03);

  border-radius: 50%;

  z-index: 0;
}

/* Section Heading */

.section-heading {
  position: relative;
}

.section-tagline {
  display: inline-block;

  color: #d72a2d;

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 10px;

  position: relative;
}

.section-tagline:after {
  content: "";

  position: absolute;

  left: 50%;

  bottom: -8px;

  transform: translateX(-50%);

  width: 40px;

  height: 2px;

  background: #d72a2d;
}

.section-title {
  font-size: 2rem;

  font-weight: 700;

  color: #222;

  margin-bottom: 15px;
}

.section-subtitle {
  color: #666;

  font-size: 1rem;

  max-width: 700px;

  margin: 0 auto;

  line-height: 1.6;
}

/* Feature Cards */

.red-feature-card {
  background: white;

  border-radius: 10px;

  padding: 30px 25px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);

  transition: all 0.3s ease;

  position: relative;

  overflow: hidden;

  z-index: 1;

  height: 100%;

  text-align: center;

  border: 1px solid rgba(215, 42, 45, 0.1);
}

.red-feature-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  border-color: rgba(215, 42, 45, 0.2);
}

.red-feature-icon {
  width: 60px;

  height: 60px;

  background: rgba(215, 42, 45, 0.08);

  border-radius: 15px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 20px;

  transition: all 0.3s ease;
}

.red-feature-card:hover .red-feature-icon {
  background: rgba(215, 42, 45, 0.15);

  transform: rotateY(180deg);
}

.red-icon-img {
  width: 28px;

  height: 28px;

  object-fit: contain;
}

.red-feature-title {
  font-size: 1.2rem;

  font-weight: 600;

  color: #222;

  margin-bottom: 15px;

  position: relative;
}

.red-title-underline {
  width: 40px;

  height: 2px;

  background: #d72a2d;

  margin: 0 auto 15px;

  transition: all 0.3s ease;
}

.red-feature-card:hover .red-title-underline {
  width: 50px;

  background: #b82225;
}

.red-feature-desc {
  color: #555;

  font-size: 0.9rem;

  line-height: 1.6;

  margin-bottom: 0;
}

/* Responsive Design */

@media (max-width: 992px) {
  .red-features-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .red-feature-card {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .red-features-section {
    padding: 10px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .red-feature-icon {
    width: 50px;

    height: 50px;

    border-radius: 12px;
  }

  .red-icon-img {
    width: 24px;

    height: 24px;
  }

  .red-feature-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .red-feature-card {
    padding: 20px 15px;
  }
}
