    .image-row {
        display: flex;

    }

    /* Opsiyonel: responsive font */
    @media (max-width: 886px) {
        .image-row {
            display: flex;
            flex-direction: column;
        }
    }

    .image-card {
        flex: 1;
        /* 4 resim eşit genişlik */
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

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


    .image-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.1);
        /* data-opacity-mask eşdeğeri */
        transition: background-color 0.3s ease;
    }

    /* Hover efektli istersen */
    .image-card:hover::after {
        background-color: rgba(0, 0, 0, 0.3);
        /* hafif açılır */
        transform: scale(1.05);
    }

    .badge-circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-color: #fff;
        color: #fff;
        border: 2px solid #fff;
        /* ana renk, btn_1 ile uyumlu */
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        text-align: center;
        padding: 10px 20px;
        /* buton gibi genişlik */
        border-radius: 30px;
        /* yuvarlak hatlar */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease-in-out;
        cursor: pointer;
        white-space: nowrap;
        z-index: 2;
    }

    /* Hover efekti */
    .image-card:hover .badge-circle {
        background-color: #4b514d;
        border: 2px solid transparent;
        color: #fff;
    }


    /* Opsiyonel: responsive font */
    @media (max-width: 576px) {
        .badge-circle {
            font-size: 16px;
            padding: 10px 16px;
        }
    }

    .title-color {
        color: #978667 !important;
    }


    #main-div-chat {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 10;
    }

    #main-button {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        bottom: 0;
        height: 50px;
        width: 50px;
        font-size: 20px;
        color: #978667;
        cursor: pointer;
        background-color: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

    #main-button~button {
        visibility: hidden;
        font-weight: 600;
        height: 50px;
        padding: 0 20px;
        color: #fff;
        background: linear-gradient(90deg, #b8a98d, #978667);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
        border: 0;
        position: absolute;
        z-index: -1;
        right: 0;
        bottom: 0;
        opacity: 0;
        white-space: nowrap;
        cursor: pointer;
        transition: .2s all linear;
        -webkit-transition: .2s all linear;
        -moz-transition: .2s all linear;
        -ms-transition: .2s all linear;
        -o-transition: .2s all linear;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }

    #main-button.open~button {
        visibility: visible;
        right: 70px;
        opacity: 1;
        transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
        -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
        -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
        -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
        -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    }

    #main-button~a {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: -1;
        height: 50px;
        width: 50px;
        font-size: 20px;
        opacity: 0;
        text-decoration: none;
        color: #fff;
        background-color: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        transition: .2s all linear;
        -webkit-transition: .2s all linear;
        -moz-transition: .2s all linear;
        -ms-transition: .2s all linear;
        -o-transition: .2s all linear;
    }

    #main-button~.call-color {
        background: linear-gradient(0deg, #017AB1, #01ABE6);
    }

    #main-button~.whatsapp-color {
        background: linear-gradient(0deg, #00B100, #09db09);
    }

    #main-button~.messenger-color {
        background: linear-gradient(0deg, #0078FF, #00C6FF);
    }

    #main-button.open~a {
        opacity: 1;
        transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
        -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
        -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
        -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
        -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    }

    #main-button.open~a:nth-of-type(1) {
        bottom: 60px;
    }

    #main-button.open~a:nth-of-type(2) {
        bottom: 120px;
    }

    #main-button.open~a:nth-of-type(3) {
        bottom: 180px;
    }

    .wave {
        animation-name: wave;
        animation-duration: 1s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    @keyframes wave {
        0% {
            box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
        }

        100% {
            box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0);
        }
    }

    .open {
        animation-iteration-count: 1;
    }