/* =====================================================
   GEZİ TALEP FORMU CSS
   ===================================================== */

/* ---- HERO ---- */
.talep-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
}
.talep-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.talep-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}
.talep-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.3);
    color: #93c5fd;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 18px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.talep-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 12px;
}
.talep-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- SECTION ---- */
.talep-section {
    padding: 50px 0 80px;
    background: #f8fafc;
}

/* ---- LAYOUT ---- */
.talep-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 30px;
    align-items: start;
}

/* ---- SIDEBAR ---- */
.talep-sidebar {
    position: sticky;
    top: 100px;
}
.talep-track-card,
.talep-info-card,
.talep-contact-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.talep-track-card h3,
.talep-info-card h3,
.talep-contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.talep-track-card p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 15px;
}
.track-input-group {
    display: flex;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.track-input-group:focus-within {
    border-color: var(--primary);
}
.track-input-group input {
    flex: 1;
    border: none;
    padding: 11px 14px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
}
.track-input-group button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 16px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.track-input-group button:hover {
    background: #1d4ed8;
}

/* Steps */
.talep-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.talep-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.step-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.talep-step strong {
    font-size: 0.88rem;
    color: #1e293b;
    display: block;
    margin-bottom: 2px;
}
.talep-step p {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Contact */
.talep-contact-card .contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 10px;
    color: #1e293b;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    transition: all 0.2s;
}
.talep-contact-card .contact-link:hover {
    background: #e2e8f0;
}
.talep-contact-card .contact-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}
.talep-contact-card .contact-link.whatsapp {
    background: #dcfce7;
    color: #15803d;
}
.talep-contact-card .contact-link.whatsapp:hover {
    background: #bbf7d0;
}

/* ---- FORM ---- */
.talep-form-area {
    min-width: 0;
}
.talep-alert {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.88rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.talep-alert.error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.form-section {
    background: white;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.form-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}
.section-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.form-section-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}
.form-section-header p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 2px 0 0;
}

/* Form Fields */
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 4px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 4px; }
.form-field {
    margin-bottom: 14px;
}
.form-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}
.form-field label .req {
    color: #dc2626;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.88rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
    background: white;
    color: #1e293b;
    box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-field textarea {
    resize: vertical;
    min-height: 80px;
}
.field-hint {
    display: block;
    font-size: 0.72rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* Radio Cards */
.radio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.radio-card {
    cursor: pointer;
}
.radio-card input {
    display: none;
}
.radio-card span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #64748b;
    transition: all 0.2s;
}
.radio-card span i {
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}
.radio-card input:checked + span {
    border-color: var(--primary);
    background: #dbeafe;
    color: var(--primary);
}

/* Checkbox */
.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #374151;
}
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* Submit */
.form-submit {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.form-submit-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
}
.form-submit-info i {
    color: #059669;
    font-size: 1.2rem;
    margin-top: 2px;
}
.form-submit-info p {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}
.submit-btn {
    padding: 14px 36px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    white-space: nowrap;
    transition: all 0.3s !important;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* ---- SUCCESS CARD ---- */
.talep-success-card {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #d1fae5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}
@keyframes scaleIn {
    0% { transform: scale(0); }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.talep-success-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px;
}
.talep-success-card > p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 25px;
}
.takip-no-box {
    background: #f0f9ff;
    border: 2px dashed #93c5fd;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.takip-label {
    font-size: 0.78rem;
    color: #64748b;
}
.takip-kod {
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}
.takip-info {
    font-size: 0.78rem;
    color: #64748b;
    margin: 12px 0 25px;
}
.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ---- TAKİP SONUCU ---- */
.talep-takip-result {
    max-width: 800px;
    margin: 0 auto;
}
.takip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 12px;
}
.takip-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.talep-durum-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
}
.takip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}
.takip-info-card {
    background: white;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.takip-info-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}
.takip-field {
    padding: 6px 0;
    font-size: 0.85rem;
    color: #374151;
}
.takip-field span {
    color: #64748b;
    font-size: 0.78rem;
}
.takip-field code {
    background: #f0f9ff;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--primary);
}

/* Teklif Card */
.teklif-card {
    background: white;
    border-radius: 16px;
    border: 2px solid #c4b5fd;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
    overflow: hidden;
}
.teklif-header {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.teklif-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.teklif-fiyat {
    text-align: right;
}
.teklif-fiyat span {
    font-size: 0.72rem;
    opacity: 0.8;
    display: block;
}
.teklif-fiyat strong {
    font-size: 1.4rem;
    font-weight: 700;
}
.teklif-body {
    padding: 25px;
    font-size: 0.88rem;
    line-height: 1.8;
    color: #374151;
}
.teklif-footer {
    padding: 15px 25px;
    background: #faf5ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #7c3aed;
    flex-wrap: wrap;
    gap: 8px;
}
.teklif-actions {
    padding: 20px 25px;
    display: flex;
    gap: 12px;
    border-top: 1px solid #e2e8f0;
}
.teklif-actions .btn-success {
    background: #25D366;
    color: white;
}
.teklif-actions .btn-success:hover {
    background: #1da851;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .talep-layout {
        grid-template-columns: 1fr;
    }
    .talep-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .talep-sidebar > :first-child {
        grid-column: 1 / -1;
    }
}
@media (max-width: 768px) {
    .talep-hero { padding: 60px 0 40px; }
    .talep-hero h1 { font-size: 2rem; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .form-grid-3 { grid-template-columns: 1fr; }
    .form-section { padding: 20px; }
    .form-submit { flex-direction: column; text-align: center; }
    .submit-btn { width: 100%; }
    .takip-grid { grid-template-columns: 1fr; }
    .talep-sidebar { grid-template-columns: 1fr; }
    .teklif-header { flex-direction: column; text-align: center; gap: 10px; }
    .teklif-actions { flex-direction: column; }
    .radio-cards { grid-template-columns: 1fr; }
    .success-actions { flex-direction: column; }
}
