/* ========================================
   What We Offer Section - GSAP Animations
   ======================================== */

/* Section Container */
.what-we-offer-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.what-we-offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f58221 0%, #ff9f4a 100%);
}

.what-we-offer-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Main Grid Layout */
.offer-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Sidebar */
.offer-sidebar {
    background: linear-gradient(135deg, #f58221 0%, #ff9f4a 100%);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(245, 130, 33, 0.3);
    position: sticky;
    top: 100px;
    color: #ffffff;
}

.offer-sidebar h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.offer-sidebar h2 .highlight {
    display: block;
    background: #ffffff;
    color: #f58221;
    padding: 5px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
}

.offer-sidebar p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Right Cards Grid */
.offer-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Individual Card */
.offer-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f58221 0%, #ff9f4a 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(245, 130, 33, 0.2);
    border-color: #f58221;
}

.offer-card:hover::before {
    transform: scaleX(1);
}

/* Card Icon */
.offer-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f58221 0%, #ff9f4a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(245, 130, 33, 0.3);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover .offer-card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Card Title */
.offer-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #f58221;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Card Description */
.offer-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #383838;
    margin-bottom: 20px;
}

/* Read More Link */
.offer-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f58221;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    transition: gap 0.3s ease;
}

.offer-card-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f58221;
    transition: width 0.3s ease;
}

.offer-card:hover .offer-card-link {
    gap: 12px;
}

.offer-card:hover .offer-card-link::after {
    width: 100%;
}

.offer-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-card-link svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .offer-grid {
        grid-template-columns: 320px 1fr;
        gap: 40px;
    }

    .offer-sidebar {
        padding: 50px 30px;
    }

    .offer-sidebar h2 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .offer-sidebar {
        position: relative;
        top: 0;
        text-align: center;
    }

    .offer-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .what-we-offer-section {
        padding: 60px 15px;
    }

    .offer-sidebar {
        padding: 40px 25px;
    }

    .offer-sidebar h2 {
        font-size: 36px;
    }

    .offer-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-card {
        padding: 30px 25px;
    }

    .offer-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .what-we-offer-section {
        padding: 40px 10px;
    }

    .offer-sidebar {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .offer-sidebar h2 {
        font-size: 32px;
    }

    .offer-sidebar p {
        font-size: 14px;
    }

    .offer-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .offer-card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .offer-card h3 {
        font-size: 22px;
    }

    .offer-card p {
        font-size: 14px;
    }
}