/* Della Junior Advantages Section - Premium Edition */
.advantages-section {
  /* The background image is now applied via data-background attribute in HTML */
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  background-color: #162b45; /* Fallback color */
}

/* Animated background elements */
.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Add floating stars and shapes */
.advantages-section .float-star-1 {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 40px;
  height: 40px;
  background-image: url("../img/shape/star-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  animation: floating 4s ease-in-out infinite;
}

.advantages-section .float-star-2 {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 30px;
  height: 30px;
  background-image: url("../img/shape/star-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  animation: floating 6s ease-in-out infinite;
}

.advantages-section .float-flower {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 50px;
  height: 50px;
  background-image: url("../img/shape/flower-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  animation: rotating 20s linear infinite;
}

.advantages-section .float-circle {
  position: absolute;
  bottom: 30%;
  left: 8%;
  width: 25px;
  height: 25px;
  background-image: url("../img/shape/circle-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  animation: floating 5s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes rotating {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* No wave dividers - removed */


/* Section title styling */
.advantages-title {
  text-align: center;
  position: relative;
  z-index: 5;
}

.advantages-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.advantages-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFD97E, #f5c13d);
  border-radius: 2px;
}

.advantages-title p {
  font-size: 16px;
  color: #ffffff;
  max-width: 600px;
  margin: 25px auto 40px;
  font-weight: 400;
  line-height: 1.6;
}

/* Card container styling */
.advantages-section .container {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  padding: 0 30px;
}

/* Advantage cards */
.advantages-row {
  margin-top: 60px;
}

/* Add spacing between cards */
.advantages-row > [class*="col-"] {
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 30px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 20px;
  height: 140px;  /* Fixed height for all cards */
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

/* Gradient bar removed */

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Icon styling */
.advantage-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  background: transparent;
  padding: 0;
}

.advantage-icon img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.08));
  transition: all 0.3s ease;
}

/* Card content styling */
.advantage-card-content {
  flex: 1;
}

.advantage-card-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
}

.advantage-card-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
  line-height: 1.5;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive styles */
@media (max-width: 991px) {
  .advantages-section {
    padding: 80px 0 100px;
  }
  
  .advantage-card {
    padding: 30px 25px;
  }
  
  .advantage-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  .advantages-section {
    padding: 60px 0 80px;
  }
  
  .advantages-title h2 {
    font-size: 36px;
  }
  
  .advantages-title p {
    font-size: 16px;
  }
  
  .advantage-card h4 {
    font-size: 20px;
  }
  
  .advantage-card p {
    font-size: 15px;
  }
  
  .advantages-section .wave-top,
  .advantages-section .wave-bottom {
    height: 50px;
  }
}
