/* Hero Section Styles */

.vsa-hero-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.vsa-hero-image-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Layer 1 - Purple background rotated left */
.vsa-hero-image-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c084fc 0%, #B07BBF 100%);
    border-radius: 16px;
    transform: rotate(-3deg);
    z-index: 1;
    box-shadow: 0 20px 25px -5px rgba(147, 51, 234, 0.3), 
                0 8px 10px -6px rgba(147, 51, 234, 0.2);
}

/* Layer 2 - Purple background rotated right */
.vsa-hero-image-container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B07BBF 0%, #c084fc 100%);
    border-radius: 16px;
    transform: rotate(3deg);
    z-index: 2;
    box-shadow: 0 20px 25px -5px rgba(147, 51, 234, 0.3), 
                0 8px 10px -6px rgba(147, 51, 234, 0.2);
}

/* Layer 3 - Main image wrapper */
.vsa-hero-main-image {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    border-radius: 16px !important;
    display: block;
    object-fit: cover;
    z-index: 3;
}

.vsa-hero-badge {
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 35px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15), 
                0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.vsa-hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 
                0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.vsa-hero-badge-icon {
    width: 48px;
    height: 48px;
    background: #f3e8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vsa-hero-badge-icon i {
    font-size: 20px;
    color: #B07BBF;
}

.vsa-hero-badge-content {
    flex: 1;
}

.vsa-hero-badge-text {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 2px;
    line-height: 1.3;
}

.vsa-hero-badge-subtext {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vsa-hero-wrapper {
        padding: 15px;
    }
    
    .vsa-hero-image-container::before,
    .vsa-hero-image-container::after {
        border-radius: 28px;
    }
    
    .vsa-hero-main-image {
        border-radius: 28px;
    }
    
    .vsa-hero-badge {
        bottom: 28px;
        left: 28px;
        right: 28px;
        padding: 14px 16px;
        gap: 12px;
        border-radius: 14px;
    }
    
    .vsa-hero-badge-icon {
        width: 44px;
        height: 44px;
    }
    
    .vsa-hero-badge-icon i {
        font-size: 18px;
    }
    
    .vsa-hero-badge-text {
        font-size: 15px;
    }
    
    .vsa-hero-badge-subtext {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .vsa-hero-wrapper {
        padding: 10px;
    }
    
    .vsa-hero-image-container::before,
    .vsa-hero-image-container::after {
        border-radius: 24px;
    }
    
    .vsa-hero-main-image {
        border-radius: 24px;
    }
    
    .vsa-hero-badge {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 12px 14px;
        gap: 10px;
        border-radius: 12px;
    }
    
    .vsa-hero-badge-icon {
        width: 40px;
        height: 40px;
    }
    
    .vsa-hero-badge-icon i {
        font-size: 16px;
    }
    
    .vsa-hero-badge-text {
        font-size: 14px;
    }
    
    .vsa-hero-badge-subtext {
        font-size: 12px;
    }
}
