 /* ===== VİZE SAYFASI ===== */

.vize-page {
    background: #f4f8ff;
}

.vize-banner {
    min-height: 850px;
    background-image: url("../img/vize.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    position: relative;
}

.vize-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35); /* Görsel üzerindeki karartma bir tık artırıldı */
}

.vize-form {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
    background: transparent;
}

.vize-form h1 {
    text-align: center;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 3px 10px rgba(0,0,0,0.8);
    font-size: 32px;
}

.vize-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.vize-form input,
.vize-form select,
.vize-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.9); /* Form elemanlarının okunabilirliği için opacity artırıldı */
    color: #333;
    font-size: 14px;
    box-sizing: border-box;
    font-weight: 500;
}

.vize-form input::placeholder,
.vize-form textarea::placeholder {
    color: #666;
}

.vize-form .full {
    grid-column: 1 / 3;
}

.vize-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Tarih Alanları Özel Düzenleme */
.date-field {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.9);
    box-sizing: border-box;
}

.date-field span {
    min-width: 130px; /* Daha dengeli bir genişlik */
    font-size: 13px;
    color: #555;
    font-weight: 600;
}

.date-field input[type="date"] {
    flex: 1;
    border: none;
    background: transparent;
    color: #333;
    font-size: 14px;
    padding: 0;
    min-height: auto;
}

/* Gönder Butonu */
.vize-form button {
    display: block;
    margin: 35px auto 0;
    background: #000; /* Daha kurumsal durması için siyah taban */
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    padding: 15px 45px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s all ease;
}

.vize-form button:hover {
    background: #ff0000; /* OkyanusTur kırmızı vurgusu */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .vize-form-grid { grid-template-columns: 1fr; }
    .vize-form .full { grid-column: 1 / 2; }
    .vize-form h1 { font-size: 24px; }
}
