/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(26, 52, 9, 0.9), rgba(45, 80, 22, 0.8)), 
                url('public/pictures/1000272781.jpg') center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 52, 9, 0.3), rgba(45, 80, 22, 0.3));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.about-hero .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.hero-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.hero-stats .stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #90EE90;
}

.hero-stats .stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Our Story Section */
.our-story {
    padding: 120px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-content h2 {
    font-size: 3rem;
    color: #1a3409;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.story-text {
    margin-bottom: 3rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fffe, #f0f8e8);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
}

.highlight-item i {
    color: #4a7c59;
    font-size: 2rem;
    margin-top: 0.5rem;
}

.highlight-item h4 {
    color: #1a3409;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.story-image {
    display: flex;
    justify-content: center;
}

.story-image .image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.3);
}

.story-image .image-placeholder {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.3);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.story-image .image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Mission & Values Section */
.mission-values {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f8e8, #e8f5e8);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: #1a3409;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 80, 22, 0.1), transparent);
    transition: left 0.6s;
}

.mission-card:hover::before {
    left: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(45, 80, 22, 0.2);
}

.card-icon {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.mission-card h3 {
    color: #1a3409;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.mission-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
}

.value-icon {
    background: linear-gradient(135deg, #f0f8e8, #e8f5e8);
    color: #4a7c59;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.value-item h4 {
    color: #1a3409;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.team-member {
    background: linear-gradient(135deg, #f8fffe, #f0f8e8);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(45, 80, 22, 0.2);
}

.member-image {
    margin-bottom: 2rem;
}

.member-image .image-placeholder {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.member-info h3 {
    color: #1a3409;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.member-role {
    color: #4a7c59;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.member-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.member-specialties span {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Why Choose Us About */
.why-choose-about {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f8e8, #e8f5e8);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.advantage-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 80, 22, 0.05), transparent);
    transition: left 0.6s;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(45, 80, 22, 0.2);
}

.advantage-icon {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.advantage-card h3 {
    color: #1a3409;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Service Areas About */
.service-areas-about {
    padding: 120px 0;
    background: white;
}

.areas-content {
    max-width: 1000px;
    margin: 0 auto;
}

.areas-text > p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 3rem;
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.area-column {
    background: linear-gradient(135deg, #f8fffe, #f0f8e8);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.area-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.15);
}

.area-column h4 {
    color: #1a3409;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(45, 80, 22, 0.1);
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column ul li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
}

.area-column ul li:hover {
    color: #4a7c59;
}

.area-column ul li:last-child {
    border-bottom: none;
}

.coverage-note {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.coverage-note p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.coverage-note a {
    color: #90EE90;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.coverage-note a:hover {
    color: white;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .hero-stats .stat-item {
        padding: 1.5rem 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .mission-card,
    .advantage-card,
    .team-member {
        padding: 2rem;
    }
    
    .area-column {
        padding: 2rem;
    }
    
    .coverage-note {
        padding: 2rem;
    }
}