:root {
    --primary: #f4740b;
    --primary-dark: #d46309;
    --secondary: #333;
    --light: #f8f9fa;
    --dark: #222;
    --gray: #777;
    --light-gray: #eee;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--secondary);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 600px;
}

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

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

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

.logo-icon {
    color: var(--primary);
    font-size: 2.5rem;
    margin-right: 10px;
}

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

.logo-text p {
    font-size: 0.9rem;
    color: var(--gray);
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

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

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

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



.header-content {
    max-width: 600px;
}

.header h1 {
    color: #d46309;
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Service Sections */
.service-section {
    padding: 80px 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-content:nth-child(even) .service-text {
    order: 2;
}

.service-content:nth-child(even) .service-image {
    order: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-text h2 {
    margin-bottom: 20px;
}

.service-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

.feature-box {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

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

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

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

.faq-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question:hover {
    background-color: rgba(244, 116, 11, 0.05);
}

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

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

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

.faq-toggle {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.service-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item-content {
    padding: 25px;
}

.service-item h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.service-item p {
    color: var(--gray);
    margin-bottom: 15px;
}

.service-city {
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.service-city i {
    margin-right: 8px;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--gray);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-detail i {
    background-color: rgba(244, 116, 11, 0.1);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
}

.contact-map {
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 5px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-address h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-address p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

    .about-content,
    .service-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .service-content:nth-child(even) .service-text,
    .service-content:nth-child(even) .service-image {
        order: initial;
    }

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

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

    .header h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .header {
        padding: 150px 0 80px;
    }

    .header h1 {
        font-size: 2.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}





section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 600px;
}

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

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

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

.logo-icon {
    color: var(--primary);
    font-size: 2.5rem;
    margin-right: 10px;
}

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

.logo-text p {
    font-size: 0.9rem;
    color: var(--gray);
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

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

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

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



/* Service Areas Section */
.service-areas-section {
    background-color: var(--light);
}

.areas-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.areas-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.areas-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.service-areas-container {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.area-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: rgba(244, 116, 11, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.area-item:hover {
    background-color: rgba(244, 116, 11, 0.1);
    transform: translateX(5px);
}

.area-icon {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1.1rem;
}

.area-name {
    font-weight: 500;
    color: var(--dark);
}

.areas-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.areas-footer p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gray);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Complete Services Section - Horizontal Layout */
.complete-services-section {
    background-color: white;
}

.horizontal-services-container {
    max-width: 1000px;
    margin: 0 auto;
}

.horizontal-service {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.horizontal-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-number {
    flex: 0 0 80px;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    min-height: 150px;
}

.service-content {
    flex: 1;
    padding: 35px;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.service-icon {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.8rem;
}

.service-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background-color: rgba(244, 116, 11, 0.1);
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-location {
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.service-location i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .header h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-number {
        flex: 0 0 60px;
        font-size: 2rem;
        min-height: 120px;
    }

    .service-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .header {
        padding: 150px 0 80px;
    }

    .header h1 {
        font-size: 2.3rem;
    }

    .horizontal-service {
        flex-direction: column;
    }

    .service-number {
        width: 100%;
        min-height: 70px;
        flex: none;
    }

    .service-content {
        padding: 25px;
    }

    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 576px) {
    .service-areas-container {
        padding: 25px;
    }

    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .area-item {
        padding: 10px;
    }
}
