/* Futbol Okulu Kayit Formu - Inter Academy Theme */
.fk-form-wrapper {
    max-width: 900px;
    margin: 40px auto;
    font-family: 'Roboto', -apple-system, sans-serif;
    color: #1a1a2e;
}

.fk-form-header {
    background: linear-gradient(135deg, #001EA0 0%, #0033cc 100%);
    padding: 35px 40px;
    border-radius: 16px 16px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fk-form-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.fk-form-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(97,206,112,0.15);
    border-radius: 50%;
}

.fk-logo-area {
    position: relative;
    z-index: 1;
}

.fk-header-text h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 5px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.fk-header-text p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Form Body */
.fk-form {
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 0 0 20px;
}

/* Sections */
.fk-section {
    padding: 0 35px 25px;
    margin-bottom: 0;
}

.fk-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 35px;
    margin: 0 -35px 20px;
    background: linear-gradient(90deg, #f0f4ff 0%, #ffffff 100%);
    border-left: 4px solid #001EA0;
}

.fk-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #001EA0;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.fk-section-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #001EA0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Field Layout */
.fk-fields {
    padding: 0;
}

.fk-row {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.fk-field {
    flex: 1;
    min-width: 0;
}

.fk-field.fk-full {
    flex: 0 0 100%;
}

.fk-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.fk-req {
    color: #e74c3c;
    font-weight: 700;
}

.fk-field input[type="text"],
.fk-field input[type="email"],
.fk-field input[type="tel"],
.fk-field input[type="date"],
.fk-field input[type="number"],
.fk-field select,
.fk-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e5f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #1a1a2e;
    background: #fafbff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.fk-field input:focus,
.fk-field select:focus,
.fk-field textarea:focus {
    border-color: #001EA0;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,30,160,0.1);
}

.fk-field input::placeholder,
.fk-field textarea::placeholder {
    color: #aab0c0;
}

.fk-field input[readonly] {
    background: #f0f1f5;
    color: #888;
    cursor: not-allowed;
}

.fk-field select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.fk-field textarea {
    resize: vertical;
    min-height: 60px;
}

/* Checkbox */
.fk-checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400 !important;
}

.fk-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #001EA0;
    flex-shrink: 0;
}

.fk-checkbox-label span {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Submit */
.fk-submit-area {
    padding: 25px 35px 35px;
    text-align: center;
}

.fk-submit-btn {
    display: inline-block;
    padding: 16px 60px;
    background: linear-gradient(135deg, #001EA0 0%, #0040dd 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,30,160,0.3);
}

.fk-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,30,160,0.4);
    background: linear-gradient(135deg, #0025b8 0%, #004af0 100%);
}

.fk-submit-btn:active {
    transform: translateY(0);
}

.fk-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.fk-submit-btn.fk-loading {
    pointer-events: none;
    position: relative;
    color: transparent;
}

.fk-submit-btn.fk-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: fk-spin 0.7s linear infinite;
}

@keyframes fk-spin {
    to { transform: rotate(360deg); }
}

/* Messages */
.fk-message {
    margin-bottom: 15px;
    padding: 0;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}

.fk-message.fk-success {
    display: block;
    padding: 15px 20px;
    background: #e8f8ea;
    color: #1a7a2e;
    border: 1px solid #b8e6bf;
}

.fk-message.fk-error {
    display: block;
    padding: 15px 20px;
    background: #fdeaea;
    color: #c0392b;
    border: 1px solid #f5c6cb;
}

/* Section sube special */
.fk-section-header-sube {
    background: linear-gradient(90deg, #e8f5e9 0%, #ffffff 100%) !important;
    border-left-color: #61CE70 !important;
}

.fk-num-sube {
    background: linear-gradient(135deg, #61CE70 0%, #43a047 100%) !important;
    font-size: 16px;
    line-height: 32px;
}

.fk-section-header-sube h3 {
    color: #2d8a3e !important;
}

.fk-section-sube select {
    font-size: 15px !important;
    padding: 12px 14px !important;
    font-weight: 600;
}

.fk-section-sube optgroup {
    font-weight: 700;
    color: #001EA0;
}

.fk-section-sube optgroup option {
    font-weight: 400;
    color: #1a1a2e;
    padding: 4px 0;
}

/* Section onay special */
.fk-section-onay .fk-section-header {
    background: linear-gradient(90deg, #fff8e1 0%, #ffffff 100%);
    border-left-color: #61CE70;
}

.fk-section-onay .fk-section-num {
    background: #61CE70;
}

.fk-section-onay .fk-section-header h3 {
    color: #2d8a3e;
}

/* Validation */
.fk-field.fk-invalid input,
.fk-field.fk-invalid select,
.fk-field.fk-invalid textarea {
    border-color: #e74c3c;
    background: #fff5f5;
}

/* Success state */
.fk-form.fk-submitted {
    display: none;
}

.fk-success-message {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.fk-success-icon {
    width: 80px;
    height: 80px;
    background: #61CE70;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.fk-success-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 40px;
    border: solid #fff;
    border-width: 0 5px 5px 0;
    transform: rotate(45deg);
    margin-top: -8px;
}

.fk-success-message h3 {
    color: #1a7a2e;
    font-size: 24px;
    margin: 0 0 10px;
}

.fk-success-message p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .fk-form-wrapper {
        margin: 20px 10px;
    }

    .fk-form-header {
        padding: 25px 20px;
    }

    .fk-header-text h2 {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .fk-header-text p {
        font-size: 11px;
    }

    .fk-section {
        padding: 0 20px 20px;
    }

    .fk-section-header {
        margin: 0 -20px 15px;
        padding: 15px 20px;
    }

    .fk-row {
        flex-direction: column;
        gap: 12px;
    }

    .fk-submit-area {
        padding: 20px;
    }

    .fk-submit-btn {
        width: 100%;
        padding: 14px 20px;
    }
}
