/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1491553895911-0055eca6402d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    margin-top: 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    animation: fadeInDown 1s ease;
}

.about-hero .subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.stats-counter {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: var(--light-gray);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
}

.timeline-item.active {
    opacity: 1;
    transform: translateX(10px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary);
}

.timeline-item.active::before {
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
}

.story-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    font-size: 0.9rem;
    text-align: center;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.mission::before {
    background: var(--primary);
}

.vision::before {
    background: var(--secondary);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    font-size: 2rem;
}

.vision .mv-icon {
    background: linear-gradient(135deg, var(--secondary), #0077cc);
}

.mv-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--gray);
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--dark);
}

.mission-list i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.vision-goals {
    display: grid;
    gap: 20px;
}

.goal {
    padding: 20px;
    background: rgba(0, 78, 137, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.goal h4 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.goal p {
    margin: 0;
    font-size: 1rem;
}

/* Our Values */
.our-values {
    padding: 100px 0;
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    transition: border-color 0.3s;
}

.value-card:hover::before {
    border-color: var(--primary);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s;
}

.value-card:hover .value-icon {
    transform: rotate(15deg) scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Our Team */
.our-team {
    padding: 100px 0;
}

.team-slider {
    padding: 20px;
}

.team-member {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.member-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
}

.member-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.bio {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.member-quote {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    position: relative;
}

.member-quote i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.member-quote p {
    font-style: italic;
    color: var(--dark);
    margin: 0;
    line-height: 1.6;
}

/* Milestones */
.milestones {
    padding: 100px 0;
    background: var(--light-gray);
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.milestone-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.milestone-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.milestone-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.milestone-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Sustainability */
.sustainability {
    padding: 100px 0;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sustainability-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.sustainability-text > p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.eco-initiatives {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.initiative {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.initiative-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #00d4aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.initiative-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.initiative-content p {
    color: var(--gray);
    line-height: 1.6;
}

.sustainability-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sustainability-image img {
    width: 100%;
    height: auto;
    display: block;
}

.eco-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--accent);
    box-shadow: var(--shadow);
}

.eco-badge i {
    font-size: 1.5rem;
}

/* Community Engagement */
.community {
    padding: 100px 0;
    background: var(--light-gray);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.community-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.community-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.community-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.community-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.learn-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: transform 0.3s;
}

.learn-more:hover {
    transform: translateX(5px);
    color: var(--secondary);
}

/* Testimonials */
.about-testimonials {
    padding: 100px 0;
}

.testimonials-slider {
    padding: 20px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.testimonial-author p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.cta-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-cta .btn {
    background: white;
    color: var(--primary);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.about-cta .btn:hover {
    background: var(--dark);
    color: white;
}

.about-cta .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.about-cta .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-content,
    .mv-grid,
    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero h1 {
        font-size: 2.8rem;
    }
    
    .stats-counter {
        gap: 40px;
    }
    
    .stat h3 {
        font-size: 2.8rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 80px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .stats-counter {
        gap: 30px;
    }
    
    .stat h3 {
        font-size: 2.2rem;
    }
    
    .stat p {
        font-size: 1rem;
    }
    
    .mv-card {
        padding: 30px 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .stats-counter {
        gap: 20px;
    }
    
    .stat {
        flex: 0 0 calc(50% - 20px);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item::before {
        left: -26px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}