/* Staggered Features Layout */
.staggered-features {
    padding: 20px 0;
}

.staggered-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.staggered-feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.staggered-feature-content {
    flex: 1;
    padding: 20px 30px;
}

.staggered-feature-image {
    flex: 1;
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.staggered-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.staggered-feature-item:hover .staggered-feature-image img {
    transform: scale(1.05);
}

.staggered-feature-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 12px;
}

.staggered-feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #e94e4e;
}

.staggered-feature-item:nth-child(even) .staggered-feature-title::after {
    left: 0;
}

.staggered-feature-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.staggered-feature-list {
    margin-bottom: 15px;
    padding-left: 0;
    list-style: none;
}

.staggered-feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #555;
}

.staggered-feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #e94e4e;
}

.staggered-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e94e4e;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.staggered-feature-link:hover {
    gap: 12px;
}

/* Decorative elements */
.staggered-feature-item::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(233, 78, 78, 0.05);
    z-index: -1;
}

.staggered-feature-item:nth-child(odd)::before {
    top: -30px;
    left: -30px;
}

.staggered-feature-item:nth-child(even)::before {
    bottom: -30px;
    right: -30px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .staggered-feature-item,
    .staggered-feature-item:nth-child(even) {
        flex-direction: column;
    }
    
    .staggered-feature-image {
        width: 100%;
        min-height: 300px;
        margin-bottom: 30px;
    }
    
    .staggered-feature-content {
        padding: 20px 0;
    }
    
    .staggered-feature-title {
        font-size: 1.8rem;
    }
    
    .staggered-feature-item:nth-child(even) .staggered-feature-title::after {
        left: 0;
    }
}

@media (max-width: 768px) {
    .staggered-feature-title {
        font-size: 1.6rem;
    }
    
    .staggered-feature-description {
        font-size: 1rem;
    }
}
