/* Genel Sıfırlama ve Font */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8; /* Açık arka plan */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Ana Konteyner */
.appointment-page-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Köşelerin yuvarlaklığını korur */
}

/* --- SOL SÜTUN: GÖRSEL --- */
/* --- SOL SÜTUN: GÖRSEL --- */
.visual-panel {
    flex: 1; 
    /* GÜNCELLENMİŞ GÖRSEL URL'Sİ: Modern bir kuaför salonu görseli */
    background-image: url('image.png'); 
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    display: flex;
    align-items: flex-end; 
    padding: 40px;
}
/* ... geri kalan CSS kodları aynı kalır ... */
/* Görselin üzerine hafif şeffaf koyuluk katmanı (metni okunur yapmak için) */
.visual-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Yarı şeffaf siyah */
}

.visual-content {
    position: relative; /* Katmanın üstünde kalması için */
    z-index: 1;
}

.visual-content h1 {
    font-weight: 700;
    font-size: 2.2em;
    margin-bottom: 10px;
}

.visual-content p {
    margin-bottom: 25px;
    font-weight: 300;
}

.contact-info p {
    font-size: 0.9em;
    margin-top: 5px;
}

.contact-info i {
    margin-right: 10px;
    color: #f7b731; /* Vurgu rengi */
}

/* --- SAĞ SÜTUN: FORM --- */
.form-panel {
    flex: 1.5; /* Sağdaki form daha geniş */
    padding: 50px 40px;
    background-color: #fff;
}

.form-panel h2 {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.icon-label {
    color: #3498db; /* Form ikon rengi */
    margin-right: 5px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #f9f9f9;
}

input:focus, select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
    background-color: #fff;
}

/* Tarih ve Saat Yan Yana */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group.half-width {
    flex: 1;
    margin-bottom: 0; /* İç grupta ekstra boşluk olmasın */
}

/* Buton Stili */
.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #3498db; /* Ana Eylem Rengi (Mavi) */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    margin-top: 15px;
}

.submit-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.footer-note {
    margin-top: 25px;
    font-size: 0.8em;
    color: #777;
    text-align: center;
}


/* --- RESPONSIVE AYARLAR (Mobil Uyum) --- */
@media (max-width: 900px) {
    .appointment-page-container {
        flex-direction: column; /* Dikey sıralama */
        width: 100%;
        margin: 0;
        min-height: 100vh;
        border-radius: 0;
        box-shadow: none;
    }

    .visual-panel {
        display: none; /* Mobil ekranda görsel paneli gizle */
        /* Eğer görseli tutmak isterseniz padding'i azaltıp min-height verebilirsiniz. */
    }

    .form-panel {
        padding: 30px 20px;
        flex: 1;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group.half-width {
        width: 100%;
    }
}