.cta-restaurant {
    padding: 80px 20px;
    background-color: #FFFFFF;
    position: relative;
    overflow: visible; 
    margin: 100px 0; 
}

.cta-restaurant::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4CAF50;
    opacity: 0.05;
}

.corner-image {
    position: absolute;
    z-index: 5;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.corner-image.top-right {
    top: -100px;
    right: 50px;
    transform: rotate(15deg);
}

.corner-image.bottom-left {
    bottom: -100px;
    left: 50px;
    transform: rotate(-10deg);
}

.corner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-image-side {
    flex: 1;
    padding: 30px;
}

.cta-image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.cta-image-frame:hover {
    transform: rotate(0);
}

.cta-image-frame::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.5) 100%);
}

.cta-food-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cta-image-frame:hover .cta-food-image {
    transform: scale(1.05);
}

.cta-content-side {
    flex: 1;
    border-radius: 18px;
    padding: 30px 50px;
    background-color: #4CAF50;
}

.cta-content-wrapper {
    max-width: 500px;
}

.cta-heading {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.accent-text {
    position: relative;
    color: white;
    font-weight: 800;
}

.cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin-bottom: 30px;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    margin-bottom: 25px;
}

.delivery-icon {
    width: 22px;
    height: 22px;
}

@media (max-width: 992px) {
    .cta-container {
        flex-direction: column-reverse;
    }
    
    .cta-image-side, .cta-content-side {
        width: 100%;
        padding: 20px;
    }
    
    .cta-content-wrapper {
        max-width: 100%;
        text-align: center;
        padding-top: 15px;
    }
    
    .cta-action {
        align-items: center;
    }
    
    .cta-heading {
        font-size: 36px;
    }
    
    .corner-image.top-right {
        width: 150px;
        height: 150px;
        top: -75px;
        right: 20px;
    }
    
    .corner-image.bottom-left {
        width: 150px;
        height: 150px;
        bottom: -75px;
        left: 20px;
    }
}

@media (max-width: 576px) {
    .cta-restaurant {
        padding: 50px 15px;
        margin: 80px 0;
    }
    
    .cta-image-frame {
        transform: rotate(0);
    }
    
    .cta-heading {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .corner-image.top-right {
        width: 100px;
        height: 100px;
        top: -50px;
        right: 15px;
    }
    
    .corner-image.bottom-left {
        width: 100px;
        height: 100px;
        bottom: -50px;
        left: 15px;
    }
}