/* Hakkımızda sayfası için özel stiller */
.page-hero {
    height: 50vh;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 60%, var(--copper) 100%);
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -120px;
    padding-top: 120px;
}

.page-title {
    font-family: 'AW Conqueror Didot Light', serif;
    font-size: 3.5rem;
    color: white;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.page-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--copper);
    border-radius: 2px;
}

.about-section {
    padding: 80px 0;
}

.about-section.bg-light {
    background-color: white;
    color: #333;
}

.section-title {
    font-family: 'AW Conqueror Didot Light', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: var(--copper);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--copper);
    border-radius: 2px;
}

.section-title.text-center {
    text-align: center;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
            object-position: center;
}

    .faq-question {
width: 100%;
background: none;
border: none;
padding: 20px 25px;
text-align: left;
font-size: 1.15rem;
font-weight: 600;
color: var(--dark-blue, #333);
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}

.faq-answer {
max-height: 0;
overflow: hidden;
padding: 0 25px;
line-height: 1.7;
color: #555;
transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
margin: 0;
}

.faq-answer.show {
max-height: 500px;
padding-bottom: 20px;
}

.faq-answer.hidden {
padding-top: 0;
padding-bottom: 0;
}

.faq-item i {
transition: transform 0.3s ease;
}

.faq-item.active i {
transform: rotate(180deg);
}

.faq-item {
background: #fff;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}
.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.mission-card, .vision-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-card h3, .vision-card h3 {
    font-family: 'AW Conqueror Didot Light', serif;
    font-size: 1.8rem;
    color: var(--copper);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.mission-card h3::before, .vision-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--copper);
    border-radius: 2px;
}

.mission-card p, .vision-card p {
    line-height: 1.7;
    color: #555;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.timeline {
    position: relative;
    padding: 30px 0;
    margin-top: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--copper);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 50px;
    position: relative;
    width: 50%;
    padding-right: 40px;
    padding-left: 40px;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    margin-left: auto;
    justify-content: flex-start;
}

.timeline-content {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    width: 100%;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: white;
    transform: rotate(45deg);
    box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    right: auto;
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.05);
}

.timeline-year {
    position: absolute;
    top: 15px;
    left: 104%;
    background: var(--copper);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-item:nth-child(even) .timeline-year {
    right: 104%;
    left: auto;
}

.timeline-dot {
    position: absolute;
    right: -10px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--copper);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--copper);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
    right: auto;
}

.timeline-content h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-photo {
    height: 300px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
            object-position: center;
    transition: transform 0.5s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
}

.team-name {
    font-family: 'AW Conqueror Didot Light', serif;
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.team-position {
    color: var(--copper);
    font-size: 1rem;
    margin-bottom: 15px;
}

.team-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--copper);
    color: white;
    transform: translateY(-3px);
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px 0;
    margin-top: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--copper);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.cta-box {
    margin-top: 70px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-title {
    font-family: 'AW Conqueror Didot Light', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        align-self: flex-start;
        margin-left: 0;
    }
    
    .timeline-year {
        left: 0;
        top: -30px;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        right: auto;
        left: 0;
    }
    
    .timeline-dot {
        left: 30px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 30px;
    }
    
    .timeline-content::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-card h3, .vision-card h3 {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px;
    }
    
    .team-photo {
        height: 250px;
    }
    
    .cta-box {
        padding: 30px;
    }
}
