/* Refurbished Offer Section Styling */
.refurbished-offer {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.refurbished-offer::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.offer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 210, 255, 0.1);
}

.offer-content {
    flex: 1;
}

.offer-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
}

.offer-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.offer-content h2 span {
    color: #3498db;
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 35px;
}

.offer-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fbff;
    padding: 24px;
    border-radius: 20px;
    border: 1px dashed #3498db;
    margin-bottom: 35px;
}

.offer-highlight i {
    font-size: 2.5rem;
    color: #3498db;
}

.highlight-text strong {
    display: block;
    font-size: 1.8rem;
    color: #1a1a1a;
    line-height: 1;
}

.highlight-text span {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.offer-cta {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-offer {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: white;
    padding: 16px 35px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.btn-offer:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4);
}

.btn-offer i {
    transition: transform 0.3s ease;
}

.limited-tag {
    font-size: 0.9rem;
    color: #ff6b6b;
    font-weight: 600;
}

.btn-offer:hover i {
    transform: translateX(4px);
}

.offer-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.offer-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Tablet & Mobile Tweaks */
@media (max-width: 1024px) {
    .offer-container {
        padding: 40px;
        gap: 30px;
    }

    .offer-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .refurbished-offer {
        padding: 40px 15px;
    }

    .offer-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        border-radius: 24px;
        gap: 25px;
    }

    .offer-badge {
        margin-bottom: 15px;
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    .offer-content h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .offer-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .offer-highlight {
        justify-content: center;
        padding: 15px;
        gap: 15px;
        margin-bottom: 25px;
        border-radius: 12px;
    }

    .offer-highlight i {
        font-size: 1.8rem;
    }

    .highlight-text strong {
        font-size: 1.4rem;
    }

    .highlight-text span {
        font-size: 0.85rem;
    }

    .offer-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn-offer {
        width: 100%;
        padding: 14px 25px;
        font-size: 1rem;
    }

    .offer-image {
        order: -1;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .offer-image img {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }
}

@media (max-width: 480px) {
    .refurbished-offer {
        padding: 25px 10px;
    }

    .offer-container {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .offer-content h2 {
        font-size: 1.6rem;
    }

    .offer-image {
        max-width: 200px;
    }
}