/* ==============================================
   ÜCRETSİZ KEŞİF SAYFASI
   ============================================== */

/* Hero kırmızı varyant */
.page-hero-red {
    background: linear-gradient(140deg, var(--red) 0%, #c20010 50%, #900009 100%);
}

/* ==============================================
   ADIMLAR
   ============================================== */
.steps-section { background: var(--white); }

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.step-num {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--blue-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 18px;
    transition: all var(--ease);
}
.step-icon i { color: var(--blue); font-size: 28px; }
.step-icon-red { background: #fdecea; }
.step-icon-red i { color: var(--red); }

.step-item:hover .step-icon { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,157,226,.2); }
.step-item:hover .step-icon-red { box-shadow: 0 8px 24px rgba(226,0,15,.2); }

.step-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

.step-arrow {
    color: var(--border);
    font-size: 20px;
    padding: 0 4px;
    margin-top: 24px;
    flex-shrink: 0;
}

/* ==============================================
   ANA FORM + AVANTAJLAR
   ============================================== */
.uk-main-section { background: var(--bg); }

.uk-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ---------- FORM ---------- */
.uk-form-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-l);
    border: 1.5px solid var(--border);
}

.uk-form-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--red) 0%, #c20010 100%);
    color: var(--white);
}
.uk-form-head-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.2);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}
.uk-form-head h2 {
    font-size: 19px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
}
.uk-form-head p { font-size: 13px; opacity: .85; color: var(--white); }

.uk-form {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.uk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.uk-field { display: flex; flex-direction: column; gap: 6px; }
.uk-field label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--text-3);
}
.required { color: var(--red); }

.uk-input-wrap { position: relative; }
.uk-input-wrap i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-3);
    font-size: 13px;
    pointer-events: none;
    transition: color var(--ease);
    z-index: 1;
}
.uk-input-wrap-ta i { top: 14px; transform: none; }

.uk-input-wrap input,
.uk-input-wrap select,
.uk-input-wrap textarea {
    width: 100%;
    padding: 0 14px 0 40px;
    height: 48px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 14.5px;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: all var(--ease);
    appearance: none;
}
.uk-input-wrap textarea {
    height: auto;
    padding: 12px 14px 12px 40px;
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
}
.uk-input-wrap input::placeholder,
.uk-input-wrap textarea::placeholder { color: #bbb; font-size: 14px; }

.uk-input-wrap input:focus,
.uk-input-wrap select:focus,
.uk-input-wrap textarea:focus {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(226,0,15,.1);
}
.uk-input-wrap:focus-within i { color: var(--red); }

.uk-input-wrap input.error,
.uk-input-wrap select.error { border-color: var(--red); background: #fff5f5; }

.uk-input-wrap select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.uk-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, var(--red) 0%, #c20010 100%);
    color: var(--white);
    border: none;
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--ease);
    letter-spacing: .2px;
    margin-top: 4px;
}
.uk-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(226,0,15,.35);
}
.uk-submit:disabled { opacity: .7; transform: none; cursor: not-allowed; }

.uk-gizlilik {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--text-3);
    text-align: center;
    justify-content: center;
}
.uk-gizlilik i { color: var(--text-3); font-size: 11px; }

/* Başarı */
.uk-success {
    display: none;
    align-items: center;
    gap: 16px;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: var(--r);
    padding: 18px 20px;
}
.uk-success.show { display: flex; }
.uk-success-icon {
    width: 44px;
    height: 44px;
    background: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.uk-success-icon i { color: #fff; font-size: 18px; }
.uk-success strong { display: block; font-size: 15px; color: #15803d; margin-bottom: 4px; }
.uk-success p { font-size: 13px; color: #166534; margin: 0; }

/* ---------- AVANTAJLAR ---------- */
.uk-info-side h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
}

.uk-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.uk-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px 18px;
    transition: all var(--ease);
}
.uk-benefit:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-m);
    transform: translateX(4px);
}
.uk-benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.uk-benefit-icon i { color: var(--blue); font-size: 16px; }
.uk-benefit strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.uk-benefit p { font-size: 13px; color: var(--text-2); line-height: 1.55; margin: 0; }

/* Hızlı iletişim kutusu */
.uk-quick-contact {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 20px;
}
.uk-qc-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--text-3);
    margin-bottom: 12px;
}
.uk-qc-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: var(--r-sm);
    margin-bottom: 8px;
    transition: all var(--ease);
    color: var(--white);
    font-weight: 600;
}
.uk-qc-btn:last-child { margin-bottom: 0; }
.uk-qc-btn i { font-size: 22px; }
.uk-qc-btn small { display: block; font-size: 11px; opacity: .85; }
.uk-qc-btn strong { display: block; font-size: 15px; }
.uk-qc-phone { background: var(--blue); }
.uk-qc-phone:hover { background: var(--blue-d); color: var(--white); transform: translateY(-2px); }
.uk-qc-wa { background: #25d366; }
.uk-qc-wa:hover { background: #1fb85a; color: var(--white); transform: translateY(-2px); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .uk-grid { grid-template-columns: 1fr; }
    .uk-info-side { order: -1; }
}
@media (max-width: 640px) {
    .step-arrow { display: none; }
    .steps-grid { gap: 8px; }
    .step-item { min-width: 140px; padding: 20px 12px; }
    .uk-form-row { grid-template-columns: 1fr; }
    .uk-form { padding: 20px 16px; }
    .uk-form-head { padding: 18px 20px; }
}
