/* ============================================
   HAKKIMIZDA SAYFASI - YENİ MODERN TASARIM
   ============================================ */

/* Hero Bölümü - Full Width Split Concept */
.about-hero-modern {
    margin-top: 108px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.about-hero-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    width: 100%;
}

/* Sol Taraf - Görsel */
.about-hero-image-side {
    position: relative;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 30%, #e5e7eb 60%, #f3f4f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    overflow: hidden;
}

.about-hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.15) 0%, rgba(180, 200, 220, 0.2) 30%, rgba(200, 220, 200, 0.15) 60%, rgba(220, 200, 180, 0.1) 100%),
        radial-gradient(ellipse 1200px 1000px at 20% 20%, rgba(255, 240, 200, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 1000px 900px at 80% 60%, rgba(200, 220, 255, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 900px 800px at 50% 80%, rgba(200, 255, 220, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 800px 700px at 10% 50%, rgba(255, 220, 200, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 70% 30%, rgba(240, 200, 255, 0.05) 0%, transparent 70%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    filter: blur(1px);
    z-index: 1;
}

.about-hero-image-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
}

.about-hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.about-hero-image-content:hover .about-hero-main-img {
    transform: scale(1.05);
}

.about-hero-image-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(236, 117, 5, 0.5);
    z-index: 3;
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-hero-image-badge i {
    font-size: 1.2rem;
}


/* Sağ Taraf - İçerik */
.about-hero-content-side {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    display: flex;
    align-items: center;
    padding: 80px 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-content-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%),
        radial-gradient(ellipse 1000px 900px at 80% 20%, rgba(255, 240, 200, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 900px 800px at 20% 80%, rgba(200, 220, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 800px 700px at 50% 50%, rgba(200, 255, 220, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 10% 30%, rgba(255, 220, 200, 0.05) 0%, transparent 70%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    filter: blur(0.8px);
    z-index: 0;
    pointer-events: none;
}

.about-hero-content-inner {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.1), rgba(216, 74, 5, 0.1));
    border: 2px solid rgba(236, 117, 5, 0.3);
    border-radius: 50px;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-icon {
    font-size: 1rem;
}

.about-hero-title-new {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 35px;
    letter-spacing: -2px;
}

.title-line-1 {
    display: block;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.title-line-2 {
    display: block;
}

.title-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.title-normal {
    color: var(--heading-color);
}

.about-hero-description-new {
    margin-bottom: 40px;
}

.desc-main {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.desc-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--subheading-color);
}

.about-hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(236, 117, 5, 0.3);
}

.btn-about-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 117, 5, 0.4);
}

.btn-about-primary i {
    transition: transform 0.3s ease;
}

.btn-about-primary:hover i {
    transform: translateX(5px);
}

.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: transparent;
    color: var(--heading-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-secondary:hover {
    background: var(--heading-color);
    color: white;
    border-color: var(--heading-color);
    transform: translateY(-3px);
}

/* Hikayemiz Bölümü - Asimetrik Layout */
.about-story-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.about-story-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%),
        radial-gradient(ellipse 1000px 900px at 80% 20%, rgba(255, 240, 200, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 900px 800px at 20% 80%, rgba(200, 220, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 800px 700px at 50% 50%, rgba(200, 255, 220, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 10% 30%, rgba(255, 220, 200, 0.05) 0%, transparent 70%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    filter: blur(0.8px);
    z-index: 0;
    pointer-events: none;
}

.story-modern-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(236, 117, 5, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-subtitle-modern {
    font-size: 1.15rem;
    color: var(--subheading-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.story-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--subheading-color);
    margin-bottom: 40px;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-left: 30px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
}

.timeline-year {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(236, 117, 5, 0.3);
}

.timeline-content h4 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--subheading-color);
    margin: 0;
}

.story-image-modern {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.story-image-modern:hover {
    transform: translateY(-10px);
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 30px;
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(236, 117, 5, 0.95);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(236, 117, 5, 0.4);
}

.overlay-badge i {
    font-size: 1.1rem;
}

/* Değerlerimiz Bölümü */

.values-header-modern {
    text-align: center;
    margin-bottom: 70px;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card-modern {
    background: var(--bg-white);
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.value-card-modern:hover::before {
    transform: scaleX(1);
}

.value-icon-modern {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    opacity: 0.1;
    transition: transform 0.4s ease;
}

.value-card-modern:hover .icon-bg {
    transform: scale(1.2);
}

.value-icon-modern i {
    position: relative;
    z-index: 1;
    font-size: 2.8rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.value-card-modern:hover .value-icon-modern i {
    transform: scale(1.1) rotate(5deg);
}

.value-card-modern h3 {
    font-size: 1.6rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card-modern p {
    color: var(--subheading-color);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Misyon & Vizyon Bölümü - Modern Card Design */
.about-mission-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.about-mission-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%),
        radial-gradient(ellipse 1000px 900px at 80% 20%, rgba(255, 240, 200, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 900px 800px at 20% 80%, rgba(200, 220, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 800px 700px at 50% 50%, rgba(200, 255, 220, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 10% 30%, rgba(255, 220, 200, 0.05) 0%, transparent 70%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    filter: blur(0.8px);
    z-index: 0;
    pointer-events: none;
}

.mission-vision-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.mission-vision-header .section-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--heading-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .mission-vision-header .section-title-modern {
        font-size: 2rem;
    }
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.mission-card-modern,
.vision-card-modern {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mission-card-modern:hover,
.vision-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mission-card-header,
.vision-card-header {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.05), rgba(216, 74, 5, 0.03));
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.vision-card-header {
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.05), rgba(21, 101, 192, 0.03));
}

.mission-icon-wrapper,
.vision-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mission-icon-modern,
.vision-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(236, 117, 5, 0.3);
    flex-shrink: 0;
}

.vision-icon-modern {
    background: linear-gradient(135deg, #0a2647, #1565c0);
    box-shadow: 0 8px 25px rgba(10, 38, 71, 0.3);
}

.mission-card-title,
.vision-card-title {
    font-size: 2.2rem;
    color: var(--heading-color);
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.mission-card-body,
.vision-card-body {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mission-intro,
.vision-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
}

.mission-details,
.vision-details {
    margin-bottom: 30px;
}

.mission-details p,
.vision-details p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--subheading-color);
    margin-bottom: 20px;
}

.mission-features,
.vision-stats {
    margin-top: auto;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.features-title,
.stats-title {
    font-size: 1.3rem;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--heading-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.mission-list i {
    color: var(--primary-color);
    font-size: 1rem;
}

.vision-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vision-stat-item {
    text-align: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.03), rgba(21, 101, 192, 0.03));
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.vision-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(10, 38, 71, 0.2);
}

.vision-stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0a2647, #1565c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.vision-stat-label {
    font-size: 0.85rem;
    color: var(--subheading-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* İstatistikler Bölümü */
.about-stats-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.03), rgba(21, 101, 192, 0.03));
}

.stats-header-modern {
    text-align: center;
    margin-bottom: 70px;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card-modern {
    background: var(--bg-white);
    padding: 50px 35px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.stat-card-modern:hover::before {
    transform: scaleX(1);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(236, 117, 5, 0.3);
    transition: transform 0.3s ease;
}

.stat-card-modern:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.stat-number-modern {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label-modern {
    font-size: 1.4rem;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-desc-modern {
    font-size: 0.95rem;
    color: var(--subheading-color);
    margin: 0;
}

/* Neden Biz Bölümü */
.about-why-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.about-why-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%),
        radial-gradient(ellipse 1000px 900px at 80% 20%, rgba(255, 240, 200, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 900px 800px at 20% 80%, rgba(200, 220, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 800px 700px at 50% 50%, rgba(200, 255, 220, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 10% 30%, rgba(255, 220, 200, 0.05) 0%, transparent 70%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    filter: blur(0.8px);
    z-index: 0;
    pointer-events: none;
}

.why-header-modern {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.about-story-modern .container,
.about-mission-modern .container,
.about-why-modern .container {
    position: relative;
    z-index: 2;
}

.why-content-text {
    position: relative;
    z-index: 2;
}

.why-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.why-card-modern {
    background: var(--bg-white);
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.why-card-modern:hover::before {
    transform: scaleX(1);
}

.why-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.1), rgba(216, 74, 5, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-card-modern:hover .why-icon-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.why-card-modern h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-card-modern p {
    color: var(--subheading-color);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.why-content-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.why-content-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--subheading-color);
    margin-bottom: 25px;
    text-align: justify;
}

.why-content-text p:last-child {
    margin-bottom: 0;
}

/* CTA Bölümü */


.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .about-hero-split-container {
        grid-template-columns: 1fr;
    }
    
    .about-hero-image-side {
        min-height: 50vh;
        padding: 60px 40px;
    }
    
    .about-hero-content-side {
        padding: 60px 40px;
    }
    
    .about-hero-title-new {
        font-size: 3.5rem;
    }
    
    .story-modern-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-list {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-list {
        grid-template-columns: 1fr;
    }
    
    .vision-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-modern {
        min-height: auto;
    }
    
    .about-hero-split-container {
        grid-template-columns: 1fr;
    }
    
    .about-hero-image-side {
        min-height: 400px;
        padding: 40px 30px;
    }
    
    .about-hero-content-side {
        padding: 50px 30px;
    }
    
    .about-hero-title-new {
        font-size: 2.8rem;
    }
    
    .desc-main {
        font-size: 1.1rem;
    }
    
    .desc-sub {
        font-size: 1rem;
    }
    
    .about-hero-actions {
        flex-direction: column;
    }
    
    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        justify-content: center;
    }
    
    
    .section-title-modern {
        font-size: 2.2rem;
    }
    
    .story-img {
        height: 400px;
    }
    
    .mission-card-header,
    .vision-card-header {
        padding: 30px 30px 25px;
    }
    
    .mission-card-body,
    .vision-card-body {
        padding: 30px;
    }
    
    .mission-card-title,
    .vision-card-title {
        font-size: 1.8rem;
    }
    
    .mission-icon-modern,
    .vision-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .vision-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .values-grid-modern,
    .why-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number-modern {
        font-size: 3rem;
    }
    
    
    
}

@media (max-width: 480px) {
    .about-hero-image-side {
        min-height: 350px;
        padding: 30px 20px;
    }
    
    .about-hero-content-side {
        padding: 40px 20px;
    }
    
    .about-hero-title-new {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .about-hero-badge-new {
        padding: 10px 20px;
        font-size: 0.75rem;
        margin-bottom: 30px;
    }
    
    .desc-main {
        font-size: 1rem;
    }
    
    .desc-sub {
        font-size: 0.95rem;
    }
    
    .btn-about-primary,
    .btn-about-secondary {
        padding: 16px 28px;
        font-size: 0.95rem;
    }
    
    .about-hero-image-badge {
        top: -15px;
        right: -15px;
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    
    .story-img {
        height: 300px;
    }
    
    .mission-card-header,
    .vision-card-header {
        padding: 25px 20px 20px;
    }
    
    .mission-card-body,
    .vision-card-body {
        padding: 25px 20px;
    }
    
    .mission-card-title,
    .vision-card-title {
        font-size: 1.6rem;
    }
    
    .mission-icon-modern,
    .vision-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .mission-intro,
    .vision-intro {
        font-size: 1.1rem;
    }
    
    .mission-list {
        grid-template-columns: 1fr;
    }
    
    .vision-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr;
    }
    
    
}

/* Uzman Kadromuz Bölümü */
.team-section-modern {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.team-section-modern .hero-background-wrapper-about {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.team-section-modern .container {
    position: relative;
    z-index: 2;
}

.team-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.team-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--heading-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Yeni Team Layout - Alt Alta Split Design */
.team-list-modern {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

/* Sol Taraf - Testimonial */
.team-member-testimonial {
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.03), rgba(216, 74, 5, 0.01));
    position: relative;
}

.testimonial-content {
    position: relative;
}

.testimonial-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--subheading-color);
    margin: 0;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* Sağ Taraf - Profile */
.team-member-profile {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.team-member-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(236, 117, 5, 0.2);
    transition: transform 0.4s ease;
}

.team-member-row:hover .team-member-image-wrapper {
    transform: scale(1.05);
}

.team-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-details {
    width: 100%;
}

.team-member-info {
    padding: 0;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 10px 0;
}

.team-member-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.team-member-responsibilities {
    margin-top: 0;
    padding-top: 0;
    text-align: left;
}

.responsibilities-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.responsibilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.responsibilities-list li {
    font-size: 0.9rem;
    color: var(--subheading-color);
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
}

.responsibilities-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .team-member-row {
        gap: 30px;
    }
    
    .team-member-testimonial {
        padding: 40px 30px;
    }
    
    .team-member-profile {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .team-section-modern {
        padding: 60px 0;
    }
    
    .team-header-modern {
        margin-bottom: 40px;
    }
    
    .team-section-title {
        font-size: 2rem;
    }
    
    .team-list-modern {
        gap: 40px;
    }
    
    .team-member-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .team-member-testimonial {
        padding: 35px 25px;
        order: 2;
    }
    
    .team-member-profile {
        padding: 40px 25px 25px;
        order: 1;
    }
    
    .team-member-image-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .testimonial-icon {
        font-size: 2.5rem;
    }
    
    .team-member-name {
        font-size: 1.2rem;
    }
    
    .team-member-role {
        font-size: 0.95rem;
    }
    
    .responsibilities-list li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .team-list-modern {
        gap: 30px;
    }
    
    .team-member-testimonial {
        padding: 30px 20px;
    }
    
    .team-member-profile {
        padding: 30px 20px 20px;
    }
    
    .team-member-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-icon {
        font-size: 2rem;
    }
    
    .team-member-name {
        font-size: 1.1rem;
    }
    
    .responsibilities-list li {
        font-size: 0.8rem;
    }
}

