
.teklif-container { margin-top: -100px; padding: 20px; }
.row-teklif { display: flex; gap: 30px; align-items: center; justify-content: center; }
.col-left, .col-right { flex: 1; }
.teklif-popup-inner { background: #fff; padding: 35px; border-radius: 12px; width: 100%; max-width: 720px; box-shadow: 0 0 25px rgba(0,0,0,0.08); box-sizing: border-box; }
.teklif-popup-inner h2 { margin-bottom: 20px; color: #002F6C; }
.teklif-popup-inner h3 { margin: 0 0 20px; color: #002F6C; }

.sigorta-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.sigorta-btn { background: #002F6C; color: #fff; border: none; padding: 12px; border-radius: 6px; cursor: pointer; transition: background .3s; }
.sigorta-btn:hover { background: #003e90; }
.sigorta-btn.active { background: #A32035; }

.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 15px; }
.form-grid input, .textarea { padding: 10px; border: 1px solid #ccc; border-radius: 6px; width: 100%; box-sizing: border-box; }

.check { display: block; text-align: left; font-size: 14px; margin-bottom: 8px; }
.popup-link { cursor: pointer; color: #002F6C; margin-left: 6px; font-weight: bold; text-decoration: underline; }
.submit-btn { margin-top: 10px; background: #A32035; color: white; padding: 12px 25px; border: none; border-radius: 6px; cursor: pointer; font-weight: 600; transition: background .3s; }
.submit-btn:hover { background: #8a1b2c; }

.teklif-sonuc { margin: 12px 0 0; font-size: 14px; }
.teklif-sonuc.is-loading { color: #002F6C; }
.teklif-sonuc.is-success { color: green; }
.teklif-sonuc.is-error { color: red; }

@media (max-width: 600px) {
    .row-teklif {flex-direction: column;}
    .form-grid {grid-template-columns: 1fr;}
}

/* SLIDER */
.teklif-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0px;
}

.teklif-slider-inner {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
}

.teklif-slider .slide {
    min-width: 100%;
}

.teklif-slider img {
    width: 100%;
    border-radius: 0px;
    display: block;
}

.teklif-slider .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #A32035;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, color .3s;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
}
.teklif-slider .arrow:hover { background: #A32035; color: white; }
.teklif-slider .arrow.prev { left: 10px; }
.teklif-slider .arrow.next { right: 10px; }

@media (max-width: 600px) {
    .row-teklif { flex-direction: column; }
    .col-right { order: 1; width: 100%; }
    .col-left { order: 2; width: 100%; }
    .form-grid { grid-template-columns: 1fr; }
}

/* MODAL */
.modal-overlay {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.is-open { display: flex; }

.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
}
@media (max-width: 600px) {
  .teklif-container {
    margin-top: -230px !important;
    margin-bottom:-100px !important;
  }

    .row-teklif {
        flex-direction: column;
    }

    .col-right {
        order: 1;
    }

    .col-left {
        order: 2;
    }

    .teklif-container {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .col-right,
    .teklif-slider {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom:-20px !important;
    }

    .teklif-slider img {
        width: 100% !important;
        display: block;
    }
}
.modal-inner-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #333;
}
.modal-content {
    position: relative;
}

.hide-mobile-form .col-left {
    display: block;
}

@media (max-width: 600px) {
    .hide-mobile-form .col-left {
        display: none !important;
    }

    .hide-mobile-form .col-right {
        order: 1;
        width: 100% !important;
        flex: 1 1 100%;
    }
}
