/* -------------------------------------------------------
   PREMIUM SECTIONS STYLES (Revamped for Distinct Looks)
   Color Update: Green Theme (#7DA33F)
------------------------------------------------------- */

/* --- 1. Design Services: Modern Cards (Grid Layout) --- */
.rs-design-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 3px solid transparent;
    height: 100%;
}

.rs-design-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: #7DA33F;
}

.rs-design-card .icon-part {
    width: 70px;
    height: 70px;
    background: #fdfdfd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.rs-design-card:hover .icon-part {
    background: #7DA33F;
    box-shadow: 0 8px 20px rgba(125, 163, 63, 0.3);
}

.rs-design-card .icon-part i {
    font-size: 28px;
    color: #7DA33F;
    transition: 0.3s;
}

.rs-design-card:hover .icon-part i {
    color: #ffffff;
}

.rs-design-card .title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.rs-design-card .desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}


/* --- 2. Design Deliverables: Clean Icon Content Box (Distinct from Cards) --- */
.rs-deliverable-box {
    display: flex;
    align-items: flex-start;
    background: #f8f9fa;
    /* Light background contrast */
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #ddd;
    transition: all 0.3s ease;
    height: 100%;
}

.rs-deliverable-box:hover {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left-color: #7DA33F;
}

.rs-deliverable-box .icon {
    min-width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7DA33F;
    font-size: 20px;
    margin-right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.rs-deliverable-box .content {
    flex: 1;
}

.rs-deliverable-box .content .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.rs-deliverable-box .content .desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}


/* --- 3. Walkthrough Packages: Horizontal Strip / Row --- */
.rs-package-row {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 20px 25px;
    margin-bottom: 20px;
    /* Vertical spacing */
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.rs-package-row:hover {
    border-color: #7DA33F;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.rs-package-row .wp-badge {
    background: #7DA33F;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    margin-right: 25px;
    min-width: 70px;
    text-align: center;
    letter-spacing: 0.5px;
}

.rs-package-row .wp-content {
    flex: 1;
}

.rs-package-row .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
}

.rs-package-row .desc {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Video Info Styles */
.rs-package-row .wp-video-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
    min-width: 60px;
}


.rs-package-row .video-icon {
    font-size: 32px;
    color: #7DA33F;
    cursor: default;
    /* Removed cursor: pointer to indicate no interaction */
    line-height: 1;
    margin-bottom: 5px;
}

/* Removed hovering effect on video icon as requested */
/* 
.rs-package-row .video-icon:hover {
    color: #1a1a1a;
    transform: scale(1.1);
} 
*/


.rs-package-row .video-duration {
    font-size: 13px;
    color: #888;
    font-weight: 600;
}

/* Optional: Checkmark for package row (if needed) */
.rs-package-row .check-mark {
    margin-left: auto;
    color: #7DA33F;
    /* Green check matching theme */
    font-size: 18px;
    opacity: 0.5;
}

.rs-package-row:hover .check-mark {
    opacity: 1;
}

/* Responsive adjustments */
@media only screen and (max-width: 767px) {
    .rs-package-row {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .rs-package-row .wp-badge {
        margin-bottom: 10px;
    }

    .rs-package-row .wp-video-info {
        position: absolute;
        top: 20px;
        right: 20px;
        margin-left: 0;
    }
}