/* Removed: advantages split section not used in index.html */

/* New Warranty Features Section */
.warranty-features-section {
  padding: 4rem 0;
  width: 100%;
  margin: 0;
  position: relative;
}

.warranty-features-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.warranty-features-section .section-title {
  font-size: 2.2rem;
  /* 35.2px */
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.warranty-features-section .section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.warranty-features-section .highlight {
  background: linear-gradient(135deg, #3A4091 0%, #2F3475 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Responsive Grid for Features */
@media (max-width: 1200px) {
  .features-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
  }
}

@media (max-width: 1024px) {
  .features-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 4px;
  border: 1px solid rgb(225, 228, 235);
  position: relative;
  overflow: hidden;
  width: 100%;
  opacity: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(100, 105, 192, 0.03) 0%,
      rgba(147, 51, 234, 0.02) 100%);
  opacity: 0;
  pointer-events: none;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: radial-gradient(88% 75% at 50% 50%, var(--wood-primary) 37.45%, var(--wood-secondary) 100%);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  box-shadow: 0 8px 16px rgba(58, 64, 145, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--foreground) 0%, var(--muted-foreground) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.feature-content p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Features Grid */
@media (max-width: 768px) {
  .warranty-features-section {
    padding: 2rem 0;
  }

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

  .warranty-features-section .section-description {
    font-size: 1rem;
  }

  .features-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .feature-content h3 {
    font-size: 1.125rem;
  }

  .feature-content p {
    font-size: 0.95rem;
  }
}

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

  .feature-card {
    padding: 1.25rem;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Animation for feature cards */
.feature-card {
  opacity: 1;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

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

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
  animation-delay: 0.6s;
}