/* About Page Styles */

/* Active navigation item */
.active {
    color: #44BBA4 !important;
}

/* About Hero Section */
.about-hero {
    height: 400px;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 80px;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(52, 58, 63, 0.9));
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About Content Section */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    margin-bottom: 80px;
}

.about-text h2 {
    color: #343A3F;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #44BBA4;
}

.about-text p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
}

.about-image {
    position: relative;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-box {
    background-color: #44BBA4;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(68, 187, 164, 0.3);
}

.experience-box .years {
    font-size: 4rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-box .text {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 40px 0 80px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #44BBA4;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.reason-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-card i {
    font-size: 2.5rem;
    color: #44BBA4;
    margin-bottom: 20px;
}

.reason-card h3 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #343A3F;
}

.reason-card p {
    color: #666;
    line-height: 1.7;
}

/* Service Areas Section */
.service-areas {
    padding: 40px 0 80px;
    text-align: center;
}

.service-areas h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.service-areas h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #44BBA4;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.service-areas p {
    max-width: 800px;
    margin: 30px auto;
    color: #555;
    line-height: 1.7;
}

.service-area-map {
    height: 300px;
    background: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    position: relative;
    margin: 40px 0;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.area-badge {
    background-color: #44BBA4;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(68, 187, 164, 0.3);
}

/* Contact CTA Section */
.contact-cta {
    padding: 60px;
    background-color: #343A3F;
    color: white;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 40px;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.contact-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ccc;
    line-height: 1.7;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.contact-buttons .btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-buttons i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 400px;
        order: -1;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-cta {
        padding: 40px 20px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-image {
        height: 300px;
    }
    
    .reason-card {
        padding: 30px 20px;
    }
}

/* Footer Styles */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-align: center;
    width: 100%;
}

.footer-contact-info {
    color: #ccc;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-contact-info h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.footer-contact-info ul {
    margin-bottom: 25px;
}

footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background-color: #44BBA4;
    color: white;
    transform: translateY(-3px);
}

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