.all-inclusive-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    font-family: "Monserrat", Sans-serif !important;
}

.all-inclusive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    background: #F5F5F5A6;
    z-index: 1;
}
.all-inclusive-container {
    position: relative;
    z-index: 2;
    max-width: 1348px;
    margin: 0 auto;
    padding: 0 80px;
}

.all-inclusive-badge {
    display: inline-block;
    padding: 8px 30px;
    background: rgba(209, 197, 181, 0.35);
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    color: #2F2F2F;
    margin-bottom: 30px;
    text-align: center;
}

.all-inclusive-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.all-inclusive-title {
    font-size: 42px;
    font-weight: 300;
    color: #2F2F2F;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.all-inclusive-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    color: #2F2F2F;
    margin: 0 0 40px;
}

.all-inclusive-description p {
    margin: 0 0 20px;
}

.all-inclusive-description p:last-child {
    margin: 0;
}

.all-inclusive-content {
    position: relative;
    padding: 40px 0;
}

.all-inclusive-content-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    height:550px;
    background: #F3F1EF;
    z-index: 3;
}

.all-inclusive-button {
    display: inline-block;
    padding: 16px 40px;
    background: #2F2F2F;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    border: 1px solid #2F2F2F;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.all-inclusive-button:hover {
    background: #D1C5B5;
    color: #2F2F2F;
    border: 1px solid #D1C5B5;
}

.all-inclusive-gallery {
    position: relative;
    z-index: 4;
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.all-inclusive-gallery-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Right column starts lower */
.all-inclusive-gallery-column.right {
    margin-top: -30px;
}

/* Desktop button wrapper - in right column */
.all-inclusive-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

/* Mobile button wrapper - above gallery */
.all-inclusive-button-wrapper-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Mobile bottom image - separate element */
.all-inclusive-gallery-mobile-bottom {
    display: none;
}

.all-inclusive-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #E0E0E0;
}

.all-inclusive-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.all-inclusive-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.all-inclusive-gallery-item:hover img {
    transform: scale(1.05);
}

/* Column 1: small + big */
.all-inclusive-gallery-column.left .all-inclusive-gallery-item:first-child {
    height: 250px;
}

.all-inclusive-gallery-column.left .all-inclusive-gallery-item:last-child {
    height: 380px;
}

/* Column 2 (right): button + big + small */
.all-inclusive-gallery-column.right .all-inclusive-gallery-item:nth-child(2) {
    height: 380px;
}

.all-inclusive-gallery-column.right .all-inclusive-gallery-item:last-child {
    height: 250px;
}

/* Column 3 (bottom): single large image */
.all-inclusive-gallery-column.bottom .all-inclusive-gallery-item {
    height: 655px;
}

@media (max-width: 1024px) {
    .all-inclusive-section {
        padding: 60px 0 80px;
    }
    
    .all-inclusive-title {
        font-size: 30px;
    }
    
    .all-inclusive-gallery {
        flex-direction: column;
        gap: 15px;
    }
    
    .all-inclusive-gallery-column {
        width: 100%;
    }
    
    .all-inclusive-gallery-column.right {
        margin-top: 0;
    }
    
    .all-inclusive-button-wrapper {
        margin-bottom: 20px;
    }
    
    .all-inclusive-gallery-column.left .all-inclusive-gallery-item,
    .all-inclusive-gallery-column.right .all-inclusive-gallery-item,
    .all-inclusive-gallery-column.bottom .all-inclusive-gallery-item {
        height: 250px !important;
    }
}

@media (max-width: 768px) {
    .all-inclusive-section {
        padding: 40px 0 60px;
    }

    .all-inclusive-container {
        padding: 0 14px;
    }
    
    .all-inclusive-content-overlay {
        display: none;
    }
    
    .all-inclusive-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .all-inclusive-description {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    
    /* Show mobile button, hide desktop button */
    .all-inclusive-button-wrapper-mobile {
        display: flex;
        margin-bottom: 20px;
    }
    
    .all-inclusive-button-wrapper {
        display: none !important;
    }
    
    /* Show mobile bottom image, hide desktop bottom column */
    .all-inclusive-gallery-mobile-bottom {
        display: block;
        width: 100%;
        margin-top: 15px;
    }
    
    .all-inclusive-gallery-column.bottom {
        display: none !important;
    }
    
    .all-inclusive-gallery {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
    }
    
    /* Left column with 2 images */
    .all-inclusive-gallery-column.left {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 48%;
        order: 1;
    }
    
    /* Right column with 2 images */
    .all-inclusive-gallery-column.right {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 48%;
        margin-top: 0;
        order: 2;
    }
    
    /* First image in left column - shorter */
    .all-inclusive-gallery-column.left .all-inclusive-gallery-item:first-child {
        height: 180px !important;
    }
    
    /* Second image in left column - taller */
    .all-inclusive-gallery-column.left .all-inclusive-gallery-item:last-child {
        height: 250px !important;
    }
    
    /* First image in right column - taller */
    .all-inclusive-gallery-column.right .all-inclusive-gallery-item:first-child {
        height: 250px !important;
    }
    
    /* Second image in right column - shorter */
    .all-inclusive-gallery-column.right .all-inclusive-gallery-item:last-child {
        height: 180px !important;
    }
    
    /* Mobile bottom image styling */
    .all-inclusive-gallery-mobile-bottom .all-inclusive-gallery-item {
        height: 250px !important;
        border-radius: 6px;
        overflow: hidden;
    }
}
