/* ==================== Kurye Çağır Sayfası ==================== */

/* Hero form kartı - Anasayfada kullanım */
.hero-order-form,
.hero-section .order-form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.12), 0 2px 8px rgba(0,0,0,0.06);
    padding: 1.75rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
}
.hero-order-form::before,
.hero-section .order-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF 0%, #00C48C 100%);
}
.hero-order-form .form-title,
.hero-section .order-form-card .form-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0D1B2A;
}
.hero-order-form .form-title i,
.hero-section .order-form-card .form-title i { color: #0066FF; }
.hero-order-form .form-subtitle,
.hero-section .order-form-card .form-subtitle {
    color: #778DA9;
    font-size: 0.875rem;
}
.hero-order-form .input-group-text,
.hero-section .order-form-card .input-group-text {
    background: #E6F0FF;
    border: 1px solid #E2E8F0;
    color: #0066FF;
}
.hero-order-form .form-control:focus,
.hero-section .order-form-card .form-control:focus {
    border-color: #0066FF;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}
.hero-order-form .btn-next,
.hero-section .order-form-card .btn-next {
    padding: 0.65rem 1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    border: none;
}
.hero-order-form .btn-success,
.hero-section .order-form-card .btn-success {
    background: linear-gradient(135deg, #00C48C 0%, #00A878 100%) !important;
    border: none;
    border-radius: 12px;
    font-weight: 600;
}
.hero-order-form .form-check-input:checked,
.hero-section .order-form-card .form-check-input:checked {
    background-color: #0066FF;
}

/* Ana bölüm */
.kurye-form-section {
    background: linear-gradient(160deg, #F0F7FF 0%, #E8F4FD 40%, #F8FAFC 100%);
    min-height: 80vh;
    padding: 3rem 0 4rem;
}

/* Form kartı */
.page-kurye-cagir .order-form-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0, 102, 255, 0.08), 0 1px 3px rgba(0,0,0,0.04);
    padding: 2.5rem 2.5rem 3rem;
    border: 1px solid rgba(0, 102, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.page-kurye-cagir .order-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF 0%, #00C48C 100%);
}

/* Başlık alanı */
.page-kurye-cagir .form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0D1B2A;
    margin-bottom: 0.25rem;
}

.page-kurye-cagir .form-title i {
    color: #0066FF;
}

.page-kurye-cagir .form-subtitle {
    color: #778DA9;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

/* Adım göstergesi */
.kurye-step-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.kurye-step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E2E8F0;
    transition: all 0.3s ease;
}

.kurye-step-dot.active {
    width: 28px;
    border-radius: 5px;
    background: #0066FF;
}

.kurye-step-dot.done {
    background: #00C48C;
}

/* Form elemanları */
.page-kurye-cagir .form-label {
    color: #415A77;
    font-size: 0.9rem;
}

.page-kurye-cagir .input-group-text {
    background: #E6F0FF;
    border: 1px solid #E2E8F0;
    border-right: none;
    color: #0066FF;
    border-radius: 12px 0 0 12px;
}

.page-kurye-cagir .input-group .form-control {
    border-radius: 0 12px 12px 0;
    border-left: none;
}

.page-kurye-cagir .input-group .form-control:focus {
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
    z-index: 1;
}

.page-kurye-cagir .form-control,
.page-kurye-cagir .form-select {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    border: 1px solid #E2E8F0;
}

.page-kurye-cagir .form-control:focus,
.page-kurye-cagir .form-select:focus {
    border-color: #0066FF;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}

/* Devam Et butonu */
.page-kurye-cagir .btn-next {
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    border: none;
    transition: all 0.25s ease;
}

.page-kurye-cagir .btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
}

/* Fiyat tahmini kutusu */
.page-kurye-cagir .price-estimate {
    background: linear-gradient(135deg, #F8FAFC 0%, #E6F0FF 100%) !important;
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 16px;
}

.page-kurye-cagir .price-estimate h6 {
    font-weight: 700;
    color: #0D1B2A;
}

/* Geri / Kurye Çağır butonları */
.page-kurye-cagir .btn-prev {
    border-radius: 12px;
}

.page-kurye-cagir .btn-success {
    background: linear-gradient(135deg, #00C48C 0%, #00A878 100%) !important;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.page-kurye-cagir .btn-success:hover {
    transform: translateY(-2px);
}

/* Input group düzeltme */
.page-kurye-cagir .input-group:focus-within .input-group-text {
    border-color: #0066FF;
    background: #E6F0FF;
}

/* Checkbox */
.page-kurye-cagir .form-check-input:checked {
    background-color: #0066FF;
}
