
.main-container {
    display: flex;
    gap: 95px;
    align-items: flex-start;
    margin-bottom: 100px
}

.gallery-container {
    flex: 0 0 60%;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.small-images {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.small-images img {
    width: 31%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.small-images img:hover {
    transform: scale(1.05);
}

.info-container {
    flex: 0 0 35%;
    background: #151719;
    /* Full black to match */
    padding: 0;
    margin-top: 0;
}

.info-container h4 {
    font-size: 55px;
    line-height: 1.2em;
    margin: 0 0 0px 0;
    padding: 0;
    text-align: left;
    /* Align left */
    letter-spacing: 1.7px;
    font-weight: unset;
}

.info-container p {
    font-size: 18px;
    color: #CFCFCF;
    margin-bottom: 30px;
    text-align: left;
    line-height: 1.9;
    letter-spacing: 0.8px;
}

.info-container button {
    display: block;
    /* display: block; */
    /* width: 100%; */
    padding: 14px;
    margin-bottom: 15px;
    font-size: 16px;
    border: 1px solid #f6d69f;
    background-color: transparent;
    color: #cfcfcf;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-container button:hover {
    background-color: #A1845A;
    color: #000;
    border-color: #A1845A;
}

.whatsapp-btn {
    border-color: #25d366;
    /* WhatsApp green border */
}

.whatsapp-btn:hover {
    background-color: #25d366;
    color: #000;
    border-color: #25d366;
}

/* Responsive */
@media (max-width: 1190px) {
    .main-container {
        flex-direction: column;
    }

    .gallery-container,
    .info-container {
        flex: 100%;
    }

}

@media (max-width: 1190px) {
    .main-container {
        flex-direction: column;
        /* Top-Bottom instead of Left-Right */
        padding: 0px;
        gap: 40px;
        align-items: center;
    }

    .gallery-container,
    .info-container {
        width: 100%;
        flex: none;
    }

    .main-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .small-images {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 8px;
    }

    .small-images img {
        width: 30%;
        min-width: 90px;
    }

    .info-container {
        text-align: center;
        /* Center text in mobile */
    }

    .info-container h4 {
        font-size: 32px;
    }

    .info-container p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .info-container button {
        width: 90%;
        max-width: 400px;
        margin: 10px auto;
    }
}

.whatsapp-btn:before {
    font-family: "Font Awesome 6 Brands";
    content: "\f232";
    /* WhatsApp icon unicode */
    margin: 10px;
    font-weight: normal;
}

.enquery-icon:before {
    font-family: "Font Awesome 6 Brands";
    content: "\f298";
    margin: 10px;
    font-weight: normal;
}
