﻿/* RESET */
* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background: #ffffff;
    text-align: center;
    color: #000;
}

.page {
    min-height: calc(100dvh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo img {
    width: 320px;
    margin-bottom: -50px;
}

h1 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #2d8ffd;
    font-weight: 600;
}

/* ========================= */
/* SEARCH COMPONENT (TEK PARÇA) */
/* ========================= */

.search-wrapper {
    display: flex;
    align-items: stretch;
    width: 460px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #d6d6d6;
    overflow: hidden;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 18px;
    font-size: 16px;
    background: transparent;
    min-width: 0;
}

.search-btn {
    width: 56px;
    border: none;
    background: #ebecee;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .search-btn:active {
        transform: scale(0.95);
    }

    .search-btn:focus-visible {
        outline: none;
    }
.footer-overlay {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(6px);
    padding: 18px 70px;
    border-radius: 15px;
    display: inline-block;
    width:max-content;    
}

    .footer-overlay .copyright {
        margin-top: 8px;
        font-size: 12px;
        color: #f1f1f1;
    }

.footer-bg {
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 0;
}

.ui-autocomplete {
    margin-top: 4px;
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
    padding: 6px 0;
    max-height: 260px;
    z-index: 9999 !important;
}

.ui-menu-item {
    padding: 0 !important;
}

.ui-menu-item-wrapper {
    padding: 10px 14px;
    font-size: 15px;
    line-height: 1.45;
    cursor: pointer;
    text-align: left;
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
}

    .ui-menu-item-wrapper .bold {
        font-weight: 700;
    }

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 520px) {
    .search-wrapper {
        width: 90%;
    }

    h1 {
        font-size: 26px;
    }
    .ui-autocomplete {
        width: calc(100% - 59px) !important;
        left:30px !important;
        right:29px !important;
        max-height: 45vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }
    .ui-menu-item-wrapper {
        padding: 14px 16px;
        font-size: 16px;
        line-height: 1.6;
    }

        .ui-menu-item-wrapper.ui-state-active {
            background: #e9f1ff;
        }
}
.selected-address-box {
    border: 1px solid #ddd;
    padding: 18px;
    border-radius: 4px;
    text-align: center;
    margin: 20px auto 40px;
}

.selected-address-line {
    font-size: 20px;
    font-weight: 700;
    color: #2d8ffd;
}

.selected-address-city {
    margin-top: 6px;
    font-size: 16px;
    color: #333;
}

/* FORM */
.step2-form h3 {
    margin: 30px 0 12px;
    font-size: 18px;
}

.helper-text {
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}
label {
    color: #2d8ffd;
    font-weight: bold;
}

@media (min-width: 992px) {
    .report-addresline {
        width: 83.33333333%
    }
}

.index-arrow {
    height: 80px;
    width: 80px
}

.index-arrow-row {
    align-content: center;
    justify-content: center;
    margin-top: 10px;
    margin-right: 19px;
}
.free-text {
    font-weight: 700;
    font-size:15px
}

.slogan-text {
    font-weight: 600;
    color: #2d8ffd;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 32px;
}
@media (max-width:767px){
    .slogan-text {
        font-weight: 600;
        color: #2d8ffd;
        margin-bottom: 10px;
        margin-top: 10px;
        font-size:19px;
    }
}
label.error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}
.address-error {
    display: block;
    margin-top: 6px;
    font-size: 14px;
}