/* assets/css/randevu.css */

/* Üst Banner Alanı */
.page-banner {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--vurgu-renki);
}

.page-banner .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.page-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 2;
}

.page-banner .banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.page-banner .banner-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-banner .banner-content p {
    font-size: 1.1rem;
    color: #000000;
    letter-spacing: 1px;
}

/* Teklif Kartı Tasarımı */
.teklif-container {
    background: #ffffff;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 45px;
    border-top: 4px solid var(--vurgu-renki);
}

.teklif-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111111;
}

.form-control:focus, .form-select:focus {
    border-color: var(--vurgu-renki);
    box-shadow: 0 0 0 0.25rem rgba(188, 163, 116, 0.15);
}

.captcha-wrapper {
    background-color: #f8f9fa;
    border: 1px dashed #cccccc;
    padding: 8px 15px;
    font-weight: 700;
    color: #333333;
    border-radius: 4px;
    display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .page-banner { height: 280px; }
    .page-banner .banner-content h1 { font-size: 2.2rem; }
    .teklif-container { padding: 30px 20px; }
}