

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #80df04;
    --primary-dark: #6bc300;
    --primary-light: #a6ff3e;
    --dark: #222222;
    --gray: #666666;
    --light: #f8f9fa;
    --white: #ffffff;
}

body {
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo h1 {
    color: var(--dark);
    font-size: 28px;
    font-weight: 800;
}

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

.logo .location {
    font-size: 12px;
    color: var(--gray);
    margin-left: 8px;
    font-weight: normal;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary);
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
}

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

.nav-links a:hover:after {
    width: 100%;
}

.btn {
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(128, 223, 4, 0.3);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(128, 223, 4, 0.4);
}

/* Header/Hero Section */


.hero-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    color: #e0e0e0;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: var(--primary);
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 5px;
    background: var(--primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

.section-title p {
    color: var(--gray);
    font-size: 18px;
    max-width: 700px;
    margin: 25px auto 0;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--light);
}

.why-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-text,
.why-features {
    flex: 1;
}

.why-text h3 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.why-text p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    background-color: rgba(128, 223, 4, 0.15);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 24px;
}

.feature-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-content p {
    color: var(--gray);
    font-size: 16px;
}

/* Stats Section */
.stats {
    background-color: var(--dark);
    color: var(--white);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 60px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-text {
    font-size: 20px;
    font-weight: 500;
}

/* Services Section */
.services-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.services-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

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

.services-tabs {
    flex: 1;
}

.tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 14px 24px;
    background: var(--light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    min-width: 150px;
}

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

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-item h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-item h4 i {
    color: var(--primary);
    margin-right: 10px;
}

.service-item p {
    color: var(--gray);
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light);
}

.faq-content {
    display: flex;
    gap: 60px;
}

.faq-questions {
    flex: 1;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 22px 25px;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question.active {
    background-color: rgba(128, 223, 4, 0.1);
    color: var(--primary);
}

.faq-question .city {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    background: rgba(128, 223, 4, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 10px;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer.active {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
}

.faq-icon {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-description {
    flex: 1;
    background: var(--primary);
    border-radius: 15px;
    padding: 40px;
    color: var(--dark);
    box-shadow: 0 15px 30px rgba(128, 223, 4, 0.2);
}

.faq-description h3 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.faq-description p {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.faq-description ul {
    margin-left: 20px;
    margin-bottom: 30px;
}

.faq-description li {
    margin-bottom: 12px;
    font-size: 16px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-column h3 span {
    color: var(--primary);
}

.footer-column p {
    color: #bbb;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

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

.footer-links i {
    margin-right: 10px;
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 46px;
    }

    .why-content,
    .services-content,
    .faq-content {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .header {
        padding-top: 140px;
        height: auto;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .tabs-header {
        flex-direction: column;
    }
}



/* Service Area Section Styles */
.service-area {
    padding: 100px 0;
    background-color: var(--white);
}

.service-area-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.area-description {
    flex: 1;
}

.area-description h3 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 25px;
}

.area-description p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.areas-list h4 {
    font-size: 20px;
    color: var(--dark);
    margin: 25px 0 10px;
    display: flex;
    align-items: center;
}

.areas-list h4 i {
    margin-right: 10px;
}

.areas-list p {
    background-color: var(--light);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    font-size: 16px;
    line-height: 1.6;
}

.service-notice {
    background-color: rgba(128, 223, 4, 0.1);
    border: 1px solid rgba(128, 223, 4, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.area-image {
    flex: 1;
}

.map-placeholder {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 30px;
}

.map-overlay h4 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 10px;
}

.area-highlights {
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.highlight-item i {
    color: var(--primary);
    margin-right: 10px;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    background-color: rgba(128, 223, 4, 0.15);
    color: var(--primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 20px;
}

.service-card p {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.service-features li i {
    margin-right: 10px;
}

/* Detailed Services Styles */
.detailed-service-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.detailed-service-item.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content h3 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.service-number {
    background-color: var(--primary);
    color: var(--dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-weight: 800;
    font-size: 24px;
    flex-shrink: 0;
}

.service-detail-content p {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-box {
    background-color: var(--light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.feature-box h4 {
    font-size: 18px;
    color: var(--dark);
    margin: 15px 0 10px;
}

.feature-box p {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.service-detail-image {
    flex: 1;
}

.image-placeholder {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 30px;
}

.image-overlay h4 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 15px;
}

.image-overlay ul {
    list-style: none;
}

.image-overlay li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.image-overlay li i {
    color: var(--primary);
    margin-right: 10px;
}

/* Contact Section Styles */
.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-map {
    flex: 1;
}

.map-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.map-info {
    padding: 30px;
}

.map-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.map-info h3 i {
    margin-right: 10px;
}

.map-info p {
    margin-bottom: 15px;
    color: #bbb;
    line-height: 1.6;
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-details i {
    margin-right: 10px;
    width: 20px;
}

.map-visual {
    height: 300px;
}

.map-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.map-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.contact-info {
    flex: 1;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-item h4 i {
    margin-right: 10px;
}

.info-item p {
    color: #bbb;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {

    .service-area-content,
    .detailed-service-item,
    .detailed-service-item.reverse,
    .contact-content {
        flex-direction: column;
    }

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

    .feature-boxes {
        grid-template-columns: 1fr;
    }
}

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

    .section-title h2 {
        font-size: 32px;
    }

    .area-description h3,
    .service-detail-content h3 {
        font-size: 28px;
    }
}
