/* ===================================
   HAKKIMIZDA SAYFASI
   Profesyonel ve Modern Tasarım
   =================================== */

.about-page {
    background: var(--white);
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 40px;
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 10px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.95;
    font-weight: 300;
}

/* Şirket Hikayesi */
.company-story {
    padding: 50px 0;
    background: var(--white);
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    position: relative;
    padding: 40px;
}

.logo-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.decoration-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.3;
}

.dot-1 {
    top: 20px;
    left: 20px;
}

.dot-2 {
    bottom: 40px;
    right: 30px;
    width: 30px;
    height: 30px;
}

.dot-3 {
    top: 50%;
    right: 10px;
    width: 15px;
    height: 15px;
}

.story-content {
    padding-right: 20px;
}

.content-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.story-content h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Vizyon ve Misyon */
.vision-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.15);
}

.vm-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(229, 57, 53, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    transform: scale(1.1) rotate(5deg);
}

.vm-icon svg {
    stroke: var(--primary-red);
    transition: all 0.4s ease;
}

.vm-card:hover .vm-icon svg {
    stroke: var(--white);
}

.vm-card h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.vm-card > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.vm-list {
    list-style: none;
    padding: 0;
}

.vm-list li {
    padding: 12px 0;
    padding-left: 30px;
    color: var(--text-gray);
    font-size: 1rem;
    position: relative;
    line-height: 1.6;
}

.vm-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Değerlerimiz */
.about-values {
    padding: 100px 0;
    background: var(--white);
}

.values-grid-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
}

.value-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.12);
    background: var(--white);
}

.value-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(220, 20, 60, 0.1);
    line-height: 1;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.value-item:hover .value-number {
    color: rgba(220, 20, 60, 0.2);
    transform: scale(1.1);
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.value-item p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Neden Biz? */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us-wrapper {
    position: relative;
    z-index: 1;
}

.why-us-content {
    max-width: 1000px;
    margin: 0 auto;
}

.why-us-content h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
}

.why-us-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-box {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Üretim Süreci */
.production-info {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.production-step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.production-step:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.12);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.production-step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
}

.production-step h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.production-step p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--primary-red);
}

.cta-box h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-red);
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: 3px solid var(--primary-red);
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .logo-image {
        max-width: 100%;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid-about {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .production-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid-about {
        grid-template-columns: 1fr;
    }
    
    .why-us-features {
        grid-template-columns: 1fr;
    }
    
    .production-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 50px 30px;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }
}
