/* Offer Card Component Styles */
.offer-card {
    background: #fff;
    color: #222;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 310px;
    margin: 0;
    min-height: 380px;
    padding: 2.5vw 1.8vw 1.8vw 1.8vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s, color 0.3s;
    position: relative;
}

.offer-card:hover {
    background: linear-gradient(135deg, #1de782 0%, #17c1bc 100%);
    color: #fff;
    transform: translateY(-8px) scale(1.03);
}

.offer-card:hover .offer-btn {
    background: #fff;
    color: #222;
}

.offer-card:hover .icon1 {
    background-image: url('../../../public/icon1.png');
}

.offer-card:hover .icon2 {
    background-image: url('../../../public/icon2.png');
}

.offer-card:hover .icon3 {
    background-image: url('../../../public/icon3.png');
}

.offer-card:hover .icon4 {
    background-image: url('../../../public/icon4.png');
}

.offer-card:hover .icon5 {
    background-image: url('../../../public/icon5.png');
}

.offer-card:hover .icon6 {
    background-image: url('../../../public/icon6.png');
}

.offer-card:hover .icon7 {
    background-image: url('../../../public/icon7.png');
}

.offer-card:hover .icon8 {
    background-image: url('../../../public/icon8.png');
}

.offer-card:hover .icon9 {
    background-image: url('../../../public/icon9.png');
}

.offer-card:hover .icon10 {
    background-image: url('../../../public/icon10.png');
}

.offer-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.offer-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
}

.offer-card p {
    font-size: 20px;
    margin-bottom: 24px;
}

.offer-btn {
    background: #17c1bc;
    color: #fff;
    border: none;
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    width: 100%;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.icon1 {
    background-image: url('../../../public/icon1.1.png');
}

.icon2 {
    background-image: url('../../../public/icon2.2.png');
}

.icon3 {
    background-image: url('../../../public/icon3.3.png');
}

.icon4 {
    background-image: url('../../../public/icon4.4.png');
}

.icon5 {
    background-image: url('../../../public/icon5.5.png');
}

.icon6 {
    background-image: url('../../../public/icon6.6.png');
}

.icon7 {
    background-image: url('../../../public/icon7.7.png');
}

.icon8 {
    background-image: url('../../../public/icon8.8.png');
}

.icon9 {
    background-image: url('../../../public/icon9.9.png');
}

.icon10 {
    background-image: url('../../../public/icon10.10.png');
}

@media (max-width: 1200px) {
    .offer-card {
        max-width: 260px;
        min-height: 320px;
    }

    .offer-icon {
        width: 48px;
        height: 48px;
    }

    .offer-card h3 {
        font-size: 1.1rem;
    }

    .offer-card p {
        font-size: 1rem;
    }

    .offer-btn {
        font-size: 1rem;
        padding: 12px 0;
    }
}

@media (max-width: 992px) {
    .offer-card {
        max-width: 270px;
        min-height: 310px;
    }

    .offer-icon {
        width: 54px;
        height: 54px;
    }

    .offer-card h3 {
        font-size: 1.1rem;
    }

    .offer-card p {
        font-size: 1rem;
    }

    .offer-btn {
        font-size: 1rem;
        padding: 12px 0;
    }
}

@media (max-width: 768px) {
    .offer-card {
        max-width: 230px;
        min-height: 280px;
    }

    .offer-icon {
        width: 48px;
        height: 48px;
    }

    .offer-card h3 {
        font-size: 1.1rem;
    }

    .offer-card p {
        font-size: 1rem;
    }

    .offer-btn {
        font-size: 1rem;
        padding: 12px 0;
    }
}

@media (max-width: 600px) {
    .offer-card {
        width: 100%;
        height: 100%;
        max-width: 100%;
        min-height: 290px;
        align-items: center;
        text-align: center;
        border-radius: 14px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        margin: 0;
        box-sizing: border-box;
        transform: none !important;
    }

    .offer-icon {
        width: 40px;
        height: 40px;
    }

    .offer-card h3 {
        font-size: 0.98rem;
        margin-bottom: 6px;
    }

    .offer-card p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .offer-btn {
        padding: 8px 0;
        font-size: 0.95rem;
        width: 80%;
        border-radius: 8px;
        margin-bottom: 8px;
    }

    .offer-card:hover {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transform: none;
    }
}
