/* Why Buy Section Premium Styles */
.why-buy-section {
  background-color: #fcfaff;
}

.why-buy-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-buy-header h2 {
  color: #4f0469;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.why-buy-header h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #4f0469;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.why-buy-intro {
  max-width: 800px;
  margin: 30px auto;
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}

.why-buy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.why-buy-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  flex: 1 1 300px;
  max-width: 380px;
  box-shadow: 0 10px 30px rgba(79, 4, 105, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #f0e6f5;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.why-buy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(79, 4, 105, 0.12);
}

.why-buy-icon {
  width: 70px;
  height: 70px;
  background: rgba(79, 4, 105, 0.1);
  color: #4f0469;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 25px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.why-buy-card:hover .why-buy-icon {
  background: #4f0469;
  color: #fff;
}

.why-buy-card h3 {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-buy-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

.why-buy-cta {
  margin-top: 50px;
  text-align: center;
}

.why-buy-cta-box {
  background: #4f0469;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  display: inline-block;
  max-width: 900px;
  box-shadow: 0 10px 25px rgba(79, 4, 105, 0.2);
}

.why-buy-cta-box h4 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 20px;
}

.why-buy-cta-box a {
  color: #ffde59;
  font-weight: 700;
  text-decoration: underline;
  font-size: 22px;
}

.why-buy-cta-box a:hover {
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .why-buy-header h2 {
    font-size: 28px;
  }

  .why-buy-section {
    padding: 50px 0;
  }

  .why-buy-card {
    padding: 30px 20px;
  }

  .why-buy-cta-box a {
    font-size: 18px;
  }
}

/* Why Have a Dog Section Styles */
.dog-benefits-section {
  padding-top: 0px;
  background-color: #fff;
}

.dog-benefits-intro {
  margin-bottom: 40px;
}

.dog-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .dog-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #4f0469;
  transition: transform 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(79, 4, 105, 0.1);
}

.benefit-card h4 {
  color: #4f0469;
  font-size: 22px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-card h4 i {
  font-size: 20px;
}

.dog-image-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.dog-image-container img {
  transition: transform 0.5s ease;
  width: 100%;
  display: block;
}

.dog-image-container:hover img {
  transform: scale(1.05);
}

.dog-benefits-cta {
  margin-top: 30px;
}

@media (max-width: 991px) {
  .dog-benefits-section {
    padding: 50px 0;
  }
}

/* Puppies for Sale Intro Section */
.puppies-intro-section {
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.puppies-intro-content {
  padding-right: 30px;
}

.puppies-intro-content h2 {
  color: #4f0469;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 700;
}

.puppies-intro-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.puppies-intro-image {
  position: relative;
  z-index: 1;
}

.puppies-intro-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #4f0469;
  top: 20px;
  left: 20px;
  z-index: -1;
  border-radius: 15px;
  opacity: 0.1;
}

@media (max-width: 991px) {
  .puppies-intro-section {
    padding: 50px 0;
  }
  .puppies-intro-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .puppies-intro-image::before {
    display: none;
  }
}
