/* Hakkımızda Sayfası - Premium Tasarım */

/* Hero */
.about-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 140px 2rem 80px;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.about-hero-subtitle {
    font-size: 1.15rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Story Section */
.about-story {
    padding: 5rem 2rem;
    background: #0a0a0a;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
}

.about-story-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-lead {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-story-content p {
    color: #909090;
    line-height: 1.8;
}

.about-story-visual {
    display: flex;
    justify-content: center;
}

.about-stat-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-stat-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: center;
    min-width: 220px;
}

.about-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.9rem;
    color: #808080;
}

/* Gallery Section */
.about-gallery-section {
    padding: 4rem 2rem;
    background: #0f0f0f;
}

.about-gallery-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 3rem;
}

.about-gallery-icon {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    flex-shrink: 0;
}

.about-gallery-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.about-gallery-content p {
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-gallery-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-gallery-info p {
    margin: 0;
    padding: 0;
    color: #808080;
    font-size: 0.95rem;
}

.about-gallery-info i {
    margin-right: 0.5rem;
    color: #666;
}

/* Values */
.about-values {
    padding: 5rem 2rem;
    background: #0a0a0a;
}

.about-values-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-value-card {
    background: linear-gradient(145deg, #141414, #0a0a0a);
    border: 1px solid #222;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-value-card:hover {
    border-color: #444;
    transform: translateY(-4px);
}

.about-value-icon {
    width: 56px;
    height: 56px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem;
    color: #fff;
}

.about-value-icon i {
    color: #fff;
    font-weight: 900;
}

.about-value-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.about-value-card p {
    font-size: 0.9rem;
    color: #808080;
    line-height: 1.6;
}

/* CTA */
.about-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    border-top: 1px solid #222;
    text-align: center;
}

.about-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.about-cta p {
    color: #909090;
    margin-bottom: 2rem;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #e0e0e0;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }
    
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-gallery-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 120px 1rem 60px;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-gallery-card {
        padding: 2rem 1.5rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
