/* Premium Transfer Form - 724transfer.com Style */

#vip-transfer-form {
    margin: 0;
    position: relative;
}

.transfer-form-card {
    background: white;
    border-radius: 0;
    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(15, 23, 42, 0.03);
    padding: 45px 40px;
    position: relative;
    overflow: hidden;
    border: none;
}


.transfer-form-header {
    text-align: left;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.transfer-form-header .tf-header-eyebrow {
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
}

.transfer-form-header h3 {
    font-size: 30px;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
}

.transfer-form-header p {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

.form-row-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.form-group-modern {
    position: relative;
}

.form-group-modern label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-modern label i {
    color: #667eea;
    font-size: 18px;
}

.form-group-modern .input-wrapper {
    position: relative;
}

.form-group-modern input,
.form-group-modern select {
    width: 100%;
    padding: 18px 22px 18px 55px;
    border: 1.5px solid rgba(148, 163, 184, 0.6);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-group-modern input:focus,
.form-group-modern select:focus {
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.form-group-modern .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 20px;
    pointer-events: none;
    transition: color 0.3s;
}

.form-group-modern input:focus + .input-icon,
.form-group-modern select:focus + .input-icon {
    color: #667eea;
}

.form-group-modern input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-group-modern input[readonly] {
    background: #f1f5f9;
    cursor: not-allowed;
}

.form-group-modern input[readonly]:focus {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.form-group-modern .input-wrapper {
    position: relative;
}

.form-group-modern .form-text {
    position: absolute;
    bottom: -22px;
    left: 50px;
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
}

.price-display {
    background: rgba(99, 102, 241, 0.08);
    border-radius: 18px;
    padding: 20px 24px;
    text-align: left;
    margin: 25px 0;
    color: #0f172a;
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.price-display.show {
    display: block;
}

.price-display .price-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #94a3b8;
}

.price-display .price-amount {
    font-size: 36px;
    font-weight: 800;
    margin: 5px 0;
}

.price-display .price-details {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 6px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-calculate {
    flex: 1;
    min-width: 200px;
    padding: 18px 35px;
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-calculate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-calculate:hover::before {
    width: 300px;
    height: 300px;
}

.btn-calculate:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.btn-calculate:active {
    transform: translateY(-1px);
}

.btn-continue {
    flex: 1;
    min-width: 200px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-continue.show {
    display: flex;
    animation: fadeInUp 0.5s ease-out;
}

.btn-continue::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-continue:hover::before {
    width: 300px;
    height: 300px;
}

.btn-continue:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.35);
    color: white;
    text-decoration: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .transfer-form-card {
        padding: 25px 20px;
    }
    
    .transfer-form-header h3 {
        font-size: 24px;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-calculate,
    .btn-continue {
        width: 100%;
    }
    
    .price-display .price-amount {
        font-size: 32px;
    }
}

/* Hidden km başı ücret input */
#kmBasiUcret {
    display: none;
}

