.what-we-offer {
    padding: 80px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.what-we-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(243, 112, 34, 0.02) 0%, rgba(243, 112, 34, 0.05) 100%);
    z-index: 1;
}

.what-we-offer::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F37022' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 1;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -50%); }
}

.offer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.offer-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
    color: #333333;
}

.offer-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #F37022;
    display: inline-block;
}

.offer-heading p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.offer-card {
    background: #ffffff;
    border: 1px solid rgba(243, 112, 34, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.offer-card:nth-child(1) {  }
.offer-card:nth-child(2) {  }
.offer-card:nth-child(3) {  }
.offer-card:nth-child(4) {  }
.offer-card:nth-child(5) {  }
.offer-card:nth-child(6) {  }
.offer-card:nth-child(7) {  }
.offer-card:nth-child(8) {  }

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(243, 112, 34, 0.2);
    border-color: rgba(243, 112, 34, 0.3);
}

.offer-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F37022, #ff9f4a);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(243, 112, 34, 0.3);
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-icon {
    transform: scale(1.1) rotate(5deg);
}

.offer-icon i {
    font-size: 22px;
    color: #ffffff;
}

.offer-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333333;
    font-weight: 600;
}

.offer-card p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.offer-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 40px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .offer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .offer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .offer-container {
        grid-template-columns: 1fr;
    }
    
    .offer-heading h2 {
        font-size: 2rem;
    }
    
    .offer-card {
        padding: 20px;
    }
}
