/* About Page Styles */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section - We Build For People */
.about-hero {
    background-color: #E9E8E6;
    padding: 50px 0 10px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    padding-right: 20px;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}
@media(max-width: 768px){
.hero-title {    
    margin-top: 50px;
}
}


.hero-title {
    font-size: 3.5rem;
    color: #333;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Cards Section */
.services-section {
    background-color: #E9E8E6;
    padding: 80px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: #045129;
    color: white;
    padding: 50px 30px;
    border-radius: 12px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: white;
}

.card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #2d2d2d;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-subtitle {
    font-size: 0.9rem;
    color: #ccc;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.testimonial-card {
    text-align: center;
}

.stars {
    margin-bottom: 30px;
}

.stars span {
    font-size: 1.2rem;
    color: #ffd700;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testimonial-author strong {
    font-size: 0.9rem;
    color: white;
    letter-spacing: 1px;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #999;
}

/* Mission Section - Building a Sustainable Future */
.mission-section {
    background-color: #E9E8E6;
    padding: 100px 0;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-text {
    padding-right: 20px;
}

.mission-subtitle {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.mission-title {
    font-size: 3rem;
    color: #333;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
}

.mission-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.mission-image {
    position: relative;
}

.mission-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text,
    .mission-text {
        padding-right: 0;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title,
    .mission-title {
        font-size: 2.5rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .services-section,
    .testimonials-section,
    .mission-section {
        padding: 60px 0;
    }
    
    .hero-content,
    .mission-content {
        gap: 40px;
    }
    
    .hero-title,
    .mission-title {
        font-size: 2rem;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 40px 20px;
        min-height: 300px;
    }
    
    .hero-image img,
    .mission-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .mission-title {
        font-size: 1.8rem;
    }
    
    .testimonials-title {
        font-size: 1.5rem;
        margin-bottom: 50px;
    }
    
    .service-card {
        padding: 30px 15px;
        min-height: 250px;
    }
    
    .testimonials-grid {
        gap: 40px;
    }
    
    .hero-image img,
    .mission-image img {
        height: 250px;
    }
}











/* ==========================================
   SÜRDÜRÜLEBİLİRLİK BÖLÜMÜ - MASAÜSTÜ + MOBİL OVERLAY
   ========================================== */

.sustainability-section {
    background-color: #E9E8E6;
    padding: 100px 0;
}

.sustainability-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sustainability-image-1 {
    background-image: url('/media/vohmkgbk/hakkımızda-sustain-gorsel-for-mobile-1.png');
}
.sustainability-image-2 {
    background-image: url('/media/gdiewiwy/hakkımızda-sustain-gorsel-for-mobile-2.png');
}


.sustainability-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Görsel üzerine hafif overlay ekleyelim */
.sustainability-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(4, 81, 41, 0.1) 0%,
        rgba(46, 125, 50, 0.2) 100%
    );
}

.sustainability-content {
    background-color: #045129;
    color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sustainability-title {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.sustainability-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Mobil görünümde sustainability-grid'ler arasında ayırıcı */
@media (max-width: 992px) {
    .sustainability-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        position: relative;
        margin-bottom: 40px; /* Grid'ler arasında boşluk */
    }
    
    /* Container'a relative position ver */
    .sustainability-container {
        position: relative;
    }
    
    /* İlk grid'den sonra yeşil çizgi ekle - container içinde */
    .sustainability-grid:first-child::after {
        content: '';
        display: block;
        position: absolute;
        bottom: -20px;
        left: 10%;
        width: 80%;
        height: 7px;
        background-color: #045129;
        z-index: 999;
    }
    
    /* Alternatif olarak container'da çizgi */
    .sustainability-container::before {
        content: '';
        display: block;
        width: 80%;
        height: 7px;
        background-color: #045129;
        margin: 0px auto;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 999;
    }
    
    /* Son grid'in margin'ını sıfırla */
    .sustainability-grid:last-child {
        margin-bottom: 0;
    }

    .sustainability-image {
        min-height: 450px;
        grid-row: 1;
        grid-column: 1;
    }

    .sustainability-content {
        grid-row: 1;
        grid-column: 1;
        background: linear-gradient(
            to top,
            rgba(4, 81, 41, 0.95) 0%,
            rgba(4, 81, 41, 0.85) 40%,
            rgba(4, 81, 41, 0.6) 70%,
            rgba(4, 81, 41, 0.3) 100%
        );
        padding: 40px 30px;
        align-self: end;
        margin: 0;
        border-radius: 0;
    }

    .sustainability-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: white;
        text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    }

    .sustainability-description {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .sustainability-section {
        padding: 60px 0;
    }
    
    .sustainability-grid {
        margin-bottom: 35px;
    }
    
    /* Çizgiyi küçük ekranlarda biraz daha ince yap */
    .sustainability-grid:first-child::after {
        width: 70%;
        height: 1.5px;
        bottom: -17.5px;
    }

    .sustainability-image {
        min-height: 400px;
    }

    .sustainability-content {
        padding: 30px 25px;
        background: linear-gradient(
            to top,
            rgba(4, 81, 41, 0.95) 0%,
            rgba(4, 81, 41, 0.85) 35%,
            rgba(4, 81, 41, 0.6) 65%,
            rgba(4, 81, 41, 0.3) 85%,
            transparent 100%
        );
    }

    .sustainability-title {
        font-size: 1.6rem;
        margin-bottom: 18px;
        line-height: 1.2;
        text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    }

    .sustainability-description {
        font-size: 0.95rem;
        line-height: 1.5;
        text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    }
}

@media (max-width: 480px) {
    .sustainability-section {
        padding: 40px 0;
    }
    
    .sustainability-grid {
        margin-bottom: 30px;
    }
    
    /* En küçük ekranlarda çizgiyi daha da ince yap */
    .sustainability-grid:first-child::after {
        width: 60%;
        height: 6px;
        bottom: -15px;
    }

    .sustainability-image {
        min-height: 350px;
    }

    .sustainability-content {
        padding: 25px 20px;
        background: linear-gradient(
            to top,
            rgba(4, 81, 41, 0.35) 0%,
            rgba(4, 81, 41, 0.25) 30%,
            rgba(4, 81, 41, 0.15) 60%,
            rgba(4, 81, 41, 0.05) 80%,
            transparent 100%
        );
        z-index: 2;
    }

    .sustainability-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    }

    .sustainability-description {
        font-size: 0.9rem;
        line-height: 1.4;
        text-shadow: 0 1px 3px rgba(0,0,0,0.7);
    }
}







/* ==========================================
   UZMAN EKİBİMİZ BÖLÜMÜ
   ========================================== */

.expert-team-section {
    background-color: #E9E8E6;
    padding: 100px 0;
}

.expert-team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.expert-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.expert-team-content {
    padding-right: 20px;
}

.expert-team-title {
    font-size: 3rem;
    color: #333;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    position: relative;
}

/* Sol tarafta yeşil çizgi */
.expert-team-title::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #045129;
    border-radius: 2px;
}

.expert-team-list {
    list-style: none;
    padding: 0;
}

.expert-team-item {
    margin-bottom: 25px;
    padding-left: 15px;
    position: relative;
}

/* Sol tarafta yeşil nokta */
.expert-team-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #045129;
    border-radius: 50%;
}
@media(max-width: 768px){
    /* Sol tarafta yeşil nokta */
.expert-team-item::before {
    display: none;
}
}
.expert-team-role {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.expert-team-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.expert-team-image {
    position: relative;
}

.expert-team-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 992px) {
    .expert-team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .expert-team-content {
        padding-right: 0;
        order: 2;
    }
    
    .expert-team-image {
        order: 1;
    }
    
    .expert-team-title {
        font-size: 2.5rem;
    }
    
    .expert-team-title::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .expert-team-section {
        padding: 60px 0;
    }
    
    .expert-team-grid {
        gap: 40px;
    }
    
    .expert-team-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .expert-team-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .expert-team-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .expert-team-item {
        margin-bottom: 20px;
    }
    
    .expert-team-image img {
        height: 250px;
    }
}