.about-page {
    overflow-x: hidden;
}

/* Hero Bölümü */
.about-page .about-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-bottom: 4rem;
}

.about-page .about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.about-page .about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-page .about-hero .container {
    position: relative;
    z-index: 2;
}

.about-page .about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.about-page .about-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s;
}

/* Biz Kimiz Bölümü */
.about-page .about-who-we-are {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.about-page .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-page .about-content {
    position: relative;
    padding-left: 2rem;
}

.about-page .about-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.about-page .about-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.about-page .about-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
}

.about-page .about-content .content-text {
    position: relative;
}

.about-page .about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.about-page .about-content p:last-child {
    margin-bottom: 0;
}

.about-page .about-content p strong {
    color: var(--dark-color);
    font-weight: 600;
}

.about-page .about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-page .about-image img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.about-page .about-image:hover img {
    transform: scale(1.05);
}

/* Misyon & Vizyon */
.about-page .mission-vision {
    padding: 3rem 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about-page .mission-vision::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.03) 0%, rgba(var(--primary-rgb), 0.01) 100%);
    transform: rotate(-45deg);
    z-index: 0;
}

.about-page .mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.about-page .mv-card {
    background: #fff;
    padding: 3.5rem;
    border-radius: 20px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.about-page .mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-page .mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-page .mv-card:hover::before {
    opacity: 1;
}

.about-page .mv-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(var(--primary-rgb), 0.1);
}

.about-page .mv-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.about-page .mv-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.about-page .mv-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* Neden Biz Bölümü */
.about-page .why-us {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.about-page .why-us h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 40px;
    --bottom-width: 80px;
}

.about-page .why-us h2::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: var(--bottom-width);
    height: 5px;
    transform: translateX(-50%);
    border-radius: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%
    );
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.2);
}

/* Scroll edildiğinde aktif olacak class */
.about-page .why-us h2.border-animate::before {
    width: 100%;
    left: 0;
    transform: translateX(0) scaleX(1);
}

.about-page .why-us-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 3rem 3rem 7rem;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    color: #fff;
}

.about-page .why-us-content::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    z-index: -1;
}

.about-page .why-us-content::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    z-index: -2;
}

.about-page .why-us-content-inner {
    position: relative;
    z-index: 1;
    padding: 0;
}

.about-page .why-us-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.about-page .why-us-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-page .why-us-content p:last-child {
    margin-bottom: 0;
}

.about-page .why-us-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-page .why-us-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.about-page .why-us-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

/* Medya Sorguları */
@media (max-width: 992px) {
    .about-page .about-hero {
        min-height: 400px;
    }
    
    .about-page .about-grid,
    .about-page .mv-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-page .mv-card {
        padding: 2.5rem;
    }
    
    .about-page .about-content {
        padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Hero Bölümü */
    .about-page .about-hero {
        min-height: 350px;
    }
    
    .about-page .about-hero h1 {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .about-page .about-hero p {
        font-size: 1rem;
    }

    /* Biz Kimiz Bölümü */
    .about-page .about-who-we-are {
        padding: 4rem 0;
    }
    
    .about-page .about-content {
        padding-left: 1.25rem;
    }
    
    .about-page .about-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-page .about-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Misyon & Vizyon Bölümü */
    .about-page .mission-vision {
        padding: 4rem 0;
    }
    
    .about-page .mv-card {
        padding: 2rem;
    }
    
    .about-page .mv-card .icon {
        font-size: 2rem;
        padding: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .about-page .mv-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-page .mv-card p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Neden Biz Bölümü */
    .about-page .why-us {
        padding: 4rem 0;
    }
    
    .about-page .why-us h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .about-page .why-us-content {
        margin: 0 1rem;
        padding: 2rem 2rem 6rem;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    }
    
    .about-page .why-us-content::before,
    .about-page .why-us-content::after {
        clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    }
    
    .about-page .why-us-content h3 {
        font-size: 1.3rem;
    }
    
    .about-page .why-us-content p,
    .about-page .why-us-content ul li {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-page .why-us-content-inner {
        padding-bottom: 100px;
    }
}

@media (max-width: 576px) {
    .about-page .about-hero {
        min-height: 300px;
    }
    
    .about-page .about-hero h1 {
        font-size: 1.75rem;
    }
    
    .about-page .mv-card,
    .about-page .why-us-content {
        padding: 1.5rem;
    }
    
    .about-page .about-who-we-are,
    .about-page .mission-vision,
    .about-page .why-us {
        padding: 3rem 0;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Görsel Optimizasyonu */
.about-image picture,
.about-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Lazy Loading Animasyonu */
.about-image img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image img.loaded {
    opacity: 1;
} 