/* ======================= */
/* MODERN BANNER STYLES */
/* ======================= */
.modern-banner {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff9fb 0%, #ffffff 50%, #fef4f7 100%);
    position: relative;
    overflow: hidden;
}

.modern-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,182,193,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.banner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.banner-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(163, 0, 67, 0.15);
    transition: all 0.4s ease;
}

.banner-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(163, 0, 67, 0.2);
}

.banner-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.banner-image-wrapper:hover .banner-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(163, 0, 67, 0.1), rgba(255, 182, 193, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.banner-content {
    padding: 20px;
    animation: slideInRight 0.8s ease-out;
}

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    color: #a30043;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #a30043, #d10047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 400;
}

.banner-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #a30043 0%, #7c0032 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(163, 0, 67, 0.3);
    border: 2px solid transparent;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(163, 0, 67, 0.4);
    background: linear-gradient(135deg, #7c0032 0%, #a30043 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 30px;
    background: transparent;
    color: #a30043;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #a30043;
}

.cta-btn-secondary:hover {
    background: #a30043;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(163, 0, 67, 0.2);
}

/* Animation keyframes */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .banner-container {
        gap: 40px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .modern-banner {
        padding: 40px 20px;
    }
    
    .banner-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .banner-description {
        font-size: 1.1rem;
    }
    
    .banner-img {
        height: 350px;
    }
    
    .banner-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .banner-img {
        height: 280px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
    
    .banner-actions {
        flex-direction: column;
        align-items: center;
    }
}