/* ======================================= */
/* İLETİŞİM FORMU OVERLAY STİLLERİ         */
/* ======================================= */

#contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark-blue);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    
    /* Başlangıçta gizli olacak */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#contact-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

.contact-container {
    display: flex;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    max-height: 700px;
}

.contact-info, .contact-form-wrapper {
    flex: 1;
    color: #EAEAEA;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.contact-info p {
    margin-bottom: 30px;
    color: #a0a0a0;
}
.info-item {
    margin-bottom: 15px;
}
.info-item strong {
    display: block;
    margin-bottom: 5px;
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Form Stilleri */
.form-group {
    margin-bottom: 20px;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 15px;
    background-color: #111B26;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    color: #EAEAEA;
    font-size: 1rem;
    font-family: var(--font-main);
}
.contact-form-wrapper select {
    appearance: none; /* Tarayıcı varsayılan okunu kaldır */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 1em;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: #111;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.submit-btn:hover {
    background-color: #fff;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        overflow-y: auto;
        max-height: 100%;
    }
    .contact-info {
        text-align: center;
    }
}