/* ===== HAKKIMIZDA PAGE STYLES ===== */

/* CSS Variable Overrides */
:root {
    --primary: #6366f1;
    --accent: #ec4899;
    --success: #10b981;
    --background-light: #f8fafc;
    --shadow-medium: var(--shadow-md);
    --shadow-large: var(--shadow-lg);
    --border-light: #f1f5f9;
}

/* Gradient Text Class */
.gradient-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Stat Item Styles */
.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Hakkımızda Hero Section */
.hakkimizda-hero {
    background: var(--gradient-mesh), var(--background);
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hakkimizda-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.08) 0%, 
        rgba(139, 69, 19, 0.06) 30%,
        rgba(6, 182, 212, 0.05) 60%, 
        rgba(236, 72, 153, 0.07) 100%);
    z-index: 1;
}

.hakkimizda-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hakkimizda-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.hakkimizda-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hakkimizda-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hakkimizda-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Hero Visual */
.hakkimizda-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.company-showcase {
    position: relative;
    width: 350px;
    height: 350px;
}

.showcase-card {
    position: absolute;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.showcase-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.showcase-card span {
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
}

.card-vision {
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.card-mission {
    top: 50px;
    right: 20px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.card-values {
    bottom: 50px;
    left: 50px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.company-logo-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-large);
    padding: 1rem;
}

.company-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Story Section */
.hakkimizda-story {
    padding: 6rem 0;
    background: var(--background-light);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.story-milestones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.milestone {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.milestone-year {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.milestone-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.timeline-graphic {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-line {
    position: absolute;
    width: 4px;
    height: 250px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.timeline-points {
    position: absolute;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.timeline-point {
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-point.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.timeline-point::after {
    content: attr(data-year);
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* VMV Section */
.hakkimizda-vmv {
    padding: 6rem 0;
    background: var(--background);
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vmv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    text-align: center;
}

.vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.vmv-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vision-card .vmv-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.mission-card .vmv-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.values-card .vmv-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.vmv-icon i {
    font-size: 1.5rem;
    color: white;
}

.vmv-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.vmv-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.values-list i {
    color: var(--success);
    font-size: 0.875rem;
}

/* Team Section */
.hakkimizda-team {
    padding: 6rem 0;
    background: var(--background-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.member-image {
    height: 200px;
    overflow: hidden;
    background: var(--background-light);
}

.placeholder-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.placeholder-avatar i {
    font-size: 4rem;
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Achievements Section */
.hakkimizda-achievements {
    padding: 6rem 0;
    background: var(--background);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.achievement-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.achievement-icon i {
    font-size: 1.5rem;
    color: white;
}

.achievement-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.achievement-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Culture Section */
.hakkimizda-culture {
    padding: 6rem 0;
    background: var(--background-light);
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.culture-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.culture-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.culture-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.culture-feature i {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.culture-feature h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.culture-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

.culture-image {
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
}

.placeholder-office {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 1rem;
}

.placeholder-office i {
    font-size: 4rem;
}

.placeholder-office span {
    font-size: 1.25rem;
    font-weight: 600;
}

/* CTA Section */
.hakkimizda-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hakkimizda-hero-content,
    .story-content,
    .culture-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hakkimizda-hero-visual {
        order: -1;
    }
    
    .company-showcase {
        width: 300px;
        height: 300px;
    }
    
    .story-milestones {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hakkimizda-hero {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .hakkimizda-hero-title {
        font-size: 2.5rem;
    }
    
    .hakkimizda-hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .vmv-grid,
    .team-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .company-showcase {
        width: 250px;
        height: 250px;
    }
    
    .card-vision { top: 20px; left: 20px; }
    .card-mission { top: 30px; right: 10px; }
    .card-values { bottom: 30px; left: 30px; }
}

@media (max-width: 480px) {
    .hakkimizda-hero-title {
        font-size: 2rem;
    }
    
    .hakkimizda-hero-description {
        font-size: 1rem;
    }
    
    .hakkimizda-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vmv-card,
    .team-member,
    .achievement-card {
        padding: 1.5rem;
    }
    
    .showcase-card {
        padding: 1rem;
    }
}