/* About Page Specific Styles */

.about-hero {
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.95), rgba(30, 64, 41, 0.95)),
        url('https://images.unsplash.com/photo-1599909533730-f9d7e5a3e3e5?w=1600') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out;
}

.about-section {
    padding: 80px 0;
}

.about-section.bg-light {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse>* {
    direction: ltr;
}

.about-text {
    max-width: 600px;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.about-list {
    list-style: none;
    margin: 25px 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-list i {
    color: var(--primary-green);
    font-size: 18px;
    margin-top: 2px;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Process Steps */
.process-steps {
    margin-top: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Our Values */
.our-values {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon-large {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 38px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* CTA Section */
.about-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    text-align: center;
    color: white;
}

.about-cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-large {
    padding: 18px 45px;
    font-size: 17px;
    background: white;
    color: var(--primary-green);
}

.btn-large:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content.reverse {
        direction: ltr;
    }

    .about-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-subtitle {
        font-size: 18px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-section {
        padding: 50px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-cta h2 {
        font-size: 32px;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 20px;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-cta h2 {
        font-size: 26px;
    }
}