.marsa-arabia-island-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 20px !important;
}

.marsa-arabia-island-wrapper > div {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: start;
    margin-top: 40px !important;
    gap: 30px;
}

/* ============================================
   STAT ITEM
   ============================================ */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
    cursor: default;
    transition: transform 0.3s ease !important;
}

.stat-item:hover {
    transform: translateY(-4px);
}

/* Number */
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px !important;
    font-weight: 300;
    color: #1a2f52 !important;
    line-height: 1;
    margin-bottom: 1rem !important;
    letter-spacing: -0.01em !important;
}

/* Label */
.stat-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #b8923a !important;
    line-height: 1.55;
    letter-spacing: 0.01em !important;
    text-align: center !important;
}

/* ============================================
   VERTICAL SEPARATOR
   ============================================ */
.stat-separator {
    width: 1px;
    height: 100px;
    background: linear-gradient(
        to bottom,
        transparent,
        #e8e0d0 30%,
        #e8e0d0 70%,
        transparent
    );
    flex-shrink: 0;
    align-self: center;
}

/* ============================================
   IMAGE CAROUSEL
   ============================================ */
.vc-image-carousel-section {
    width: 100%;
    padding: 40px 0;
    max-width: 100%;
}

.vc-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
}

.vc-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.vc-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-slide a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.vc-slide:hover .vc-carousel-image {
    transform: scale(1.05);
}

/* Carousel Arrows */
.vc-prev,
.vc-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 35, 73, 0.6);
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.vc-prev:hover,
.vc-next:hover {
    background: rgba(0, 35, 73, 0.9);
}

.vc-prev {
    left: 15px;
}

.vc-next {
    right: 15px;
}

/* Carousel Dots/Pagination */
.vc-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    text-align: center;
    z-index: 10;
}

.vc-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #fff;
    opacity: 0.5;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.vc-dot.active {
    opacity: 1;
}

.vc-dot:hover {
    opacity: 0.8;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .marsa-arabia-island-wrapper {
        gap: 60px;
        padding: 15px;
    }
    .odc-two-column{
        flex-direction: column;
        max-width: 100%;
    }
    .stats-container {
        gap: 20px;
        margin-top: 30px;
        align-items: center;
    }

    .stat-number {
        font-size: 32px !important;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .vc-carousel {
        height: 450px !important;
    }

    .vc-prev,
    .vc-next {
        width: 44px;
        height: 44px;
        padding: 10px 14px;
        font-size: 20px;
    }

    .vc-image-carousel-section {
        padding: 30px 15px;
    }
}

/* Tablet (640px - 768px) */
@media (max-width: 768px) {
    .marsa-arabia-island-wrapper {
        gap: 40px;
        padding: 12px;
    }

    .marsa-arabia-island-wrapper > div {
        padding: 0 !important;
    }

    .stats-container {
        flex-direction: row !important;
        gap: 15px;
        margin: 25px 0 !important;
    }

    .stat-separator {
        width: 100px;
        height: 1px;
        background: linear-gradient(
            to right,
            transparent,
            #e8e0d0 30%,
            #e8e0d0 70%,
            transparent
        );
    }

    .stat-item {
        padding: 1rem 0.5rem !important;
    }

    .stat-number {
        font-size: 28px !important;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .vc-carousel {
        height: 350px !important;
        border-radius: 8px;
    }

    .vc-prev,
    .vc-next {
        width: 40px;
        height: 40px;
        padding: 8px 12px;
        font-size: 18px;
    }

    .vc-prev{
        left: 10px;
    }
    .vc-next {
        right: 10px;
    }

    .vc-dots {
        bottom: 15px;
    }

    .vc-dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }

    .vc-image-carousel-section {
        padding: 25px 10px;
    }
}

/* Small Tablet/Large Mobile (480px - 640px) */
@media (max-width: 640px) {
    .marsa-arabia-island-wrapper {
        gap: 30px;
        padding: 10px;
    }

    .marsa-arabia-island-wrapper > div {
        padding: 0 !important;
    }

    .stats-container {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .stat-item {
        padding: 0.8rem 0.5rem !important;
    }

    .stat-number {
        font-size: 24px !important;
        margin-bottom: 0.5rem !important;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .vc-carousel {
        height: 300px;
        border-radius: 6px;
    }

    .vc-prev,
    .vc-next {
        width: 36px;
        height: 36px;
        padding: 6px 10px;
        font-size: 16px;
    }

    .vc-prev {
        left: 8px;
    }

    .vc-next {
        right: 8px;
    }

    .vc-dots {
        bottom: 12px;
    }

    .vc-dot {
        width: 7px;
        height: 7px;
        margin: 0 3px;
    }

    .vc-image-carousel-section {
        padding: 20px 8px;
    }
}

/* Mobile (below 480px) */
@media (max-width: 480px) {
    .marsa-arabia-island-wrapper {
        gap: 25px;
        padding: 8px;
    }

    .marsa-arabia-island-wrapper > div {
        padding: 0 !important;
        width: 100% !important;
    }

    .stats-container {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .stat-item {
        padding: 0.7rem 0.4rem !important;
        width: 100%;
    }

    .stat-number {
        font-size: 22px !important;
        margin-bottom: 0.4rem !important;
    }

    .stat-label {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .vc-carousel {
        height: 250px !important;
        border-radius: 6px;
    }

    .vc-prev,
    .vc-next {
        width: 32px;
        height: 32px;
        padding: 5px 8px;
        font-size: 14px;
    }

    .vc-prev {
        left: 6px;
    }

    .vc-next {
        right: 6px;
    }

    .vc-dots {
        bottom: 10px;
    }

    .vc-dot {
        width: 6px;
        height: 6px;
        margin: 0 2px;
    }

    .vc-image-carousel-section {
        padding: 15px 6px;
    }

    h2 {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    ul {
        font-size: 13px !important;
    }

    ul li {
        margin-bottom: 8px !important;
    }
}

/* Extra Small Devices (below 375px) */
@media (max-width: 375px) {
    .marsa-arabia-island-wrapper {
        gap: 20px;
        padding: 6px;
    }

    .vc-carousel {
        height: 220px !important;
    }

    .stat-number {
        font-size: 20px !important;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    h2 {
        font-size: 18px !important;
    }

    p {
        font-size: 13px !important;
    }
}
.restaurant-logo.image-container{
    width: 200px !important;
    height: 150px !important;
}