* {
    font-family: 'Quicksand', sans-serif;
}

header {
    display: inline-block;
    width: 100%;
    padding: 15px 0px;
    position: absolute;
    background-color: #1e1f28;
    top: 0;
    left: 0;
    z-index: 10;

}

header .logo-area {
    height: 25px;
    margin-top: 10px;
}

header .diji-menu {
    margin: 0;
    padding: 0;
    float: right;
}

header .diji-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
}

header .diji-menu li a{
    margin: 0;
    text-decoration: none;
    color: #fff;
    padding: 10px 12px;
    display: block;
    font-weight: 500;
    font-size: 15px;
}

header .diji-menu > li > a > ion-icon{
    font-size: 15px;
    float: right;
    margin-left: 8px;
    margin-top: 5px;
}

header .diji-menu > li:last-child > a{
    color: #000;
    background-color: #dfff06;
    padding: 10px 25px;
    margin-left: 12px;
    border-radius: 8px;
    font-weight: 600;
}

#diji-menu .dropdown-menu { z-index: 1002; } /* header'dan da yukarıda */

/* Sayfa arka plan gölgesi */
.diji-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    top: 138px;             /* Header yüksekliği kadar aşağıdan başlasın */
    bottom: 0;
    background: rgba(0,0,0,.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    z-index: 1000;
}
.diji-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}


/* === DİJİ MENÜ (Desktop & Mobile) === */
#diji-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 3px;
}



/* Dropdown panel (desktop) */
#diji-menu .dropdown-menu {
    position: absolute;
    top: 138px;
    border: 0;
    left: 0;
    width: 100%;
    display: block;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 50;
    background-color: #fff;
    border-radius: 0;
}
#diji-menu .dropdown-menu > ul {
    list-style: none;
    margin: 6px;
    padding: 6px;
}
#diji-menu .dropdown-menu a {
    display: block;
    text-decoration: none;
    white-space: nowrap;
}

/* Açık durum */
#diji-menu > li.open > .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#diji-menu .menu-big-box {
    background-color: #1e1f28;
    width: 100%;
    display: inline-block;
    border-radius: 10px;
    padding: 35px 40px;
    margin: 17px 0px;
}

#diji-menu .menu-big-box span {
    color: #fff;
    font-size: 13px;
    display: block;
}

#diji-menu .menu-big-box p {
    color: #fff;
    font-size: 18px;
    margin-top: 11px;
    margin-bottom: 51px;
}

#diji-menu .menu-big-box a {
    background-color: #fff;
    padding: 9px 10px;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

#diji-menu .min-menu {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
}

#diji-menu .min-menu li {
    margin: 0;
    padding: 0;
    width: 100%;
}

#diji-menu .min-menu li h6 {
    margin-top: 17px;
    font-size: 14px;
    color: #848484;
}

#diji-menu .min-menu li a {
    margin: 0;
    padding: 3px 0;
    width: 100%;
    font-size: 16px;
    margin-bottom: 2px;
}







#diji-menu .product-min-menu {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
}

#diji-menu .product-min-menu li {
    margin: 0;
    padding: 0;
    width: 100%;
}

#diji-menu .product-min-menu li h6 {
    margin-top: 17px;
    font-size: 14px;
    color: #848484;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 9px;
}

#diji-menu .product-min-menu li a {
    margin: 0;
    width: 100%;
    font-size: 14px;
    margin-top: 6px;
    display: inline-block;
    background-color: #f6f5f59e;
    padding: 10px 15px;
    margin-bottom: 7px;
    border-radius: 3px;
    font-weight: 600;
}

#diji-menu .product-min-menu li a span {
    display: block;
    font-size: 13px;
    color: #656565;
    font-weight: 500;
}





/* --- Mobil görünüm --- */
#diji-menu-toggle {
    display: none; /* desktop'ta gizli */
}
@media (max-width: 992px) {
    /* Toggle buton */
    #diji-menu-toggle {
        display: inline-flex    ;
        align-items: center;
        justify-content: center;
        padding: 3px 5px;
        border-radius: 12px;
        background: #fff;
        cursor: pointer;
        font-weight: 600;
        user-select: none;
        margin-bottom: 4px;
        float: right;
        border: 0px;
        background-color: transparent;
        font-size: 43px;
    }

    #diji-menu-toggle[aria-expanded="true"] { background: #f8fafc; }

    /* Menü sütun olarak */
    #diji-menu {
        flex-direction: column;
        align-items: stretch;
        display: none;
        position: fixed;
        left: 0;
        width: 100%;
        background-color: #fff;
        top: 0;
        height: 100vh;
        overflow: auto;
        padding: 20px;
        color: #1e1f28;
        padding-top: 62px;
    }
    #diji-menu.is-open { display: flex; }

    #diji-menu > li { width: 100%; }
    #diji-menu > li > a {
        width: 100%;
        justify-content: space-between;
        margin: 0;
    }

    /* Dropdown'lar akordeon gibi, statik konum */
    #diji-menu .dropdown-menu {
        position: static;
        opacity: 0;
        pointer-events: none;
        transform: none;
        display: none;
    }
    #diji-menu > li.open > .dropdown-menu {
        opacity: 1;
        pointer-events: auto;
        display: block;
    }

    #diji-menu-close {
        position: fixed;
        top: 18px;
        right: 19px;
        z-index: 9999;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        display: none;
        color: #000;
    }

        /* Alt linkler tam genişlik */
    #diji-menu .dropdown-menu a { padding: 12px; }

    #diji-menu.submenu-open > li { display: none; }
    #diji-menu.submenu-open > li.open { display: block; }

    /* Submenu header (geri için) */
    #diji-menu .submenu-header { display: none; }
    #diji-menu.submenu-open .submenu-header {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
    }
    #diji-menu .submenu-header button {
        background: #fff;
        border-radius: 10px;
        padding: 8px 12px;
        cursor: pointer;
    }
    #diji-menu .submenu-header span {
        flex: 1;
        text-align: center;
        font-weight: 700;
    }
}



.career-area h6{
    margin-bottom: 21px;
    width: 100%;
    margin-top: 25px;
    border-bottom: 1px solid #f1f1f1;
    text-align: center;
    padding-bottom: 15px;
    font-weight: bold;
    font-size: 20px;
    color: dimgrey;
}

.career-area input, .career-area select {
    display: block;
    width: 100%;
    border: 2px solid #E8E8E8;
    padding: 13px 17px;
    background: #FFFFFF;
    color: #5f5f5f;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 25px;
    outline: 0;
}

.career-area input::placeholder {
    color: #5f5f5f;
}

.career-area textarea {
    display: block;
    width: 100%;
    border: 2px solid #E8E8E8;
    padding: 13px 17px;
    background: #FFFFFF;
    color: #5f5f5f;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 25px;
    outline: 0;
}

.career-area {
    padding: 35px 0px;
}

.career-area button {
    background-color: #ff053d;
    color: #fff !important;
    position: relative;
    border-radius: 5px !important;
    padding: 11px 35px !important;
    border: 0;
    font-size: 15.5px;
    font-weight: 600;
    position: relative;
    margin-top: -5px;
    outline: 0;
    width: 100%;
    max-width: 260px;
    text-align: center;
}


.career-select-btn input[type="radio"] {
    display: none;
}

.career-select-btn label {
    background-color: #f9f9f952;
    box-shadow: 0px 0px 10px #cccccc38;
    padding: 30px 20px;
    border: 1px solid #cccccc4a;
    border-radius: 5px;
    width: 100%;
}

.career-select-btn label h5 {
    color: #ff053d;
    font-size: 17px;
    font-weight: 600;
}

.career-select-btn label p {
    color: #8a8a8a;
    font-size: 15px;
    font-weight: 500;
    margin-top: 13px;
    display: block;
}

.career-select-btn label span {
    color: #8a8a8a;
    background-color: #ffffff59;
    display: inline-table;
    padding: 3px 15px;
    border: 1px solid #e2e2e2b8;
    font-size: 14px;
    border-radius: 5px;
    transition: all 500ms;
}

.career-select-btn label:hover span {
    color: #fff;
    background-color: #ff053d;
    display: inline-table;
    padding: 3px 15px;
    border: 1px solid #ff053d;
    font-size: 14px;
    border-radius: 5px;
    transition: all 500ms;
}

.career-select-btn input[type="radio"]:checked+label {
    background-color: #ff053d !important;
    color: #fff !important;
}

.career-select-btn input[type="radio"]:checked+label h5{
    color: #fff !important;
}

.career-select-btn input[type="radio"]:checked+label p{
    color: #fff !important;
}

.career-select-btn input[type="radio"]:checked+label span {
    color: #fff !important;
    background-color: transparent;
    border-color: #fff;
}


.contact-area {
    padding-top: 45px;
    display: inline-block;
    width: 100%;

}

.contact-area .box svg {
    height: 49px;
    margin-bottom: 12px;
    fill: #ff053d;
    float: left;
    margin-top: 8px;
    margin-right: 15px;
    background-color: #ff043d17;
    border-radius: 7px;
    padding: 11px;
}

.contact-area .box {
    text-align: left;
    margin-bottom: 15px;
    background-color: rgb(226 226 226 / 14%);
    padding: 15px;
    display: inline-block;
    width: 100%;
    border: 1px solid #e8e8e8;
    padding-bottom: 12px;
}

.contact-area .box h5 {
    color: #ff043d;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-area .box p {
    color: #656565;
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 15px;
    text-decoration: none;
}

.contact-area .box a {
    color: #656565;
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 16px;
    text-decoration: none;
}

/* varsayılan: masaüstü - br görünsün */
.branch-address br {
    display: inline;
}

/* mobil: br'leri gizle ve boşluk ekle */
@media (max-width: 768px) {
    .branch-address br {
        display: none;
    }
}

.hood-area {
    text-align: center;
}

.hood-area h2 {
    font-weight: 500;
    margin-top: 45px;
    font-size: 28px;
    color: #1e1f28;
}

.hood-area p {
    margin-bottom: 0px;
}

.maps-area {
    padding:0px;
    background-color: #f8fafc;
}

.maps-area .map-box h6 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 10px;
}

.search-area  {
    width: 100%;
    height: 90vh;
    padding-top: 15%;
    /* ÖNEMLİ: tek "background" ile hem overlay hem image beraber */
    background:
            linear-gradient(135deg,
            rgba(0,0,0,0.80) 0%,      /* siyah ağırlık */
            rgba(34,34,34,0.70) 50%,  /* koyu gri */
            rgba(232,255,74,0.30) 100% /* lime sarının hafif vurgusu */
            ),
            url('../img/sosyal_yasam_tramvay.jpg');

    background-size: cover;
    background-position: center;
}
.search-area .search-box .search-t label {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 15px;
}

.ms-drop.bottom {
    top: 100%;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    padding: 15px;
    border: 0px;
    margin-top: 3px;
    padding-bottom: 5px;
}

.ms-search input {
    width: 100%;
    height: auto !important;
    min-height: 24px;
    padding: 4px 5px !important;
    margin: 0;
    outline: 0;
    font-family: sans-serif;
    border: 1px solid #d1d1d1 !important;
    box-shadow: none !important;
    border-radius: 2px !important;
}

.search-area .search-box .summ-area {
    width: 100%;
    max-width: 600px;
    display: table;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    FONT-SIZE: 26PX;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 40px;
}

.search-t {
    width: 100%;
    max-width: 1080px;
    display: table;
    margin: 0 auto;
    padding: 25px;
    padding: 25px;
    border-radius: 15px;
    background: rgb(255 255 255 / 56%);
    border: 1px solid rgba(255, 255, 255, 0.54);
    background-blend-mode: normal, multiply;
    box-shadow: 0px 4px 19px 0px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.search-t select, .search-t .ms-parent button {
    width: 100%;
    height: 43px;
    border: 1px solid #ccc;
    padding: 4px 9px;
    border-radius: 5px;
    outline: 0;
}



.search-area .placeholder {
    background-color: transparent !important;
    top: 8px;
    left: 3px;
}

.ms-choice>div.icon-close {
    position: absolute;
    top: 8px !important;
    right: 16px;
    height: 100%;
    width: 16px;
}

.ms-choice>span {
    top: 8px !important;
    left: 7px !important;
}




.search-t button.search-btn {
    color: #000;
    background-color: #dfff06;
    padding: 10px 12px;
    border-radius: 5px;
    width: 100%;
    border: 0px;
    outline: 0;
    font-weight: 600;
    margin-top: 28px;
}



.map-wrapper {
    width: 100%;
    height: 400px;
}
#branchMap {
    width: 100%;
    height: 100%;
}
/* InfoWindow özelleştirme */
.gm-style-iw-d {
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
}


/* içeriği tam sıfırlayıp senin tasarımınla hizalar */
.gm-style-iw {
    padding: 0 !important;
}


.gm-style .gm-style-iw-c {
    background: #fff !important;
    border-radius: 10px !important;
    padding: 0px 18px 3px !important;
    box-shadow: 0 6px 25px rgba(0,0,0,.25) !important;
    color: #222 !important;
    font-family: 'Inter', sans-serif;
    max-width: 260px !important;
}
.gm-style .gm-style-iw-t::after {
    background: #fff !important;
}
.gm-ui-hover-effect {
    display: none !important; /* kapatma butonunu gizle */
}
.info-title {
    font-weight: 700;
    width: 100%;
    text-align: center;
    font-size: 15px;
    color: #ff053d;
    margin-bottom: 6px;
}
.info-text {
    font-size: 13px;
    width: 100%;
    text-align: center;
    color: #333;
    line-height: 1.4;
    margin-bottom: 10px;
}
.info-btn {
    display: table;
    margin: 0 auto;
    background-color: #ff053d;
    color: #fff !important;
    padding: 8px 10px;
    width: 100%;
    text-align: center;
    max-width: 142px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.25s;
    margin-bottom: 13px;
}
.info-btn:hover {
    background-color: #e10437;
}

footer {
    background-color: #1e1f28;
    width: 100%;
    padding-top: 45px;
    display: inline-block;
    width: 100%;
}

footer .footer-min-menu {
    padding: 0;
    margin: 0;
    width: 100%;
}

footer .footer-min-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

footer .footer-min-menu li a{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.93);
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
    width: 100%;
}

footer .footer-min-menu h6 {
    color: #fff;
    border-bottom: 1px dashed #fff;
    padding-bottom: 11px;
    margin-bottom: 19px;
    font-size: 14px;
    font-weight: 600;
}

footer .bank-area {
    background-color: #252731;
    width: 100%;
    display: inline-block;
    padding: 20px 0px;
    margin-top: 45px;
    margin-bottom: 30px;
}

footer .footer-bank {
    display: table;
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
}

footer .footer-about img {
    width: 100%;
    max-width: 152px;
    margin-top: 10px;
    margin-bottom: 15px;
}

footer .footer-about p {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}


footer .footer-bottom {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

footer .footer-bottom p {
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
}

footer .footer-bottom ul {
    float: right;
    margin: 0px;
    padding: 0px;
    margin-top: -9px;
}

footer .footer-bottom ul li {
    float: left;
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-left: 10px;
    color: #fff;
    font-size: 13px;
}

footer .footer-bottom ul li a img {
    height: 37px;
}

footer .footer-contact {
    width: 100%;
    background-color: #252731;
    padding: 25px 35px;
    border-radius: 52px;
    margin-bottom: 42px;
    margin-top: 10px;
    display: inline-block;
}

footer .footer-contact p{
    color: #fff;
    font-width: 600;
    margin: 0;
    float: left;
}

footer .footer-contact p a{
    color: #fff;
    text-decoration: none;
    font-width: 500;
}

footer .footer-contact ul {
    margin: 0;
    padding: 0;
    float: right;
}

footer .footer-contact ul li {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
}

footer .footer-contact ul li a {
    margin-left: 14px;
    color: #fff;
    font-size: 20px;
    margin-top: -3px;
    display: block;
    margin-bottom: -5px;
}

footer .contact-form {
    background-color: #17181f;
    width: 100%;
    min-width: 100px;
    margin-top: -100px;
    border-radius: 15px;
    padding: 25px;
}

footer .contact-form h5 {
    color: #fff;
}

footer .contact-form p {
    color: #fff;
}



footer .footer-app-social {
    width: 100%;
    background-color: #252731;
    padding: 25px 15px;
    border-radius: 10px;
}


footer .footer-app-social h6 {
    width: 100%;
    color: #fff;
    text-align: center;
}

footer .footer-app-social .app {
    width: 100%;
    margin: 0;
    padding: 0;
}

footer .footer-app-social .app li {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

footer .footer-app-social .app li img {
    width: 100%;
    display: table;
    max-width: 182px;
    margin: 0 auto;
    margin-top: 17px;
}



footer .footer-app-social .social  {
    margin: 0 auto;
    padding: 0;
    display: table;
    margin-top: 15px;
    margin-bottom: 20px;

}

footer .footer-app-social .social  li {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
}

footer .footer-app-social .social  li a {
    margin-left: 14px;
    color: #fff;
    font-size: 20px;
    margin-top: -3px;
    display: block;
    margin-bottom: -5px;
}


.hood-area {
    width: 100%;
    padding-top: 180px;
    padding-bottom: 45px;

    /* sadece fotoğraf */
    background-image: url('../img/sosyal_yasam_tramvay.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hood-area::before{
    content:"";
    position:absolute;
    inset:0;
    z-index: 2;
    pointer-events:none;
    background: linear-gradient(135deg,
    rgba(0,0,0,0.80) 0%,
    rgba(34,34,34,0.70) 50%,
    rgba(232,255,74,0.30) 100%
    );
}

.hood-area .page-hood {
    color: #fff;
    z-index: 9;
    position: relative;
    font-size: 21px;
    font-width: 700;
}

.hood-area p {
    color: #fff;
    z-index: 9;
    position: relative;
    width: 100%;
    max-width: 780px;
    display: table;
    margin: 0 auto;
    margin-bottom: 12px;
    margin-top: 19px;
}

.hood-area ion-icon {
    color: #fff;
    z-index: 9;
    position: relative;
}
.maps-area {
    padding-top: 45px;
}

.map-wrap {
    position: relative;
    width: 100%;
}

#svg-turkiye-haritasi svg {
    width: 100%;
    height: auto;
    display: block;
}

#svg-turkiye-haritasi [data-iladi] {
    cursor: pointer;
    transition: fill 0.2s ease, opacity 0.2s ease;
}

#svg-turkiye-haritasi path {
    fill: #cdd1d6;
    stroke: #fff;
    stroke-width: 1;
}

#svg-turkiye-haritasi g:hover > path {
    fill: #9aa3ad;
}

#svg-turkiye-haritasi g.active > path {
    fill: #1f568a;
}

.il-isimleri {
    position: absolute;
    z-index: 10;
    display: none;
    pointer-events: none;
    padding: 6px 10px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    color: #fff;
    background: #1f2937;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    transform: translate(-50%, -110%);
}

.il-isimleri.show {
    display: block;
}

.maps-hood-area {
    background: linear-gradient(45deg, #18435a, #1389a7, #18435a);
    background-size: 300% 300%;
    animation: gradientMove 6s ease infinite;
    text-align: center;
    margin-bottom: 25px;
    padding: 35px 0px;
    padding-top: 42px;
}

.maps-hood-area h1 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.maps-hood-area p {
    color: #fff;
    font-size: 17px;
}

.maps-hood-area ion-icon {
    color: #fff;
}

/* Gradient Animasyon Keyframes */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.city-list-select {
    background-color: #f9fafc;
    padding: 0;
    margin: 0;
    padding-top: 44px;
}

.city-list-select ul {
    margin: 0;
    padding: 3px;
    width: 100%;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid #16647f61;
}

.city-list-select ul li {
    margin: 0;
    padding: 0;
    float: left;
    width: 50%;
    list-style: none;
}

.city-list-select ul li a.active {
    background: linear-gradient(45deg,
    #dfff38,
    #e8ff4a,
    #dfff38
    );
    background-size: 300% 300%;
    animation: gradientMove 6s ease infinite;
    color: #000; /* siyah yazı – butondaki gibi */
}

.city-list-select ul li a {
    width: 100%;
    color: #18435a;
    text-align: center;
    display: block;
    text-decoration: none;
    padding: 11px 5px;
    border-radius: 5px;
    font-weight: 600;
}

.city-select-area {
    margin-bottom: 15px;
}

.city-select-area .city-box {
    background-color: #e9e9e9;
    width: 100%;
    text-decoration: none;
    color: #11566b;
    display: block;
    margin-bottom: 12px;
    padding: 10px 13px;
    border-radius: 3px;
    font-weight: 600;
}

.city-select-area .city-box span {
    float: right;
}

.project-list-area {
    display: inline-block;
    width: 100%;
}

.city-select-area {
    margin-top: 15px;
}

.login-t input {
    width: 100%;
    height: 55px;
    border: 1px solid #e8e8e8;
    padding: 4px 19px;
    border-radius: 5px;
    outline: 0;
}

.float-field{
    position: relative;
    margin-bottom: 5px;
}

.float-field input{
    width: 100%;
    height: 58px;
    background: #f5f8fc; /* ATTIGIN GÖRSELDEKİ GİBİ */
    border: 1px solid #d9e4ef;
    border-radius: 5px;
    padding: 24px 18px 10px; /* üst padding fazla, label yer açmak için */
    font-size: 16px;
    outline: 0;
    transition: .2s;
}

.float-field label{
    position: absolute;
    left: 20px;
    top: 18px; /* input ile aynı hizadan başlar */
    font-size: 17px;
    color: #646f79;
    pointer-events: none;
    transition: .2s;
}

/* fokus veya doluysa */
.float-field input:focus + label,
.float-field input:not(:placeholder-shown) + label{
    top: 5px;
    font-size: 11px;
    color: #8a9aa5;
}

.login-t .search-btn {
    margin-top: 15px !important;
    padding: 15px 10px !important;
}

.login-t {
    padding: 35px 35px;
}

.login-t h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-top: 6px;
}

.login-t p {
    text-align: center;
    font-weight: 500;
    margin-bottom: 26px;
}

.min-hood-area {
    padding-top: 110px;
    padding-bottom: 25px;
}

.project-list {
    padding: 35px 0px;
    padding-bottom: 20px;
}

.project-box {
    padding: 15px;
    width: 100%;
    background-color: #1e1f2808;
    margin-bottom: 25px;
    text-decoration: none;
    display: inline-block;
}

.project-box .project-image {
    width: 100%;
    height: 252px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-box .project-image span {
    font-weight: 700;
    position: absolute;
    right: 12px;
    top: 12px;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 13px;
    background-color: #dfff06;
    color: #000;
}


.project-box h6 {
    margin-top: 13px;
    font-weight: 600;
    color: #000;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    margin-bottom: 12px;
}

.project-box .room-ul {
    display: table;
    width: auto;
    margin: 0 auto;
    padding: 0;
}

.project-box ul li {
    list-style: none;
    float: left;
    margin: 0;
    width: auto !important;
    margin-right: 3px;
    background-color: #252731;
    padding: 1px 11px;
    color: #fff;
    border-radius: 6px;
    margin-left: 3px;
}

.project-box .view-btn {
    background-color: #dfff06;
    color: #000;
    text-align: center;
    margin-bottom: 0;
    margin-top: 13px;
    padding: 10px 5px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
}


.payment_options_area {
    padding: 45px 0px;
}
.mortgage-calc .mc-card{
    background:#f7f9fb;
    border:1px solid #e1e8f0;
    border-radius:16px;
    padding:22px;
    max-width:880px;
    margin:0 auto;
    width:100%;
    display:block;
}
.mortgage-calc .mc-label{
    display:block;
    margin:0 0 8px;
    font-weight:700;
    color:#1f2a36;
    font-size:16px;
}
.mortgage-calc .mc-input-wrap{ position:relative; }
.mortgage-calc .mc-prefix{
    position:absolute; left:14px; top:50%; transform:translateY(-50%);
    color:#6b7b88; font-weight:700; font-size:16px;
}
.mortgage-calc .mc-input{
    width:100%;
    height:56px;
    border:1px solid #cfd9e3;
    background:#f1f6fb;
    border-radius:10px;
    padding:0 14px 0 36px;
    font-size:18px;
    outline:none;
    transition:border-color .15s, box-shadow .15s;
}
.mortgage-calc .mc-input:focus{
    border-color:#8fb3d6;
    box-shadow:0 0 0 3px rgba(143,179,214,0.25);
}
.mortgage-calc .mc-range-top{ display:flex; gap:12px; align-items:center; margin-bottom:8px; }
.mortgage-calc .mc-range-bubble{
    background:#1e1f28; color:#fff;
    border-radius:20px;
    padding:6px 10px;
    font-size:12px;
    display:inline-block;
    white-space:nowrap;
}
.mortgage-calc .mc-range-min{ color:#6b7b88; font-weight:700; font-size:13px; }
.mortgage-calc .mc-range-value{ color:#1e1f28; font-weight:700; font-size:14px; }
.mortgage-calc .mc-range input[type=range]{
    width:100%;
    -webkit-appearance:none;
    height:6px;
    background:#d7e3ef;
    border-radius:8px;
    outline:none;
}
.mortgage-calc .mc-range input[type=range]::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:22px; height:22px;
    background:#1e1f28;
    border-radius:50%;
    border:3px solid #b9cde2;
    cursor:pointer;
}
.mortgage-calc .mc-range input[type=range]::-moz-range-thumb{
    width:22px; height:22px;
    background:#1e1f28;
    border-radius:50%;
    border:3px solid #b9cde2;
    cursor:pointer;
}
.mortgage-calc .mc-range-ticks{
    display:flex;
    justify-content:space-between;
    color:#6b7b88;
    font-size:12px;
    margin-top:8px;
}
.mortgage-calc .mc-section{ margin-top:18px; }
.mortgage-calc .mc-select{
    width:100%;
    text-align:left;
    background:#f1f6fb;
    border:1px solid #cfd9e3;
    border-radius:10px;
    padding:14px 44px 14px 16px;
    cursor:pointer;
    position:relative;
}
.mortgage-calc .mc-select:hover{ border-color:#8fb3d6; }
.mortgage-calc .mc-select-title{
    display:block;
    font-weight:800;
    color:#1f2a36;
    font-size:16px;
}
.mortgage-calc .mc-select-sub{
    display:block;
    color:#6b7b88;
    font-size:14px;
    margin-top:2px;
}
.mortgage-calc .mc-select-caret{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    font-size:16px;
}
.mortgage-calc .mc-select-menu{
    margin-top:8px;
    background:#ffffff;
    border:1px solid #cfd9e3;
    border-radius:10px;
    overflow:hidden;
}
.mortgage-calc .mc-select-menu button{
    width:100%;
    text-align:left;
    padding:12px 14px;
    border:0;
    background:#fff;
    cursor:pointer;
    font-size:14px;
}
.mortgage-calc .mc-select-menu button:hover{ background:#f7f9fb; }
.mortgage-calc .mc-terms{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}
.mortgage-calc .mc-term{ display:block; position:relative; }
.mortgage-calc .mc-term input{ position:absolute; opacity:0; pointer-events:none; }
.mortgage-calc .mc-term-ui{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    background:#ffffff;
    border:2px solid #cfd9e3;
    border-radius:12px;
    padding:14px 16px;
    font-weight:700;
    transition:border-color .15s, box-shadow .15s, background .15s;
}
.mortgage-calc .mc-term-left{ display:flex; align-items:center; gap:10px; }
.mortgage-calc .mc-radio{
    width:22px; height:22px;
    border-radius:50%;
    border:2px solid #1e1f28;
    display:inline-block;
    position:relative;
}
.mortgage-calc .mc-term input:checked + .mc-term-ui{
    background:#dfff06;
    box-shadow:none;
}
.mortgage-calc .mc-term input:checked + .mc-term-ui .mc-radio::after{
    content:"";
    position:absolute;
    inset:4px;
    background:#1e1f28;
    border-radius:50%;
}
.mortgage-calc .mc-term-right{
    color:#1f2a36;
    font-weight:800;
    font-size:16px;
}
.mortgage-calc .mc-cta{
    width:100%;
    height:56px;
    margin-top:18px;
    border-radius:12px;
    border:0;
    background:#1e1f28;
    color:#fff;
    font-weight:600;
    font-size:16px;
    cursor:pointer;
}
.mortgage-calc .mc-cta:hover{ filter:brightness(1.08); }
@media (max-width:768px){
    .mortgage-calc .mc-terms{ grid-template-columns:1fr; }
}

.home-project-list {
    padding: 45px 0px;
    padding-bottom: 5px;
}

.project-hood h3 {
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

.project-hood p {
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 20px;
}

.home_payment_options_area {
    padding: 45px 0px;
    background-color: #e6effca8;
}

.payment-options-text {
    text-align: center;
    padding: 15px 25px;
}

.payment-options-text h5 {
    margin-top: 20px;
    font-weight: 600;
    font-size: 17px;
}
