:root {
    --primary-color: rgba(4, 221, 55, 0.76);
    --primary-dark: rgba(3, 180, 45, 0.9);
    --secondary-color: #333333;
    --light-color: #f8f9fa;
    --gray-color: #e9ecef;
    --text-color: #333;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo-text span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* Header Section */
.header {
    display: flex;
    min-height: 90vh;
    background-color: var(--light-color);
}


.header-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header-content h1 span {
    color: var(--primary-dark);
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
}

/* Section Common Styles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

/* How We Work Section */
.how-we-work {
    background-color: white;
}

.work-container {
    display: flex;
    align-items: center;
}

.work-features {
    flex: 1;
}



.feature-box {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    border-left: 5px solid var(--primary-color);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-box p {
    color: #666;
}

/* Services Section */
.services {
    background-color: var(--gray-color);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-container {
        grid-template-columns: repeat(6, 1fr);
    }
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: white;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    transition: all 0.3s;
}

.feature-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.feature-item:hover h3,
.feature-item:hover p {
    color: white;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-item p {
    color: #666;
}

.feature-item:hover i {
    color: white;
}

/* Service Area Section */
.service-area {
    background-color: var(--gray-color);
}

.cities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.city-box {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.city-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.service-list {
    list-style-type: none;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    background-color: var(--light-color);
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question .city {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px 30px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: white;
}

.faq-item.active .faq-question .city {
    color: white;
}

/* Additional Services */
.additional-services {
    background-color: var(--gray-color);
}

.service-alternating {
    margin-bottom: 80px;
}

.service-alternating:last-child {
    margin-bottom: 0;
}

.service-alternating .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-alternating:nth-child(even) .container {
    flex-direction: row-reverse;
}

.service-alternating-image {
    flex: 1;
    height: 400px;
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
}

.service-alternating-content {
    flex: 1;
}

.service-alternating-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Comprehensive Service */
.comprehensive-service {
    background-color: white;
}

.comprehensive-content {
    display: flex;
    gap: 50px;
}

.comprehensive-content>div {
    flex: 1;
}

.comprehensive-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Contact Section */
.contact {
    background-color: var(--gray-color);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-box {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-address {
    margin-bottom: 30px;
}

.footer-address h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-address p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid #444;
    width: 100%;
    color: #aaa;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header {
        flex-direction: column;
    }

    .header-content,
    .header-image {
        width: 100%;
    }

    .header-image {
        height: 400px;
    }

    .work-container,
    .service-alternating .container,
    .comprehensive-content {
        flex-direction: column;
    }

    .work-image {
        width: 100%;
        margin-top: 40px;
    }

    .service-alternating-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-content {
        padding: 40px 20px;
    }

    section {
        padding: 60px 0;
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .cities-container {
        grid-template-columns: 1fr;
    }
}
