/* Hakkımızda Sayfası - Profesyonel Tasarım */

/* 1️⃣ HERO ALAN */
.about-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 120px 0 100px;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 179, 79, 0.85) 0%, rgba(35, 143, 63, 0.85) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.3;
}

.about-hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: var(--white);
    line-height: 1.8;
}

.about-hero-subtitle strong {
    font-size: 24px;
    font-weight: 600;
}

.about-hero-description {
    max-width: 900px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero-description p {
    font-size: 17px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-hero-description p:last-child {
    margin-bottom: 0;
}

.about-hero-description strong {
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 1.5️⃣ HAKKIMIZDA DETAYLI METİN BÖLÜMÜ */
.about-intro-section {
    padding: 80px 0;
    background: var(--white);
}

.about-intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-gray);
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.about-intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-intro-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 2;
    text-align: justify;
}

.about-intro-text p {
    margin-bottom: 25px;
}

.about-intro-text p:last-child {
    margin-bottom: 0;
}

.about-intro-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 2️⃣ HAKKIMDA DETAYLI İÇERİK */
.about-detail-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.about-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-detail-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.9;
}

.about-detail-text p {
    margin-bottom: 25px;
    text-align: justify;
}

.about-detail-text p:last-child {
    margin-bottom: 0;
}

.about-detail-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 3️⃣ DENEYİM VE GÜVEN */
.about-experience-section {
    padding: 80px 0;
    background: var(--white);
}

.about-experience-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-experience-image {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about-section-title span {
    color: var(--primary-color);
}

.about-section-intro {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.about-feature-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
}

.about-feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.about-feature-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* 3️⃣ HİZMET ALANLARI / YURT DIŞI PROJELER */
.about-projects-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.about-projects-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.about-project-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--primary-color);
}

.about-project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-project-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 32px;
}

.about-project-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.about-project-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.about-turkey-section {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
}

.about-subsection-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.about-subsection-intro {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.8;
}

.about-districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.about-district-link {
    background: var(--light-gray);
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-gray);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about-district-link:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.about-district-link i {
    color: var(--primary-color);
}

/* 4️⃣ MİSYON */
.about-mission-section {
    padding: 80px 0;
    background: var(--white);
}

.about-mission-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-mission-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-mission-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-mission-text:last-child {
    margin-bottom: 0;
}

.about-mission-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 6️⃣ HİZMETLERİMİZ */
.about-services-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.about-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.about-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.about-service-card:hover .about-service-image img {
    transform: scale(1.05);
}

.about-service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.about-service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.about-service-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.about-service-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.about-service-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* 6️⃣ CTA / İLETİŞİM */
.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.about-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.about-cta-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.about-cta-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--white);
    opacity: 0.95;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-experience-wrapper,
    .about-mission-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        background-attachment: scroll;
        padding: 100px 0 80px;
        min-height: 400px;
    }
    
    .about-hero-content h1 {
        font-size: 32px;
    }
    
    .about-hero-subtitle {
        font-size: 18px;
    }
    
    .about-hero-description {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .about-hero-description p {
        font-size: 16px;
    }
    
    .about-section-title {
        font-size: 28px;
    }
    
    .about-detail-text {
        font-size: 17px;
    }
    
    .about-experience-image,
    .about-mission-image {
        height: 400px;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-cta-title {
        font-size: 32px;
    }
    
    .about-cta-subtitle {
        font-size: 20px;
    }
    
    .about-hero-buttons,
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-hero-buttons .btn,
    .about-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 80px 0 60px;
    }
    
    .about-hero-content h1 {
        font-size: 28px;
    }
    
    .about-hero-description {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .about-hero-description p {
        font-size: 15px;
        text-align: left;
    }
    
    .about-intro-title {
        font-size: 32px;
    }
    
    .about-intro-text {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .about-intro-section,
    .about-experience-section,
    .about-projects-section,
    .about-mission-section,
    .about-gallery-section,
    .about-cta-section {
        padding: 60px 0;
    }
    
    .about-intro-title {
        font-size: 28px;
    }
    
    .about-intro-text {
        font-size: 15px;
        text-align: left;
    }
    
    .about-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-districts-grid {
        grid-template-columns: 1fr;
    }
}
