* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HERO - KÜÇÜLTÜLMÜŞ */
.about-hero {
    position: relative;
    min-height: 350px;  /* 500px → 350px */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 40px 60px;  /* Küçültüldü */
    overflow: hidden;
    
}

/* ARKA PLAN FOTOĞRAF */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1628088062854-d1870b4553da?w=1600');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* MAVİ OVERLAY */
.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.0), rgba(0, 168, 232, 0.0));
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    margin-top: 38px;
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 20px;  /* Küçültüldü */
    border-radius: 25px;
    font-size: 12px;  /* 14px → 12px */
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.about-hero h1 {
    font-size: 38px;  /* 56px → 38px */
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.3);
}

.about-hero p {
    font-size: 18px;  /* 24px → 18px */
    color: #fff;
    margin-bottom: 35px;  /* 50px → 35px */
    opacity: 0.95;
    text-shadow: 1px 2px 10px rgba(0,0,0,0.2);
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 40px;  /* 60px → 40px */
    flex-wrap: wrap;
}

.mini-stat {
    text-align: center;
    padding: 18px 28px;  /* 25px 35px → 18px 28px */
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s ease;
}

.mini-stat:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mini-stat strong {
    display: block;
    font-size: 32px;  /* 42px → 32px */
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.mini-stat span {
    display: block;
    font-size: 12px;  /* 14px → 12px */
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-hero {
        min-height: 400px;
        padding: 100px 20px 60px;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-hero p {
        font-size: 18px;
        margin-bottom: 35px;
    }
    
    .hero-stats-mini {
        gap: 30px;
    }
    
    .mini-stat {
        padding: 20px 25px;
    }
    
    .mini-stat strong {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 28px;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        gap: 15px;
    }
    
    .mini-stat {
        width: 100%;
    }
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.label-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0077BE, #5BC0DE);
    color: #fff;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.label-badge.white {
    background: #fff;
    color: #0077BE;
}

.section-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

/* Timeline */
.timeline-section {
    padding: 100px 0;
    background: #f8fcff;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0077BE, #5BC0DE);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 50px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,119,190,0.12);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #0077BE, #5BC0DE);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 22px;
    color: #0077BE;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Story Grid */
.story-grid-section {
    padding: 100px 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.story-image-block {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.story-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image-block:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,119,190,0.9), transparent);
    padding: 30px;
    color: #fff;
}

.image-overlay h3 {
    font-size: 24px;
    font-weight: 700;
}

.story-text-block {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text-block.blue-bg {
    background: linear-gradient(135deg, #0077BE, #00a8e8);
    color: #fff;
}

.story-text-block.white-bg {
    background: #f8fcff;
}

.story-text-block h3 {
    font-size: 32px;
    margin: 15px 0 20px;
    font-weight: 700;
}

.story-text-block p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.blue-bg p {
    color: rgba(255,255,255,0.95);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5BC0DE;
    font-weight: 700;
    font-size: 18px;
}

.certification-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cert-badge {
    background: #0077BE;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

/* Values Modern */
.values-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.value-card-modern {
    background: #fff;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,119,190,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,119,190,0.18);
}

.value-icon-wrapper {
    width: 64px;          /* 90 → 64 */
    height: 64px;         /* 90 → 64 */
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0077BE, #5BC0DE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0,119,190,0.25);
}

.value-icon-wrapper img {
    width: 32px;          /* 50 → 32 */
    height: 32px;
    filter: brightness(0) invert(1);
}

.value-card-modern h3 {
    font-size: 22px;
    color: #0077BE;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card-modern p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 900;
    color: #f0f8ff;
}

/* Big Stats */
.big-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #0077BE 0%, #005a8e 100%);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.05);
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.stat-num {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Production Process Section */
.production-process {
    padding: 100px 0;
    background: #fff;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.process-step {
    position: relative;
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e6f7ff;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: #5BC0DE;
    box-shadow: 0 15px 40px rgba(0,119,190,0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0077BE, #5BC0DE);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,119,190,0.3);
}

.step-icon {
    font-size: 60px;
    margin: 20px 0;
}

.process-step h3 {
    font-size: 22px;
    color: #0077BE;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.process-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.highlight-box {
    background: linear-gradient(135deg, #0077BE, #00a8e8);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,119,190,0.2);
    transition: transform 0.3s ease;
}

.highlight-box:hover {
    transform: scale(1.05);
}

.highlight-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight-box p {
    font-size: 15px;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
}

/* Sertifikalar Section */
.certifications-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fcff 0%, #e6f7ff 100%);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,119,190,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cert-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,119,190,0.2);
}

.cert-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.cert-item h3 {
    font-size: 20px;
    color: #0077BE;
    margin-bottom: 10px;
    font-weight: 700;
}

.cert-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.cert-year {
    display: inline-block;
    background: #0077BE;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Mission Vision Modern */
.mission-vision-modern {
    padding: 100px 0;
    background: #fff;
}

.mv-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    padding: 50px 45px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.mission-card {
    background: linear-gradient(135deg, #0077BE 0%, #0099db 100%);
    color: #fff;
}

.vision-card {
    background: #fff;
    border: 2px solid #e6f7ff;
}

.mv-icon {
    font-size: 70px;
    margin-bottom: 25px;
}

.mv-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 800;
}

.mission-card h2 {
    color: #fff;
}

.vision-card h2 {
    color: #0077BE;
}

.mv-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.mission-card .mv-description {
    color: rgba(255,255,255,0.95);
}

.vision-card .mv-description {
    color: #555;
}

.mv-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mv-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.feature-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mission-card .feature-dot {
    background: #5BC0DE;
}

.vision-card .feature-dot {
    background: #0077BE;
}

.mission-card .mv-feature-item {
    color: rgba(255,255,255,0.95);
}

.vision-card .mv-feature-item {
    color: #444;
}

/* Modern CTA */
.modern-cta {
    position: relative;
    padding: 120px 40px;
    background: linear-gradient(135deg, #0077BE 0%, #005a8e 100%);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.cta-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.modern-cta h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.modern-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 45px;
    line-height: 1.7;
}

.cta-action-box {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-primary {
    background: #fff;
    color: #0077BE;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.8);
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.cta-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 32px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 5px;
}

.trust-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-highlight {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mv-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .about-hero {
        min-height: 500px;
    }
    
    .about-hero h1 {
        font-size: 40px;
    }
    
    .about-hero p {
        font-size: 18px;
    }
    
    .hero-stats-mini {
        gap: 30px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        text-align: left !important;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }
    
    .story-text-block {
        padding: 40px 30px;
    }
    
    .values-grid-modern,
    .stats-wrapper,
    .process-timeline,
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        padding: 40px 30px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .modern-cta h2 {
        font-size: 32px;
    }
    
    .modern-cta p {
        font-size: 16px;
    }
    
    .cta-action-box {
        flex-direction: column;
    }
    
    .cta-trust-badges {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .trust-divider {
        display: none;
    }
}