/* Special Offer Section */
.special-offer-section {
    background: #f8f9fa;
}

.promo-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.promo-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.savings-badge {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.savings-badge::before {
    content: '✓';
    margin-right: 8px;
    font-size: 16px;
}

.timer-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-content {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 32px;
}

.promo-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-was {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

.old-price {
    text-decoration: line-through;
    font-weight: 600;
}

.price-now {
    display: flex;
    align-items: center;
    gap: 12px;
}

.now-label {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.big-price {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    font-size: 36px;
    font-weight: 900;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.2);
    position: relative;
}

.included-services {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-item {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

.promo-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 280px;
}

.cta-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cta-text {
    font-size: 18px;
    font-weight: 700;
    color: #0066cc;
    margin: 0;
}

.promo-cta-btn {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    text-decoration: none;
    padding: 0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 102, 204, 0.2);
    overflow: hidden;
    min-width: 220px;
    position: relative;
}

.promo-cta-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
}

.btn-top {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-bottom {
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.guarantee {
    font-size: 13px;
    color: #28a745;
    font-weight: 600;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .promo-card {
        margin: 0 15px;
    }
    
    .promo-content {
        padding: 20px;
        gap: 24px;
    }
    
    .savings-badge {
        font-size: 16px;
    }
    
    .big-price {
        font-size: 32px;
        padding: 10px 16px;
    }
    
    .now-label {
        font-size: 16px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .promo-cta-btn {
        min-width: 200px;
    }
    
    .btn-top {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .btn-bottom {
        font-size: 16px;
        padding: 12px 16px;
    }
}

@media (max-width: 767px) {
    .promo-card {
        margin: 0 10px;
    }
    
    .promo-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 16px 20px;
    }
    
    .savings-badge {
        font-size: 14px;
    }
    
    .timer-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .promo-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }
    
    .promo-left {
        gap: 16px;
    }
    
    .price-now {
        justify-content: center;
        gap: 8px;
    }
    
    .now-label {
        font-size: 14px;
    }
    
    .big-price {
        font-size: 28px;
        padding: 8px 12px;
    }
    
    .price-was {
        font-size: 14px;
    }
    
    .service-title {
        font-size: 14px;
    }
    
    .service-item {
        font-size: 13px;
    }
    
    .promo-right {
        min-width: auto;
        width: 100%;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .promo-cta-btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
    
    .btn-top {
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .btn-bottom {
        font-size: 15px;
        padding: 12px 16px;
    }
    
    .guarantee {
        font-size: 12px;
    }
}