/* =========================================
   WOW OFFER SECTION STYLES
   ========================================= */

.offer-wow {
    position: relative;
    padding: 100px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.offer-wow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(51, 33, 29, 0.8) 100%);
    z-index: 1;
}

/* Floating Particles */
.offer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(218, 159, 91, 0.2);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

/* Glassmorphism Card */
.offer-glass-card {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    overflow: hidden;
}

.offer-glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(218, 159, 91, 0.15);
}

/* Decorative Elements inside Card */
.offer-glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 159, 91, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.offer-glass-card:hover::before {
    opacity: 1;
}

/* Typography */
.offer-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(218, 159, 91, 0.2);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(218, 159, 91, 0.3);
}

.offer-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.offer-title span {
    color: var(--primary);
}

.offer-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* Modern Input Group */
.modern-subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.modern-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px;
    transition: all 0.3s ease;
}

.modern-input-group:focus-within {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(218, 159, 91, 0.2);
}

.modern-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: white;
    font-size: 1.1rem;
    outline: none;
}

.modern-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.modern-btn {
    background: var(--primary);
    color: #111;
    border: none;
    border-radius: 40px;
    padding: 15px 35px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-btn:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .offer-title {
        font-size: 2.5rem;
    }
    .offer-glass-card {
        padding: 40px 20px;
    }
    .modern-input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    .modern-input {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        margin-bottom: 15px;
        text-align: center;
    }
    .modern-btn {
        width: 100%;
    }
}