/* Kurumsal Sayfalar CSS */

/* Genel Kurumsal Sayfa Stilleri */
.corporate-page {
    padding: 2rem 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.corporate-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Sayfa Başlığı */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #165d8a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb-container {
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: #165d8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #0d3d5f;
}

.breadcrumb-item.active {
    color: #666;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #ccc;
}

/* Genel Section Stilleri */
section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 2rem;
    color: #165d8a;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

/* Şirket Tanıtımı */
.company-intro, .corporate-intro {
    margin-bottom: 3rem;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Tarihçe Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #165d8a, #4a90e2);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: #165d8a;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #165d8a;
}

.timeline-item .year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #165d8a;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: #666;
    line-height: 1.6;
}

/* Değerler Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    color: #165d8a;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* İstatistikler */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #165d8a;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

/* Misyon & Vizyon */
.mission-section, .vision-section {
    margin-bottom: 3rem;
}

.mission-content, .vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-text h2, .vision-text h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #165d8a;
}

.mission-text p, .vision-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
    text-align: justify;
}

.mission-image img, .vision-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Stratejik Hedefler */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.goal-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #165d8a;
}

.goal-icon {
    font-size: 2.5rem;
    color: #165d8a;
    margin-bottom: 1rem;
}

.goal-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.goal-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.goal-details {
    list-style: none;
    padding: 0;
}

.goal-details li {
    color: #555;
    padding: 0.3rem 0;
    border-bottom: 1px solid #e1e5e9;
}

.goal-details li:last-child {
    border-bottom: none;
}

/* Temel Değerler Listesi */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-number {
    font-size: 2rem;
    font-weight: 700;
    color: #165d8a;
    min-width: 3rem;
}

.value-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.value-content p {
    color: #666;
    line-height: 1.6;
}

/* Kalite Politikası */
.quality-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quality-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quality-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #e8f4fd;
    border-radius: 8px;
    color: #165d8a;
}

.quality-feature i {
    color: #4a90e2;
}

/* Kalite Sertifikaları */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 sütun yan yana */
    gap: 1.5rem;
    margin: 2rem 0;
}

.certificate-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e1e5e9;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.certificate-card:hover {
    border-color: #165d8a;
    transform: translateY(-3px);
}

.certificate-icon {
    font-size: 3rem;
    color: #165d8a;
    margin-bottom: 1rem;
}

.certificate-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.certificate-card p {
    color: #666;
    margin-bottom: 1rem;
}

.certificate-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.issue-date, .valid-until {
    color: #888;
}

.certificate-description p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Ödüller ve Başarılar */
.awards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.award-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

.award-year {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    min-width: 4rem;
}

.award-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.award-organization {
    color: #165d8a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-description {
    color: #666;
    line-height: 1.6;
}

/* Üyelikler */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.membership-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e1e5e9;
}

.membership-logo {
    font-size: 3rem;
    color: #165d8a;
    margin-bottom: 1rem;
}

.membership-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.membership-card p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Test Raporları */
.reports-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.report-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

.report-icon {
    font-size: 2.5rem;
    color: #28a745;
    min-width: 3rem;
}

.report-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.report-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.report-details {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.report-details span {
    color: #888;
}

/* Belgeleri İndir */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.download-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e1e5e9;
}

.download-icon {
    font-size: 3rem;
    color: #dc3545;
    min-width: 3rem;
}

.download-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.download-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Şirket Kültürü */
.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.culture-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.culture-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.culture-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Çalışan Hakları */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e1e5e9;
}

.benefit-icon {
    font-size: 2.5rem;
    color: #165d8a;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e1e5e9;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.benefit-list li:last-child {
    border-bottom: none;
}

/* Açık Pozisyonlar */
.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.position-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e1e5e9;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.position-card:hover {
    border-color: #165d8a;
    transform: translateY(-3px);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e1e5e9;
}

.position-header h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 0;
}

.position-type {
    background: #165d8a;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.position-details {
    margin-bottom: 1rem;
}

.position-details p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.position-description {
    margin-bottom: 1rem;
}

.position-description p {
    color: #444;
    line-height: 1.6;
}

.position-requirements h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.position-requirements ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.position-requirements li {
    color: #666;
    padding: 0.3rem 0;
    border-bottom: 1px solid #e1e5e9;
    position: relative;
    padding-left: 1.5rem;
}

.position-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #165d8a;
    font-weight: bold;
}

/* Kariyer Gelişimi */
.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.career-text h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.career-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.career-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.career-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: #e8f4fd;
    border-radius: 8px;
    color: #165d8a;
    font-size: 0.9rem;
}

.career-feature i {
    color: #4a90e2;
}

.career-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Başvuru Süreci */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #165d8a;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #165d8a;
    min-width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    border: 3px solid #165d8a;
}

.step-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Kurumsal Sayfalar Grid */
.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.page-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e1e5e9;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.page-card:hover {
    border-color: #165d8a;
    transform: translateY(-3px);
}

.page-icon {
    font-size: 3rem;
    color: #165d8a;
    margin-bottom: 1rem;
}

.page-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.page-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.page-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature {
    background: #e8f4fd;
    color: #165d8a;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Kalite Sertifikaları Özet */
.certificates-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.certificate-overview {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e1e5e9;
}

.certificate-overview .certificate-icon {
    font-size: 2.5rem;
    color: #165d8a;
    margin-bottom: 1rem;
}

.certificate-overview h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.certificate-overview p {
    color: #666;
    font-size: 0.9rem;
}

/* İletişim CTA */
.contact-cta {
    text-align: center;
    background: linear-gradient(135deg, #165d8a, #4a90e2);
    color: white;
    border-radius: 12px;
}

.contact-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .btn-primary {
    background: white;
    color: #165d8a;
    border: 2px solid white;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-cta .btn-primary:hover {
    background: transparent;
    color: white;
}

/* Buton Stilleri */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #165d8a;
    color: white;
    border-color: #165d8a;
}

.btn-primary:hover {
    background: #0d3d5f;
    border-color: #0d3d5f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background: #545b62;
    border-color: #545b62;
    transform: translateY(-2px);
}

/* İş Başvuru Formu */
.job-application-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e5e9;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: #165d8a;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: #4a90e2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #165d8a;
    box-shadow: 0 0 0 3px rgba(22, 93, 138, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    color: #666;
    font-size: 0.85rem;
}

.form-group input[type="file"] {
    padding: 0.6rem;
    background: white;
    border: 2px dashed #165d8a;
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: #4a90e2;
    background: #f8f9fa;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e5e9;
}

.form-submit .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #165d8a, #4a90e2);
    border: none;
    color: white;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 93, 138, 0.3);
}

.form-submit .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 93, 138, 0.4);
}

.form-submit .btn i {
    margin-right: 0.5rem;
}

/* Form Validation Styles - HTML5 validation renklerini kaldır */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #e1e5e9 !important;
    box-shadow: none !important;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #e1e5e9 !important;
    box-shadow: none !important;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .corporate-page {
        padding: 1rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .intro-content, .culture-content, .career-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-image img, .mission-image img, .vision-image img, .culture-image img, .career-image img {
        height: auto;
    }
    
    .values-grid, .goals-grid, .membership-grid, .benefits-grid, .positions-grid, .pages-grid {
        grid-template-columns: 1fr;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet'te 2 sütun */
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .award-item, .report-item, .process-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .award-year, .step-number {
        align-self: center;
    }
    
    .career-features {
        grid-template-columns: 1fr;
    }
    
    .report-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .corporate-content {
        padding: 0 0.5rem;
    }
    
    section {
        padding: 1rem;
    }
    
    .page-header {
        padding: 1rem 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        padding-left: 1rem;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 1rem;
    }
    
    /* Mobil Form Düzenlemeleri */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .job-application-form {
        padding: 1rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
    
    .form-submit .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
}


