/* Section Promo Styles */
.section-promo {
    padding: 100px 0;
    background-color: var(--color-white);
    overflow: hidden;
}

.section-promo-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-gray-900);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-promo-subtitle {
    font-size: clamp(15px, 2.5vw, 20px);
    color: var(--color-gray-warm);
    margin-bottom: 48px;
    font-weight: 400;
}

.section-promo-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 56px;
}

.section-promo-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    /* Prepare for hover border */
    /* Entry animation default state */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

/* Staggered animation delay based on child index (assuming only 3 items typically) */
.section-promo-feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

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

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

.section-promo-feature-item:hover,
.section-promo-feature-item.feature-item-active {
    background-color: var(--color-bg-mint-light);
    border-color: var(--color-border-light);
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow-black-04);
}

.section-promo-icon-box {
    width: 60px;
    /* Slight size increase for better presence */
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px var(--shadow-primary-green-20);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid var(--color-bg-mint-light);
}

.section-promo-feature-item:hover .section-promo-icon-box,
.section-promo-feature-item.feature-item-active .section-promo-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: var(--color-white);
    border-color: var(--navbar-primary-green);
}

.section-promo-icon {
    width: auto;
    height: auto;
    font-size: 28px;
    color: var(--navbar-primary-green);
    transition: transform 0.3s ease;
}

.section-promo-feature-item:hover .section-promo-icon,
.section-promo-feature-item.feature-item-active .section-promo-icon {
    transform: scale(1.2);
}

.section-promo-text h6 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.section-promo-feature-item:hover .section-promo-text h6,
.section-promo-feature-item.feature-item-active .section-promo-text h6 {
    color: var(--navbar-primary-green);
}

.section-promo-text p {
    font-size: 18px;
    color: var(--color-gray-warm);
    margin: 0;
    line-height: 1.5;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: var(--navbar-primary-green);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px var(--shadow-primary-green-20);
}

.section-promo-btn:hover {
    background-color: var(--navbar-primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px var(--shadow-primary-30);
}

.section-promo-btn svg {
    transition: transform 0.3s ease;
}

.section-promo-btn:hover svg {
    transform: translateX(5px);
}

.section-promo-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 550px;
    /* Desktop height */
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base Background */
.promo-img-bg-1 {
    position: absolute;
    width: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.7;
}

/* Central Girl Figure (No animation) */
.promo-img-upper-3 {
    position: absolute;
    width: 85%;
    bottom: 0;
    left: 45%;
    transform: translateX(-50%);
    z-index: 5;
}

/* Floating Elements */
.promo-img-bg-2 {
    position: absolute;
    width: 20%;
    right: 4%;
    top: 10%;
    z-index: 2;
    /* filter: drop-shadow(1px 1px 2px #666); */

}

.promo-img-upper-4 {
    position: absolute;
    width: 30%;
    left: 5%;
    bottom: 8%;
    z-index: 6;
}

.promo-img-upper-2 {
    position: absolute;
    width: 30%;
    left: 5%;
    bottom: 25%;
    z-index: 7;
}

.promo-img-upper-1 {
    position: absolute;
    width: 20%;
    right: 2%;
    bottom: 8%;
    z-index: 8;
}

/* Animations Core */
@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatUpDownAlt {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-anim {
    animation: floatUpDown 7s ease-in-out infinite;
}

.float-anim-delay {
    animation: floatUpDownAlt 5s ease-in-out infinite;
    animation-delay: 1s;
}

.section-promo-image-wrapper img {
    height: auto;
    pointer-events: none;
}