/* Corporate Gifting Page Styles */
.site-container.corporate-gifting-page {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto !important;
    padding: 40px 20px;
    background: #fff;
}

/* Hero Section */
.corporate-hero {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.corporate-title {
    font-size: 28px;
    font-weight: 700;
    color: #000 !important;
    margin-bottom: 20px;
    line-height: 1.3;
}

.corporate-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: #555 !important;
    max-width: 700px;
    margin: 0 auto;
}

/* Showcase Banner - Full Width Images */
.corporate-showcase {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    margin-top: 40px;
    margin-bottom: 60px;
}

.showcase-item {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-item:hover img {
    transform: scale(1.08);
}

/* What We Offer Section */
.corporate-section.offers-section {
    max-width: 1300px;
    margin: 60px auto;
    text-align: center;
}

.corporate-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000 !important;
    margin-bottom: 40px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
    gap: 24px;
}

.offer-card {
    text-align: center;
    background: #F9F9FE;
}

.offer-image {
    margin: 0 auto;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.08);
}

.offer-title {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.offer-description {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: #333333;
    padding: 24px 33px;
}

/* Perfect For Section */
.perfect-for-section {
    position: relative;
    align-items: center;
    max-width: 1300px;
    margin: 60px auto;
}

.perfect-for-image {
    overflow: hidden;
}

.perfect-for-image img {
    
    max-width: 712px;
    max-height: 594px;
    width: 100%;
    height: auto;
    display: block;
}

.perfect-for-content {
    z-index: 1;
    top: 0;
    right: 0;
    top: 18%;
    position: absolute;
    background: #fff;
    padding: 56px 48px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.1);
}

.perfect-for-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
    text-align: center;
}

.perfect-for-list {
    list-style: none;
    min-width: 532px;
    padding-left: 94px;
    margin: 0 0;
}

.perfect-for-list li {
    width: fit-content;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding: 10px 0;
    padding-left: 34px;
    position: relative;
}

.perfect-for-list li:before {
    content: "■";
    position: absolute;
    left: 7px;
    color: #000;
    font-weight: bold;
}

/* CTA Section */
.corporate-cta {
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px;
    max-width: 1300px;
    margin: 60px auto 40px;
    position: relative;
}

.corporate-cta h3 {
    position: relative;
    z-index: 3;
    font-size: 28px;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 15px;
    color: #ccc;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-contact p svg {
    margin-right: 8px;
}

.cta-contact strong {
    color: #fff;
}

.cta-contact a {
    color: #fff;
    text-decoration: none;
}

.cta-contact a:hover {
    text-decoration: underline;
}

.cta-image {
    z-index: 2;
    position: absolute;
    right: 110px;
    top: -100px;
    flex-shrink: 0;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .perfect-for-image img {
        max-width: 100%;
        max-height: 100%;
    }

    .perfect-for-content {
        position: relative;
        left: 0;
        top: 40px;
        transform: none;
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .perfect-for-list {
        padding: 0;
    }

    .cta-image {
        top: 0;
        right: 60px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .site-container.corporate-gifting-page {
        padding: 30px 15px;
    }

    .corporate-title {
        font-size: 24px;
    }

    .corporate-showcase {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .perfect-for-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .perfect-for-content {
        padding: 30px;
    }

    .corporate-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .cta-contact p {
        justify-content: center;
    }

    .cta-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .corporate-title {
        font-size: 22px;
    }

    .corporate-subtitle {
        font-size: 14px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        padding: 15px;
    }
}
