﻿/* =============================================
   KURUMSAL SHARED STYLES (Yönetim, Hakkımızda, İnsan Kaynakları)
   ============================================= */
/* --- YONETIM PAGE STYLES --- */



/* ================================
   CHAIRMAN MESSAGE
   ================================ */

.chairman-message {
    padding: 110px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.chairman-message::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 21, 37, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.chairman-grid {
    display: grid;
    grid-template-columns: minmax(300px, 360px) 1fr;
    gap: 72px;
    align-items: center;
}

.chairman-photo-wrap {
    position: relative;
}

.chairman-photo {
    width: min(100%, 340px);
    aspect-ratio: 3 / 5;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.chairman-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.chairman-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6B1525, #a0283e);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(107, 21, 37, 0.3);
    z-index: 2;
}

.chairman-badge i {
    font-size: 22px;
    color: #fff;
}

.chairman-quote {
    font-size: 20px;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin: 0 0 28px;
    padding: 24px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
}

.chairman-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.chairman-info span {
    font-size: 15px;
    color: #6B1525;
    font-weight: 600;
}

.chairman-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #eee;
}

.ch-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ch-stat strong {
    font-size: 32px;
    font-weight: 800;
    color: #6B1525;
}

.ch-stat span {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

/* ================================
   BOARD CARDS
   ================================ */

.board-section {
    padding: 110px 0;
    background: #f8f7f6;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.board-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.board-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(107, 21, 37, 0.1), 0 8px 24px rgba(0, 0, 0, 0.04);
    border-color: transparent;
}

.board-card-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.board-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.board-card:hover .board-card-img img {
    transform: scale(1.05);
}

.board-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107, 21, 37, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
}

.board-card:hover .board-card-overlay {
    opacity: 1;
}

.board-social {
    display: flex;
    gap: 10px;
}

.board-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.board-social a:hover {
    background: #fff;
    color: #6B1525;
    border-color: #fff;
    transform: translateY(-3px);
}

.board-card-info {
    padding: 28px 28px 32px;
}

.board-card-info h3 {
    font-size: 21px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.board-role {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #6B1525;
    margin-bottom: 12px;
}

.board-card-info p {
    font-size: 15px;
    color: #888;
    line-height: 1.7;
}

/* ================================
   ORG CARDS
   ================================ */

.org-section {
    padding: 110px 0;
    background: #fff;
    position: relative;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.org-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 40px 36px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.org-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6B1525, #c0384e, #ff8a9b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.org-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(107, 21, 37, 0.08);
    border-color: transparent;
    background: #fff;
}

.org-card:hover::before {
    transform: scaleX(1);
}

.org-card-number {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 64px;
    font-weight: 900;
    color: rgba(107, 21, 37, 0.04);
    line-height: 1;
    pointer-events: none;
}

.org-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(107, 21, 37, 0.1), rgba(107, 21, 37, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.org-card:hover .org-card-icon {
    background: linear-gradient(135deg, #6B1525, #a0283e);
    box-shadow: 0 8px 20px rgba(107, 21, 37, 0.25);
}

.org-card-icon i {
    font-size: 20px;
    color: #6B1525;
    transition: color 0.35s ease;
}

.org-card:hover .org-card-icon i {
    color: #fff;
}

.org-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.org-card > p {
    font-size: 15px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 20px;
}

.org-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.org-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.org-list li i {
    font-size: 10px;
    color: #6B1525;
    width: 16px;
}

/* ================================
   VALUES
   ================================ */

.values-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #6B1525 0%, #3d0c15 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.values-text .section-tag {
    color: rgba(255, 255, 255, 0.5);
}

.values-text .section-tag::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
}

.values-text .section-title {
    color: #fff;
}

.values-text .section-desc {
    color: rgba(255, 255, 255, 0.65);
}

.values-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 18px;
    color: #ff8a9b;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

/* ================================
   TIMELINE
   ================================ */

.timeline-section {
    padding: 110px 0;
    background: #f8f7f6;
}

.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #6B1525, rgba(107, 21, 37, 0.1));
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
    padding-left: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #6B1525;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: #6B1525;
    box-shadow: 0 0 0 6px rgba(107, 21, 37, 0.15);
    transform: scale(1.2);
}

.timeline-content {
    background: #fff;
    border-radius: 16px;
    padding: 28px 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 12px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transform: rotate(45deg);
    transition: all 0.35s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(6px);
    box-shadow: 0 12px 36px rgba(107, 21, 37, 0.06);
    border-color: transparent;
}

.timeline-item:hover .timeline-content::before {
    border-color: transparent;
}

.timeline-year {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #6B1525, #a0283e);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.timeline-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: #888;
    line-height: 1.7;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 768px) {



    .chairman-message {
        padding: 64px 0;
    }

    .chairman-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chairman-photo img {
        height: 100%;
    }

    .chairman-badge {
        right: 16px;
        bottom: -16px;
        width: 52px;
        height: 52px;
    }

    .chairman-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .ch-stat strong {
        font-size: 28px;
    }

    .board-section {
        padding: 64px 0;
    }

    .board-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .board-card-img {
        height: 260px;
    }

    .org-section {
        padding: 64px 0;
    }

    .org-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .org-card {
        padding: 28px 24px;
    }

    .values-section {
        padding: 64px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-text {
        text-align: center;
    }

    .values-text .section-desc {
        margin: 0 auto;
    }

    .values-text .section-tag {
        justify-content: center;
    }

    .timeline-section {
        padding: 64px 0;
    }

    .timeline {
        padding-left: 24px;
    }

    .timeline::before {
        left: 8px;
    }

    .timeline-item {
        padding-left: 28px;
        padding-bottom: 32px;
    }

    .timeline-dot {
        left: -24px;
        width: 12px;
        height: 12px;
    }

    .timeline-content {
        padding: 22px 20px;
    }

    .timeline-content::before {
        display: none;
    }
}

/* ================================
   BÃ–LÃœM DANIÅMANLARI
   ================================ */

.advisors-section {
    padding: 110px 0;
    background: #fafafa;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advisor-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.advisor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(107, 21, 37, 0.1);
    border-color: transparent;
}

.advisor-photo {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.advisor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.advisor-card:hover .advisor-photo img {
    transform: scale(1.05);
}

.advisor-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107,21,37,0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.advisor-card:hover .advisor-overlay {
    opacity: 1;
}

.advisor-info {
    padding: 24px 24px 28px;
}

.advisor-dept {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #6B1525;
    background: #fdf2f4;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advisor-info h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.advisor-info p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

/* ================================
   KADRO
   ================================ */

.kadro-section {
    padding: 110px 0;
    background: #fff;
}

.kadro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kadro-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.kadro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(107, 21, 37, 0.08);
    border-color: rgba(107, 21, 37, 0.15);
}

.kadro-photo {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.kadro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kadro-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.kadro-branch {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #6B1525;
    margin-bottom: 6px;
}

.kadro-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

.kadro-school-photo {
    margin-top: 50px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.kadro-school-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.kadro-school-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(107, 21, 37, 0.9), transparent);
    color: #fff;
}

.kadro-school-overlay h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.kadro-school-overlay p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .advisors-section,
    .kadro-section {
        padding: 64px 0;
    }

    .advisors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .advisor-photo {
        height: 200px;
    }

    .kadro-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kadro-school-photo img {
        height: 260px;
    }

    .kadro-school-overlay {
        padding: 24px;
    }

    .kadro-school-overlay h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .advisors-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   HAKKIMIZDA PAGE STYLES
   ============================================= */

/* ================================
   STORY SECTION
   ================================ */

.story-section {
    padding: 110px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.story-section::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,21,37,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.story-paragraph {
    font-size: 15px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 18px;
}

.story-paragraph strong {
    color: #6B1525;
    font-weight: 700;
}

.story-visual {
    position: relative;
}

.story-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}

.story-img-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.story-img-float {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    display: flex;
    gap: 0;
    z-index: 2;
}

.story-img-float img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.story-experience {
    position: absolute;
    bottom: -20px;
    right: -60px;
    background: linear-gradient(135deg, #6B1525, #a0283e);
    color: #fff;
    padding: 18px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 28px rgba(107,21,37,0.3);
}

.story-experience strong {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.story-experience span {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.85;
}

/* ================================
   MISSION & VISION
   ================================ */

.mv-section {
    padding: 110px 0;
    background: #f8f7f6;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.mv-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
}

.mv-mission::before {
    background: linear-gradient(90deg, #6B1525, #c0384e);
}

.mv-vision::before {
    background: linear-gradient(90deg, #ffb347, #ff6b7a);
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(107,21,37,0.08);
    border-color: transparent;
}

.mv-icon-wrap {
    margin-bottom: 24px;
}

.mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.mv-mission .mv-icon {
    background: linear-gradient(135deg, rgba(107,21,37,0.1), rgba(107,21,37,0.04));
}

.mv-vision .mv-icon {
    background: linear-gradient(135deg, rgba(255,179,71,0.15), rgba(255,107,122,0.08));
}

.mv-card:hover .mv-icon {
    transform: scale(1.08);
}

.mv-mission .mv-icon i {
    font-size: 24px;
    color: #6B1525;
}

.mv-vision .mv-icon i {
    font-size: 24px;
    color: #ff8a5c;
}

.mv-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.mv-content p {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 24px;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.mv-list li i {
    font-size: 14px;
    color: #6B1525;
}

/* ================================
   ABOUT STATS
   ================================ */

.about-stats {
    padding: 110px 0;
    background: #fff;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-stat-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.about-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6B1525, #c0384e, #ff8a9b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(107,21,37,0.08);
    background: #fff;
    border-color: transparent;
}

.about-stat-card:hover::after {
    transform: scaleX(1);
}

.about-stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(107,21,37,0.1), rgba(107,21,37,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.about-stat-card:hover .about-stat-icon {
    background: linear-gradient(135deg, #6B1525, #a0283e);
    box-shadow: 0 6px 16px rgba(107,21,37,0.25);
}

.about-stat-icon i {
    font-size: 20px;
    color: #6B1525;
    transition: color 0.35s ease;
}

.about-stat-card:hover .about-stat-icon i {
    color: #fff;
}

.about-stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    margin-bottom: 18px;
}

.about-stat-bar {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(107,21,37,0.06);
    overflow: hidden;
}

.about-stat-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #6B1525, #c0384e);
    width: 0;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ================================
   FEATURES
   ================================ */

.features-section {
    padding: 110px 0;
    background: #f8f7f6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6B1525, #c0384e, #ff8a9b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(107,21,37,0.1);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 56px;
    font-weight: 900;
    color: rgba(107,21,37,0.04);
    line-height: 1;
    pointer-events: none;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(107,21,37,0.1), rgba(107,21,37,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #6B1525, #a0283e);
    box-shadow: 0 8px 20px rgba(107,21,37,0.25);
}

.feature-icon i {
    font-size: 20px;
    color: #6B1525;
    transition: color 0.35s ease;
}

.feature-card:hover .feature-icon i {
    color: #fff;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.75;
}

/* ================================
   METHODOLOGY
   ================================ */

.methodology-section {
    padding: 110px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.methodology-visual {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}

.methodology-visual img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.methodology-visual:hover img {
    transform: scale(1.03);
}

.method-steps {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.method-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.method-step:hover {
    background: rgba(107,21,37,0.03);
}

.method-step-num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(107,21,37,0.1), rgba(107,21,37,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #6B1525;
    transition: all 0.3s ease;
}

.method-step:hover .method-step-num {
    background: linear-gradient(135deg, #6B1525, #a0283e);
    color: #fff;
    box-shadow: 0 6px 16px rgba(107,21,37,0.2);
}

.method-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.method-step p {
    font-size: 14px;
    color: #888;
    line-height: 1.65;
}

/* ================================
   BÄ°NA FOTOÄRAFI
   ================================ */

.building-section {
    padding: 110px 0;
    background: #fff;
}

.building-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.building-main-photo {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    height: 440px;
}

.building-main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.building-main-photo:hover img {
    transform: scale(1.04);
}

.building-side-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.building-side-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.building-side-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.building-side-item:hover img {
    transform: scale(1.06);
}

.building-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.building-photo-label i {
    color: rgba(255,255,255,0.7);
}

.building-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.building-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fdf2f4;
    border: 1px solid rgba(107,21,37,0.08);
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #6B1525;
    transition: all 0.3s ease;
}

.building-feature-item:hover {
    background: #6B1525;
    color: #fff;
    border-color: #6B1525;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(107,21,37,0.2);
}

.building-feature-item:hover i {
    color: rgba(255,255,255,0.8);
}

.building-feature-item i {
    font-size: 16px;
    color: #6B1525;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .building-section {
        padding: 64px 0;
    }

    .building-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .building-main-photo {
        height: 260px;
    }

    .building-side-photos {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .building-side-item {
        height: 150px;
    }

    .building-features {
        gap: 10px;
    }

    .building-feature-item {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ================================
   GALLERY
   ================================ */

.gallery-section {
    padding: 110px 0;
    background: #f8f7f6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    min-height: 200px;
}

.gallery-item-lg img {
    min-height: 420px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107,21,37,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 24px;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay i {
    font-size: 20px;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.gallery-overlay span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

/* ================================
   FAQ
   ================================ */

.faq-section {
    padding: 110px 0;
    background: #fff;
}

.faq-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 72px;
    align-items: flex-start;
}

.faq-intro .section-desc {
    margin-bottom: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(107,21,37,0.15);
    box-shadow: 0 8px 24px rgba(107,21,37,0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s ease;
}

.faq-question span {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}

.faq-question i {
    font-size: 14px;
    color: #6B1525;
    min-width: 20px;
    text-align: center;
    transition: transform 0.35s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #777;
    line-height: 1.8;
}

/* ================================
   LIGHTBOX
   ================================ */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    backdrop-filter: blur(8px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 768px) {

    .story-section {
        padding: 64px 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-img-main img {
        height: 300px;
    }

    .story-img-float {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -40px;
    }

    .story-experience {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 12px;
        display: inline-flex;
    }

    .mv-section {
        padding: 64px 0;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mv-card {
        padding: 32px 24px;
    }

    .about-stats {
        padding: 64px 0;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-stat-card {
        padding: 24px 18px;
    }

    .about-stat-number {
        font-size: 32px;
    }

    .features-section {
        padding: 64px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .methodology-section {
        padding: 64px 0;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .methodology-visual img {
        height: 300px;
    }

    .gallery-section {
        padding: 64px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item-lg {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item-lg img {
        min-height: 220px;
    }

    .faq-section {
        padding: 64px 0;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-intro {
        text-align: center;
    }

    .faq-intro .section-tag {
        justify-content: center;
    }

    .faq-intro .section-desc {
        margin: 0 auto 24px;
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-lg {
        grid-column: span 1;
    }
}


/* =============================================
   İNSAN KAYNAKLARI PAGE STYLES
   ============================================= */

/* =============================================
   Ä°NSAN KAYNAKLARI PAGE STYLES
   ============================================= */

/* IK Intro */
.ik-intro {
    padding: 100px 0;
    background: #fff;
}

.ik-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.ik-intro-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.ik-intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.ik-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: #fdf2f4;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ik-highlight-item:hover {
    background: #6B1525;
    color: #fff;
    transform: translateX(8px);
}

.ik-highlight-item:hover i {
    color: #fff;
}

.ik-highlight-item i {
    font-size: 1.3rem;
    color: #6B1525;
    width: 24px;
    text-align: center;
    transition: color 0.3s ease;
}

.ik-highlight-item span {
    font-weight: 600;
    font-size: 1.02rem;
}

.ik-visual-card {
    background: linear-gradient(135deg, #6B1525, #5A1120);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ik-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.ik-visual-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
}

.ik-visual-card h3 {
    font-size: 1.65rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.ik-visual-card p {
    opacity: 0.85;
    line-height: 1.7;
    font-size: 1.08rem;
}

/* IK Why Section */
.ik-why {
    padding: 100px 0;
    background: #fafafa;
}

.ik-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ik-why-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.ik-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6B1525, #c0384e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ik-why-card:hover::before {
    transform: scaleX(1);
}

.ik-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(107, 21, 37, 0.12);
}

.ik-why-icon {
    width: 70px;
    height: 70px;
    background: #fdf2f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.ik-why-icon i {
    font-size: 1.5rem;
    color: #6B1525;
    transition: color 0.4s ease;
}

.ik-why-card:hover .ik-why-icon {
    background: linear-gradient(135deg, #6B1525, #c0384e);
}

.ik-why-card:hover .ik-why-icon i {
    color: #fff;
}

.ik-why-card h3 {
    font-size: 1.25rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
}

.ik-why-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.02rem;
}

/* Positions */
.ik-positions {
    padding: 100px 0;
    background: #fff;
}

.ik-positions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 50px;
}

.ik-position-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ik-position-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #6B1525, #c0384e);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ik-position-card:hover::before {
    opacity: 1;
}

.ik-position-card:hover {
    box-shadow: 0 12px 40px rgba(107, 21, 37, 0.1);
    transform: translateX(4px);
}

.ik-position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.ik-position-info h3 {
    font-size: 1.35rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 10px;
}

.ik-position-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ik-position-meta span {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ik-position-meta span i {
    color: #6B1525;
    font-size: 0.8rem;
}

.ik-position-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.ik-position-badge.part-time {
    background: #fff3e0;
    color: #e65100;
}

.ik-position-card > p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.ik-position-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ik-position-tags span {
    background: #fdf2f4;
    color: #6B1525;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.ik-position-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6B1525;
    font-weight: 600;
    font-size: 1.02rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ik-position-btn:hover {
    gap: 12px;
    color: #c0384e;
}

/* Process */
.ik-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #6B1525, #5A1120);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ik-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.ik-process .section-tag {
    color: rgba(255,255,255,0.7);
}

.ik-process .section-tag::before {
    background: rgba(255,255,255,0.3);
}

.ik-process .section-title {
    color: #fff;
}

.ik-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.ik-process-step {
    text-align: center;
    position: relative;
}

.ik-step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    margin-bottom: 16px;
    line-height: 1;
}

.ik-step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ik-step-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Form */
.ik-form {
    padding: 100px 0;
    background: #fafafa;
}

.ik-form-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
    background: linear-gradient(145deg, #fefefe, #fdf2f4);
    border-radius: 24px;
    padding: 56px 50px;
    box-shadow: 0 20px 60px rgba(107, 21, 37, 0.06), 0 1px 3px rgba(107, 21, 37, 0.04);
    border: 1px solid rgba(107, 21, 37, 0.08);
    position: relative;
    overflow: hidden;
}

.ik-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6B1525, #c0384e, #6B1525);
}

.ik-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ik-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ik-form-group.full-width {
    margin-bottom: 20px;
}

.ik-form-group label {
    font-weight: 700;
    font-size: 0.88rem;
    color: #1a1a2e;
}

.ik-form-group input,
.ik-form-group select,
.ik-form-group textarea {
    padding: 15px 18px;
    border: 2px solid rgba(107, 21, 37, 0.1);
    border-radius: 14px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    background: #fff;
    color: #1a1a2e;
}

.ik-form-group input:focus,
.ik-form-group select:focus,
.ik-form-group textarea:focus {
    border-color: #6B1525;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(107, 21, 37, 0.08);
}

.ik-form-group select option {
    padding: 14px 16px;
    font-size: 16px;
    line-height: 2.4;
    min-height: 48px;
}

.ik-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.ik-file-upload {
    position: relative;
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ik-file-upload:hover {
    border-color: #6B1525;
    background: #fdf2f4;
}

.ik-file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    border: none;
    padding: 0;
}

.ik-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #888;
}

.ik-file-label i {
    font-size: 2rem;
    color: #6B1525;
}

.ik-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1.05rem;
    margin-top: 10px;
    background: linear-gradient(135deg, #6B1525, #c0384e) !important;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(107, 21, 37, 0.25);
    transition: all 0.3s ease;
}

.ik-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(107, 21, 37, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .ik-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ik-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ik-process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .ik-form-grid {
        grid-template-columns: 1fr;
    }

    .ik-form-wrapper {
        padding: 30px 20px;
    }

    .ik-position-header {
        flex-direction: column;
        gap: 12px;
    }

    .ik-position-meta {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .ik-process-steps {
        grid-template-columns: 1fr;
    }

    .ik-intro,
    .ik-why,
    .ik-positions,
    .ik-process,
    .ik-form {
        padding: 60px 0;
    }
}

/* ================================
   Ä°K TABS SÄ°STEMÄ°
   ================================ */

.ik-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ik-tab-btn {
    padding: 14px 32px;
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
}

.ik-tab-btn:hover {
    border-color: #6B1525;
    color: #6B1525;
}

.ik-tab-btn.active {
    background: linear-gradient(135deg, #6B1525, #c0384e);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(107, 21, 37, 0.25);
}

.ik-tab-content {
    display: none;
}

.ik-tab-content.active {
    display: block;
}

/* ================================
   ROLE SELECTION (Ã–ÄŸretmen/Personel, LGS/YKS)
   ================================ */

.ik-role-select {
    margin-bottom: 28px;
}

.ik-role-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.ik-role-label .required {
    color: #c0384e;
}

.ik-role-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ik-role-option {
    cursor: pointer;
}

.ik-role-option input[type="radio"] {
    display: none;
}

.ik-role-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    background: #fafafa;
}

.ik-role-card i {
    font-size: 32px;
    color: #aaa;
    transition: color 0.3s ease;
}

.ik-role-card strong {
    font-size: 16px;
    color: #1a1a1a;
}

.ik-role-card small {
    font-size: 12px;
    color: #999;
}

.ik-role-option input:checked + .ik-role-card {
    border-color: #6B1525;
    background: #fdf2f4;
    box-shadow: 0 4px 20px rgba(107, 21, 37, 0.1);
}

.ik-role-option input:checked + .ik-role-card i {
    color: #6B1525;
}

.ik-role-card:hover {
    border-color: #ddd;
    transform: translateY(-2px);
}

/* Position/Branch Box */
.ik-position-box {
    margin-bottom: 24px;
    animation: fadeSlide 0.3s ease;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ik-position-box label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.ik-position-box label .required {
    color: #c0384e;
}

.ik-position-box select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 15px;
    color: #1a1a1a;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: inherit;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.ik-position-box select:focus {
    border-color: #6B1525;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(107, 21, 37, 0.08);
}

/* Kendini KanÄ±tla Intro */
.ik-kanitla-intro {
    text-align: center;
    margin-bottom: 36px;
    padding: 32px;
    background: linear-gradient(135deg, #fdf2f4, #fff);
    border-radius: 16px;
    border: 1px solid rgba(107, 21, 37, 0.08);
}

.ik-kanitla-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6B1525, #c0384e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #fff;
}

.ik-kanitla-intro h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.ik-kanitla-intro p {
    font-size: 15px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Class Selection Buttons */
.ik-class-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ik-class-btn {
    cursor: pointer;
}

.ik-class-btn input[type="radio"] {
    display: none;
}

.ik-class-btn span {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    transition: all 0.3s ease;
    background: #fafafa;
}

.ik-class-btn input:checked + span {
    border-color: #6B1525;
    background: #6B1525;
    color: #fff;
    box-shadow: 0 4px 16px rgba(107, 21, 37, 0.2);
}

.ik-class-btn span:hover {
    border-color: #ddd;
    transform: translateY(-2px);
}

/* Success message (shared) */
.form-success-msg {
    display: none;
    text-align: center;
    padding: 24px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
    color: #166534;
}

.form-success-msg i {
    display: block;
    font-size: 36px;
    color: #22c55e;
    margin-bottom: 10px;
}

.optional-label {
    font-weight: 400;
    font-size: 12px;
    color: #aaa;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .ik-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .ik-tab-btn {
        justify-content: center;
    }

    .ik-role-options {
        grid-template-columns: 1fr;
    }

    .ik-class-buttons {
        flex-direction: column;
    }

    .ik-class-btn span {
        width: 100%;
        text-align: center;
    }

    .ik-kanitla-intro {
        padding: 20px;
    }
}

