/* =========================================
   MISSION VISION - MODERN REDESIGN
   Font: Poppins (Anasayfa ile uyumlu)
   ========================================= */

/* =========================================
   1. BASE & VARIABLES
   ========================================= */
:root {
    --primary: #e74c3c;
    --primary-dark: #c0392b;
    --secondary: #2c3e50;
    --dark: #0f172a;
    --gray: #7f8c8d;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background: var(--white);
}

.main-content {
    padding-top: 0;
}

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* =========================================
   2. HERO SECTION - SPLIT DESIGN
   ========================================= */
.hero-mission {
    min-height: 70vh;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-mission .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 0;
}

/* Breadcrumb */
.breadcrumb-nav {
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    background: none;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 10px;
    color: rgba(255,255,255,0.4);
}

/* Hero Title */
.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.hero-title .title-highlight {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--primary);
    margin-top: 10px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Hero Values */
.hero-values {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.value-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.value-item i {
    font-size: 1.2rem;
    color: var(--primary);
}

.value-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
}

/* =========================================
   3. MISSION SECTION
   ========================================= */
.mission-section {
    background: var(--white);
}

.mission-visual {
    position: relative;
}

.visual-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.visual-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(231,76,60,0.85) 0%, rgba(44,62,80,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.visual-main:hover .visual-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.4s;
}

.visual-main:hover .overlay-icon {
    transform: scale(1);
}

.overlay-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.visual-stats {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.stat-card {
    flex: 1;
    padding: 24px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-card span {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Mission Content */
.mission-content {
    padding-left: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(231,76,60,0.1);
    border: 1px solid rgba(231,76,60,0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-badge.light {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
}

.section-badge i {
    font-size: 1rem;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title .title-highlight {
    color: var(--primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Mission Principles */
.mission-principles {
    margin-top: 30px;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.principle-item:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.principle-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 4px;
}

.principle-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
}

.principle-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

/* =========================================
   4. VISION SECTION
   ========================================= */
.vision-section {
    background: var(--light);
}

.vision-visual {
    position: relative;
}

.vision-visual .visual-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.vision-visual .visual-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.vision-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(231,76,60,0.3);
}

.vision-badge i {
    font-size: 1rem;
}

/* Vision Content */
.vision-content {
    padding-right: 60px;
}

.vision-goals {
    margin-top: 30px;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.goal-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goal-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.goal-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
}

.goal-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

/* =========================================
   5. VALUES SECTION
   ========================================= */
.values-section {
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    height: 100%;
    transition: all 0.4s;
}

.value-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.4s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* =========================================
   6. GOALS SECTION - DARK
   ========================================= */
.goals-section {
    background: var(--secondary);
    position: relative;
}

.goals-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.goals-section .container {
    position: relative;
    z-index: 2;
}

.goals-section .section-title {
    color: var(--white);
}

.goals-section .section-title.text-white {
    color: var(--white);
}

.goal-card {
    position: relative;
    text-align: center;
    padding: 50px 30px 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    height: 100%;
    transition: all 0.4s;
}

.goal-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
}

.goal-number {
    position: absolute;
    top: -15px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.goal-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s;
}

.goal-card:hover .goal-icon-large {
    background: var(--primary);
    transform: scale(1.1);
}

.goal-icon-large i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: color 0.4s;
}

.goal-card:hover .goal-icon-large i {
    color: var(--white);
}

.goal-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.goal-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* =========================================
   7. CTA SECTION - FULL WIDTH
   ========================================= */
.cta-section {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(231,76,60,0.95) 0%, rgba(192,57,43,0.95) 100%);
    z-index: 2;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 60px 60px;
    z-index: 3;
}

.cta-section .container {
    position: relative;
    z-index: 4;
}

.cta-content {
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.cta-badge i {
    font-size: 1.1rem;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 200px;
    justify-content: center;
}

.cta-button.btn-primary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.cta-button.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.cta-button.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.cta-button.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 50px;
}

.feature-item i {
    font-size: 1.1rem;
}

/* =========================================
   8. RESPONSIVE
   ========================================= */
@media (max-width: 1200px) {
    .mission-content {
        padding-left: 40px;
    }
    
    .vision-content {
        padding-right: 40px;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .mission-content {
        padding-left: 0;
        margin-top: 50px;
        text-align: center;
    }
    
    .vision-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .mission-principles,
    .vision-goals {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .principle-item,
    .goal-item {
        text-align: left;
    }
    
    .hero-values {
        gap: 15px;
    }
    
    .value-item {
        padding: 12px 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-mission {
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-values {
        gap: 10px;
    }
    
    .value-item {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .value-item i {
        font-size: 1rem;
    }
    
    .visual-main img,
    .vision-visual .visual-main img {
        height: 300px;
    }
    
    .visual-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-card h4 {
        font-size: 1.5rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .principle-item,
    .goal-item {
        padding: 16px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .goal-card {
        padding: 40px 20px 30px;
    }
    
    .goal-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .goal-icon-large i {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 60px 0 80px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 40px 0;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .hero-title .title-highlight {
        font-size: 1.2rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .value-item {
        padding: 8px 14px;
    }
    
    .value-item span {
        font-size: 0.8rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .cta-badge {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .feature-item {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* =========================================
   9. UTILITIES & OVERRIDES
   ========================================= */
.bg-light {
    background-color: var(--light) !important;
}

.bg-dark {
    background-color: var(--secondary) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-center {
    text-align: center !important;
}

/* Row & Column Fixes */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.row > * {
    padding-left: 12px;
    padding-right: 12px;
}

.col-lg-3 {
    width: 25%;
}

.col-lg-4 {
    width: 33.333333%;
}

.col-lg-6 {
    width: 50%;
}

.col-lg-8 {
    width: 66.666667%;
}

.col-md-6 {
    width: 50%;
}

@media (max-width: 991.98px) {
    .col-lg-3,
    .col-lg-4,
    .col-lg-6,
    .col-lg-8 {
        width: 100%;
    }
    
    .order-lg-1 {
        order: 0;
    }
    
    .order-lg-2 {
        order: 0;
    }
}

@media (max-width: 767.98px) {
    .col-md-6 {
        width: 100%;
    }
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.mb-4 {
    margin-bottom: 24px !important;
}

/* Fix Footer Container */
.footer .container {
    max-width: 1320px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}
