* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

body, html {

    height: 100%;

    font-family: 'Roboto', sans-serif;

}
.h-100 {
    height: 93%;
}
.loading-screen {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

    background: #183762;

    position: relative;

    overflow: hidden;

}

.loading-screen::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: url('../img/loading-image.jpg') no-repeat center center;

    background-size: cover;

    clip-path: inset(20px round 20px);

    z-index: 1;

}

.main-screen {

    display: none;

    flex-direction: column;

    justify-content: space-between;

    height: 100%;

    background: #f3f3f3;

}

.header {

    padding: 20px;

    text-align: center;

    background: #ffffff;

}

.header img {

    max-width: 250px;

}

.form-container {

    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: url('../img/mobil-back.jpg') no-repeat center center;

    background-size: cover;

    padding-left: 10px;

    padding-right: 10px;

}

.form-active {

    width: 100%;

    height: auto;

    border: 10px solid #183762;

    border-radius: 10px;

    background-color: rgba(255, 255, 255, 0.719);

    padding: 20px;

    clip-path: inset(20px round 20px);

}

.form-container h2 {

    margin-bottom: 20px;

    color: #183762;

    text-align: center;

    font-size: 24px;

    font-weight: 700;

}

.form-container form {

    display: flex;

    flex-direction: column;

    align-items: center;

}

.phone-input {

    display: flex;

    align-items: center;

    margin-bottom: 20px;

    font-size: 20px;

    font-weight: 700;

}

.phone-input span {

    padding: 10px;

    background: #183762;

    color: #fff;

    border-radius: 5px 0 0 5px;

    display: flex;

    align-items: center;

    justify-content: center;

    height: 40px;

    font-size: 20px;

    font-weight: 700;

}

.phone-input input {

    padding: 10px;

    border: 1px solid #183762;

    border-radius: 0 5px 5px 0;

    outline: none;

    width: calc(200px - 10px);

    height: 40px;

    font-size: 20px;

    font-weight: 700;

}

.form-container button {

    padding: 10px 20px;

    background: #183762;

    color: #fff;

    border: none;

    border-radius: 5px;

    cursor: pointer;

    transition: background 0.3s;

    font-size: 18px;

    font-weight: 500;

}

.form-container button:hover {

    background: #15558d;

}

.footer {

    padding: 20px;

    text-align: center;

    background: #183762;

    color: #fff;

}

.modal {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.6);

    display: none;

    align-items: center;

    justify-content: center;

}

.modal-content {

    width: 90%;

    background: white;

    padding: 20px;

    border-radius: 10px;

}

#map {

    height: 300px;

    width: 100%;

}

#select-location {

    position: absolute;

    top: 25%;

    left: 50%;

    transform: translateX(-50%);

    z-index: 999999;

    background: white;

    padding: 10px;

    border-radius: 5px;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    
    display: flex; width: 240px; align-content: center;  flex-direction: column; height:90px

}

#select-location button {

    padding: 5px 10px;

    margin-top: 5px;

}

.boxbody {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: #f0f0f0;
    padding: 10px;
}
.info-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.info-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #000; /* Başlıklar siyah */
    display: flex;
    flex-direction: column; /* Her bir satırı alt alta dizer */
    gap: 10px; /* Satırlar arasında boşluk bırak */
}
.info-container p {
    font-size: 20px;
    margin: 6px 0;
    color: #007bff; /* Mavi metin */
    font-weight: bold;
}
.label {
    font-size: 16px;
    font-weight: 700;
    color: #000;

}
.info-item {
    display: flex; /* Yan yana sütunlar için flexbox kullan */
    align-items: center; /* Sütunları dikey ortala */
    gap: 10px; /* Sütunlar arasında boşluk bırak */
    padding: 6px 0; /* Satırlar arasında boşluk */
    border-bottom: 1px solid #ccc; /* Satır altına çizgi ekle */
}

.info-item:last-child {
    border-bottom: none; /* Son satırda çizgi olmasın */
}

.column {
    display: block;
}

.label {
    flex: 5; /* Açıklama sütununa geniş alan tanı */
    text-align: left; /* Sola yasla */
    font-weight: bold;
    color: #183762;
}

.colon {
    flex: 0 0 5px; /* Nokta sütununun sabit genişliği */
    text-align: center; /* Ortala */
}

.value {
    flex: 3; /* Açıklama kısmına geniş alan tanı */
    text-align: left; /* Sola yasla */
    font-weight: 800; /* Daha kalın font */
    color:#db0000;
}