.gokanke-basvuru-btn {
    background: #6C5CE7;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.gokanke-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1E1E2E;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    color: #fff;
}

/* Header Styles */
.popup-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.close-popup {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.close-popup:hover {
    opacity: 1;
}

/* Progress Bar Styles */
.progress-container {
    padding: 20px 30px;
    margin-bottom: 20px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step.active .step-dot {
    background: #6C5CE7;
    width: 14px;
    height: 14px;
    margin-top: -3px;
}

.step-line {
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.step.active .step-line {
    background: #6C5CE7;
}

.step-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 5px;
}

.step.active .step-label {
    color: #fff;
}

/* Form Container Styles */
.form-container {
    padding: 0 30px 30px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 32px;
    margin: 0 0 20px;
    color: #fff;
    font-weight: 500;
}

.step-description {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Age Options Styles */
.age-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.age-option {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-option:hover {
    background: rgba(108, 92, 231, 0.1);
}

.age-option input[type="radio"] {
    display: none;
}

.age-option label {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

.age-option input[type="radio"]:checked + label {
    color: #6C5CE7;
}

/* Navigation Buttons */
.form-navigation {
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.back-btn svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.next-btn {
    background: #6C5CE7;
    color: #fff;
    border: none;
    padding: 0 30px;
    height: 45px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.next-btn:hover {
    background: #5b4cdb;
}

/* Contact Form 7 Stilleri */
.wpcf7-form {
    margin: 0;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 28px;
    margin: 0 0 20px;
    color: #fff;
}

.form-step p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.age-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.age-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-option:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: rgba(108, 92, 231, 0.3);
}

.age-option input[type="radio"] {
    display: none;
}

.age-option input[type="radio"]:checked + span {
    color: #6C5CE7;
}

.age-option span {
    font-size: 20px;
    color: #fff;
}

.wpcf7-submit {
    background: #6C5CE7;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wpcf7-submit:hover {
    background: #5649c9;
}

/* Bütçe input stili */
.budget-input input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    font-size: 16px;
}

.budget-input input:focus {
    outline: none;
    border-color: #6C5CE7;
}

.budget-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Kişisel bilgiler input stili */
.personal-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.personal-info input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    font-size: 16px;
}

.personal-info input:focus {
    outline: none;
    border-color: #6C5CE7;
}

.personal-info input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ... diğer stil tanımlamaları ... */ 