﻿.about-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column; /* Mobilde sütun düzeni için */
    position: relative;
    z-index: 1;
}

    .about-container::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: rgba(0, 201, 167, 0.05);
        border-radius: 50%;
        z-index: -1;
    }

.about-image {
    width: 100%;
    height: 400px; /* Mobil için uygun yükseklik */
    position: relative;
    overflow: hidden;
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.8s ease;
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

.about-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 109, 91, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    z-index: 2;
}

.years-experience {
    background: #00c9a7;
    color: white;
    padding: 12px 25px;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .years-experience span {
        font-size: 0.9rem;
        font-weight: 500;
        margin-top: 5px;
    }

.about-content {
    width: 100%;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.about-badge {
    background: rgba(0, 201, 167, 0.1);
    color: #006d5b;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #006d5b;
    margin-bottom: 15px;
    line-height: 1.2;
}

    .about-title em {
        color: #00c9a7;
        font-style: normal;
        position: relative;
    }

        .about-title em::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, #00c9a7, #ffd700);
            border-radius: 2px;
        }

.about-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    border-left: 2px solid #00c9a7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr; /* Mobilde tek sütun */
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    background: rgba(0, 201, 167, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .feature-icon i {
        color: #00c9a7;
        font-size: 1.2rem;
    }

.feature-text h4 {
    color: #006d5b;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-text p {
    color: #666;
    font-size: 0.9rem;
}

.about-button {
    width: 100%; /* Mobilde tam genişlik */
    text-align: center;
    background: linear-gradient(to right, #006d5b, #00c9a7);
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 109, 91, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .about-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: all 0.6s ease;
        z-index: -1;
    }

    .about-button:hover::before {
        left: 100%;
    }

    .about-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 109, 91, 0.5);
    }

/* Tablet ve üstü için */
@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
    }

    .about-image {
        width: 50%;
        height: 500px;
    }

    .about-content {
        width: 50%;
        padding: 50px;
    }

    .about-title {
        font-size: 2.3rem;
    }

    .about-description {
        font-size: 1.1rem;
        padding-left: 20px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-button {
        width: auto;
        padding: 14px 35px;
    }
}

/* Desktop için */
@media (min-width: 992px) {
    .about-image {
        height: 600px;
    }

    .about-content {
        padding: 60px;
    }

    .about-title {
        font-size: 2.8rem;
    }

    .about-badge {
        font-size: 1.1rem;
        padding: 10px 25px;
    }

    .years-experience {
        padding: 15px 30px;
        font-size: 1.8rem;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-image {
    animation: fadeIn 0.8s ease forwards;
}

.about-content {
    animation: fadeIn 1s ease forwards;
}
