/* About Section */
.about-section {
    background: var(--light-bg);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 48px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotateY(-5deg) translateZ(0);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.about-image-wrapper:hover {
    transform: rotateY(0deg) scale(1.03);
    box-shadow: 0 25px 60px rgba(45, 122, 62, 0.2);
}

.about-image-wrapper:hover::before {
    opacity: 1;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-text h3 {
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 16px;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 60%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about-text h4 {
    font-size: 22px;
    color: var(--gray-900);
    margin: 32px 0 12px;
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 17px;
}

.about-features-container {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.features-heading {
    text-align: center;
    font-size: 32px;
    color: var(--gray-900);
    margin-bottom: 40px;
    font-weight: 700;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-box {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--gray-200);
    text-align: right;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(45, 122, 62, 0.05) 0%, transparent 100%);
    transition: width 0.4s ease;
}

.feature-box:hover::before {
    width: 100%;
}

.feature-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(45, 122, 62, 0.15);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.feature-box:hover .feature-icon {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.2) rotate(360deg);
}

.feature-box h4 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.feature-box p {
    color: var(--gray-600);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .about-section {
        padding: 80px 0;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        order: -1;
        transform: none;
    }

    .about-image-wrapper:hover {
        transform: none;
    }
    
    .about-text h3 {
        font-size: 28px;
    }
    
    .about-text h4 {
        font-size: 20px;
    }

    .features-heading {
        font-size: 28px;
    }

    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-text h3 {
        font-size: 24px;
    }
    .about-text p {
        font-size: 16px;
    }
}