/* ==================== */
/* OFFER SECTION STYLES */
/* ==================== */
.offer-section {
    background: linear-gradient(135deg, #ffe6ec 0%, #ffffff 100%);
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,230,236,0.3) 0%, rgba(255,255,255,0) 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.offer-section h2 {
    font-size: 2.8rem;
    color: #a30043;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.offer-section p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.offer-images {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.offer-item {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    transform: translateY(0);
}

.offer-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.offer-item img {
    width: 320px;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.offer-item:hover img {
    transform: scale(1.05);
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(163, 0, 67, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-item:hover .offer-overlay {
    opacity: 1;
}

.offer-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #a30043 0%, #7c0032 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(163, 0, 67, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(163, 0, 67, 0.4);
    background: linear-gradient(135deg, #7c0032 0%, #a30043 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .offer-images {
        gap: 30px;
    }
    
    .offer-item img {
        width: 280px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .offer-section {
        padding: 50px 20px;
    }
    
    .offer-section h2 {
        font-size: 2.2rem;
    }
    
    .offer-section p {
        font-size: 1.1rem;
    }
    
    .offer-images {
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }
    
    .offer-item img {
        width: 100%;
        max-width: 350px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .offer-section h2 {
        font-size: 1.8rem;
    }
    
    .offer-section p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .offer-item img {
        height: 250px;
    }
}