/* Helpun Pro Sayfası Stilleri */
.pro-hero-section {
    background: linear-gradient(135deg, #e8faf4 0%, #ffffff 100%);
    padding: 80px 0;
    min-height: 600px;
}

.pro-container {
    width: 79.524%;
    margin: 0 auto;
    max-width: 1400px;
}

.pro-hero-content {
    display: flex;
    gap: 60px;
    
    align-items: flex-start;
}

.pro-hero-left {
    flex: 1;
}

.pro-hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
    font-family: 'Macan', sans-serif;
    color: #222325;

}

.pro-hero-left .highlight {
    color: #2f6c61;
}

.pro-hero-left p {
    font-size: 18px;
    line-height: 1.6;
    color: #62646a;
    margin-bottom: 32px;
    font-family: 'Macan', sans-serif;
}

.pro-features-list {
    list-style: none;
    padding: 0;
}

.pro-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #404145;
    font-family: 'Macan', sans-serif;
}

.pro-features-list li i {
    color: #2f6c61;
    font-size: 20px;
}

.pro-hero-right {
    flex: 1;
}

.pro-form-container {
    background: #fff;
    padding: 0px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pro-form-container h2 {
    font-size: 24px;
    color: #222325;
    margin-bottom: 32px;
    font-weight: 600;
    font-family: 'Macan', sans-serif;
}

.pro-form .form-group {
    margin-bottom: 20px;
}

.pro-form .form-row {
    display: flex;
    gap: 20px;
}

.pro-form .form-row .form-group {
    flex: 1;
}

.pro-form label {
    display: block;
    margin-bottom: 8px;
    color: #404145;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Macan', sans-serif;
}

.pro-form input[type="text"],
.pro-form input[type="tel"],
.pro-form input[type="email"],
.pro-form select,
.pro-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #c5c6c9;
    border-radius: 4px;
    font-size: 15px;
    color: #404145;
    transition: border-color 0.2s;
    font-family: 'Macan', sans-serif;
}

.pro-form input:focus,
.pro-form select:focus,
.pro-form textarea:focus {
    border-color: #2f6c61;
    outline: none;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #404145;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.pro-submit-btn {
    width: 95%;
    padding: 14px;
    background: #2f6c61;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Macan', sans-serif;
    margin: auto;
    display: block;
}

.pro-submit-btn:hover {
    background: #264f47;
}

/* Özellikler Bölümü */
.pro-features-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: left;
    font-size: 32px;
    color: #222325;
    margin-bottom: 48px;
    font-weight: 800;
    font-family: 'Macan', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid #e4e5e7;
    border-radius: 8px;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #e8faf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 24px;
    color: #2f6c61;
}

.feature-card h3 {
    font-size: 18px;
    color: #222325;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Macan', sans-serif;
}

.feature-card p {
    font-size: 14px;
    color: #62646a;
    line-height: 1.6;
    font-family: 'Macan', sans-serif;
}

/* Süreç Bölümü */
.pro-process-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 40px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e4e5e7;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #2f6c61;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    margin: 0 auto 24px;
    font-family: 'Macan', sans-serif;
}

.process-step h3 {
    font-size: 18px;
    color: #222325;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Macan', sans-serif;
}

.process-step p {
    font-size: 14px;
    color: #62646a;
    line-height: 1.6;
    font-family: 'Macan', sans-serif;
}

/* KVKK Checkbox Stili */
.kvkk {
    font-size: 12px;
    line-height: 1.4;
    color: #74767e;
    padding: 20px;
    margin-bottom: 0px !important;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .pro-hero-content {
        flex-direction: column;
    }
    
    .pro-hero-right,
    .pro-hero-left {
        width: 100%;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .pro-hero-section {
        padding: 40px 0;
    }
    
    .pro-hero-left h1 {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .pro-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Form Validation Stilleri */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4d4f;
}

.form-group.error .error-message {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
}

/* Loading Durumu */
.pro-submit-btn.loading {
    position: relative;
    color: transparent;
}

.pro-submit-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-loading 0.8s linear infinite;
}

@keyframes button-loading {
    to {
        transform: rotate(360deg);
    }
}

/* Başarılı Gönderim Animasyonu */
.success-animation {
    text-align: center;
    padding: 40px;
}

.success-animation i {
    font-size: 64px;
    color: #52c41a;
    margin-bottom: 24px;
}

.success-animation h3 {
    font-size: 24px;
    color: #222325;
    margin-bottom: 16px;
}

.success-animation p {
    color: #62646a;
    font-size: 16px;
    line-height: 1.6;
}

/* Referanslar Bölümü */
.pro-references-section {
    padding: 80px 0;
    background: #fff;
}

.references-slider {
    position: relative;
    padding: 40px 0;
}

.references-wrapper {
    display: flex;
    overflow: hidden;
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    flex: 0 0 200px;
    height: 120px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-5px);
}

.reference-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: #fff;
}

.reference-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(47, 108, 97, 0.9);
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.reference-item:hover .reference-overlay {
    transform: translateY(0);
}

.reference-name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.reference-info {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e4e5e7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f6c61;
    transition: all 0.2s;
}

.slider-nav:hover {
    background: #2f6c61;
    color: #fff;
    border-color: #2f6c61;
}

.slider-nav.prev {
    left: -20px;
}

.slider-nav.next {
    right: -20px;
}

/* Paketler Bölümü */
.pro-packages-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.section-desc {
    text-align: left;
    color: #62646a;
    font-size: 18px;
    margin-bottom: 0px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.package-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2f6c61;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e4e5e7;
}

.package-header h3 {
    font-size: 20px;
    color: #222325;
    margin-bottom: 16px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.package-price .currency {
    font-size: 20px;
    color: #222325;
}

.package-price .amount {
    font-size: 36px;
    font-weight: 600;
    color: #222325;
}

.package-price .period {
    color: #74767e;
    font-size: 14px;
}

.package-price .contact {
    font-size: 18px;
    color: #2f6c61;
    font-weight: 600;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #404145;
    font-size: 15px;
}

.package-features li i {
    color: #2f6c61;
    font-size: 16px;
}

.package-button {
    display: block;
    text-align: center;
    padding: 12px;
    background: #2f6c61;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.package-button:hover {
    background: #264f47;
}

/* SSS Bölümü */
.pro-faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e4e5e7;
}

.faq-question {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 16px;
    color: #222325;
    margin: 0;
}

.faq-question i {
    color: #74767e;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 24px;
    display: none;
}

.faq-answer p {
    color: #62646a;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .reference-item {
        flex: 0 0 150px;
    }
    
    .slider-nav {
        display: none;
    }
}


/* İstatistik Bölümü Stilleri */
.pro-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2f6c61 0%, #1a3c36 100%);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Macan', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stat-value .plus,
.stat-value .percent {
    font-size: 24px;
    opacity: 0.8;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

/* Başarı Hikayeleri Stilleri */
.pro-cases-section {
    padding: 80px 0;
    background: #fff;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: #fff;
}

.case-card:hover {
    transform: translateY(-10px);
}

.case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: #2f6c61;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.case-content {
    padding: 24px;
}

.case-content h3 {
    font-size: 20px;
    color: #222325;
    margin-bottom: 12px;
    font-weight: 600;
}

.case-summary {
    color: #62646a;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #e4e5e7;
    border-bottom: 1px solid #e4e5e7;
    margin-bottom: 20px;
}

.case-stats .stat {
    text-align: center;
}

.case-stats .value {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #2f6c61;
    margin-bottom: 4px;
}

.case-stats .label {
    font-size: 12px;
    color: #74767e;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2f6c61;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.case-link:hover {
    gap: 12px;
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-value {
        font-size: 36px;
    }
}

/* Form Geliştirmeleri */


.tab-item {
    flex: 1;
    padding: 15px;
    text-align: center;
    background: #f5f5f5;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #62646a;
}

.tab-item.active {
    background: #fff;
    color: #2f6c61;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tab-item i {
    margin-right: 8px;
}

/* Lokasyon Chips */
.location-chips {
    position: relative;
}

.selected-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.location-chip {
    background: #e8faf4;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #2f6c61;
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-chip i {
    cursor: pointer;
    font-size: 12px;
}

/* Bütçe Slider */
.budget-slider {
    position: relative;
    padding: 20px 0;
}

.budget-slider input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: #e4e5e7;
    border-radius: 3px;
    outline: none;
}

.budget-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #2f6c61;
    border-radius: 50%;
    cursor: pointer;
}

.budget-value {
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
    color: #2f6c61;
}

/* Neden Biz Bölümü */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-us-item {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-10px);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background: #e8faf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-us-icon i {
    font-size: 24px;
    color: #2f6c61;
}

.why-us-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222325;
}

.why-us-item p {
    color: #62646a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.why-us-list {
    list-style: none;
    padding: 0;
}

.why-us-list li {
    padding: 8px 0;
    color: #404145;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-us-list li:before {
    content: "✓";
    color: #2f6c61;
    font-weight: bold;
}


/* Form Tab Stilleri */
.form-tabs {
    display: flex;
    gap: 2px;
    background: #f5f5f5;
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: #f8f8f8;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.tab-btn span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #404145;
    margin-bottom: 4px;
}

.tab-btn small {
    display: block;
    font-size: 13px;
    color: #74767e;
}

.tab-btn i {
    float: right;
    font-size: 24px;
    color: #74767e;
    margin-top: 8px;
}

.tab-btn:hover {
    background: #fff;
}

.tab-btn.active {
    background: #fff;
    border-bottom-color: #2f6c61;
}

.tab-btn.active span {
    color: #2f6c61;
}

.tab-btn.active i {
    color: #2f6c61;
}

/* Tab İçerik Stilleri */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
    padding:0px !important;
    padding-bottom: 25px !important;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Form başlık stili */
.form-content h2 {
    font-size: 22px;
    color: #222325;
    margin-bottom: 20px;
    font-weight: 600;
    margin-left:25px;
}

/* Form grup arası boşluk */
.form-content .form-group:not(:last-child) {
    margin-bottom: 24px;
}

/* Tab responsive düzenlemeler */
@media (max-width: 768px) {
    .form-tabs {
        flex-direction: column;
        margin: -20px -20px 20px;
    }
    
    .tab-btn {
        padding: 15px;
    }
    
    .tab-btn i {
        display: none;
    }
}

/* Form Section Stilleri */
.form-section:first-child{padding-top:24px;}
.form-section {
    margin-bottom: 0px;
    padding: 0px 24px 10px 24px;
    background: #f9f9f9;
    border-radius: 0px;
}

.form-section .section-title {
    font-size: 18px;
    color: #2f6c61;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e5e7;
}

/* Dosya Yükleme Stilleri */
.file-upload-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px dashed #e4e5e7;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-label:hover {
    border-color: #2f6c61;
    background: #f0f9f7;
}

.file-label i {
    font-size: 24px;
    color: #2f6c61;
    margin-bottom: 8px;
}

.file-label input[type="file"] {
    display: none;
}

/* Radio Grup Stilleri */
.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
}

/* Location Chips Stilleri */
.location-chips input {
    width: 100%;
    padding: 12px;
    border: 1px solid #c5c6c9;
    border-radius: 4px;
    margin-bottom: 10px;
}

.selected-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.location-chip {
    background: #e8faf4;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #2f6c61;
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-chip i {
    cursor: pointer;
    font-size: 12px;
    color: #2f6c61;
}

/* Budget Slider Özelleştirmeleri */
.budget-slider {
    padding: 10px 0 20px;
}

.budget-slider input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: #e4e5e7;
    border-radius: 3px;
    outline: none;
}

.budget-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #2f6c61;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.budget-value {
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
    color: #2f6c61;
}

/* Form Hata Durumları */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4d4f;
}

.error-message {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
}

/* Loading Durumu */
.pro-submit-btn.loading {
    position: relative;
    color: transparent;
}

.pro-submit-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-loading 0.8s linear infinite;
}

@keyframes button-loading {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .form-section {
        padding: 16px;
        margin-bottom: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .file-upload-group {
        grid-template-columns: 1fr;
    }

    .radio-group {
        gap: 12px;
    }

    .radio-item {
        width: 100%;
    }
}

.alt-menu, .helpunprobuton{display:none;}
body{padding-top:73px;}