/* About Page Specific Styles */

/* About Content Section */
.about-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23e9ecef" d="M0,0 L100,0 L100,100 L0,100 Z" opacity="0.05"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.about-content__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content__text {
    position: relative;
}

.about-content__text .section__subtitle {
    color: var(--primary-color);
    font-weight: var(--font-medium);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
}

.about-content__text .section__subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: var(--primary-color);
}

.about-content__text .section__title {
    font-size: 2.5rem;
    color: var(--title-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1rem;
}

.about-content__text .section__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.about-content__description {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-content__services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.about-content__services li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.about-content__services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.about-content__image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-content__image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-content__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: var(--transition);
}

.about-content__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.2) 0%, rgba(0, 100, 0, 0) 100%);
    z-index: 1;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content__image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 3rem 0;
    }
    
    .about-content__text .section__title {
        font-size: 2rem;
    }
    
    .about-content__services {
        grid-template-columns: 1fr;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content__text {
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-content__image {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}
