﻿/* SECTION WRAPPER */
.home-offer-section {
    padding: 100px 20px;
    background: #1A1A1A;
    font-family: "Montserrat", sans-serif;
}

.home-offer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* IMAGE */
.home-offer-image {
    flex: 1;
    min-width: 320px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #D4A017;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .home-offer-image:hover {
        transform: scale(1.03);
        box-shadow: 0 12px 25px rgba(0,0,0,0.45);
    }

    .home-offer-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* CONTENT COLUMN */
.home-offer-content {
    flex: 1;
    min-width: 360px;
}

.home-offer-sub-title {
    font-size: 15px;
    font-weight: 700;
    color: #D4A017;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.home-offer-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    margin: 12px 0 30px;
    line-height: 1.3;
}

/* OFFER LIST */
.home-offer-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* OFFER ITEM CARD */
.home-offer-item {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: #1C1C1C;
    border-radius: 14px;
    border: 1px solid rgba(212,160,23,0.35);
    transition: all 0.35s ease;
    backdrop-filter: blur(3px);
}

    .home-offer-item:hover {
        border-color: #D4A017;
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    }

/* ICON */
.home-offer-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(212,160,23,0.3));
}

/* TEXT */
.home-offer-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.home-offer-text p {
    font-size: 0.97rem;
    color: #ccc;
    line-height: 1.55;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .home-offer-title {
        font-size: 1.9rem;
    }

    .home-offer-item {
        padding: 15px;
    }

    .home-offer-icon img {
        width: 55px;
    }
}
