
:root {
    --primary: #ed031a;
    --primary-dark: #c00215;
    --secondary: #333333;
    --light: #f9f9f9;
    --gray: #777777;
    --light-gray: #f0f0f0;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

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

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

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

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

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

section {
    padding: 80px 0;
}

.section-title-center {
    text-align: center;
}

.section-title-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

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

/* Navbar */
nav {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

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

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: 10px;
}

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

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

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

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
}

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

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}



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

.header-content {
    flex: 1;
    padding-right: 40px;
}

.header-content h1 {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
    max-width: 600px;
}

.header-image {
    flex: 1;
    text-align: right;
}

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

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-content {
    flex: 1;
    padding-right: 40px;
}

.about-image {
    flex: 1;
}

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

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

.feature-box h3 {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Stats */
.stats {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0;
}

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

.stat-item {
    flex: 1;
    padding: 0 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

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

/* CTA Section */
.cta {
    background-color: var(--light);
    text-align: center;
}

.cta h2 {
    margin-bottom: 1.5rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: var(--gray);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    transition: var(--transition);
}

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

.service-icon {
    background-color: var(--primary);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.8rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-gray);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #e8e8e8;
}

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

.faq-answer p {
    padding-bottom: 25px;
}

.faq-city {
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px;
}

/* Areas Section */
.areas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.area-tag {
    background-color: var(--light-gray);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
}

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

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

.add-services-content {
    flex: 1;
    padding-right: 40px;
}

.add-services-image {
    flex: 1;
}

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

/* Contact Section */
.contact-container {
    display: flex;
    justify-content: space-between;
}

.contact-map {
    flex: 1;
    margin-right: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.contact-icon {
    background-color: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

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

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

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

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

.footer-info {
    flex: 1;
}

.footer-links {
    flex: 1;
}

.footer-links h3 {
    color: var(--white);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

    .header-container,
    .about-container,
    .add-services-container,
    .contact-container {
        flex-direction: column;
    }

    .header-content,
    .about-content,
    .add-services-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

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

    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-map {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--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-toggle {
        display: block;
    }

    h2 {
        font-size: 2rem;
    }

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

    section {
        padding: 60px 0;
    }
}



        
        
/* COMPREHENSIVE SERVICES SECTION */
#comprehensive-services {
    background-color: var(--light);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-header h2 {
    margin-bottom: 1.5rem;
}

.services-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

/* Individual Service Row - Each in its own row */
.service-row {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-height: 300px;
}

.service-row:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    box-shadow: 0 6px 15px rgba(237, 3, 26, 0.25);
}

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

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

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

.feature-tag {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-image {
    flex: 1;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

/* Alternate layout for odd/even rows */
.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Service Call-to-Action */
.service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--light-gray);
}

.service-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

/* Why Choose Us Section */
#why-choose {
    background: linear-gradient(135deg, var(--secondary) 0%, #444 100%);
    color: var(--white);
}

#why-choose h2 {
    color: var(--white);
}

#why-choose h2:after {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
}

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

/* Contact Banner */
.contact-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}

.contact-banner h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-banner h2:after {
    background-color: var(--white);
}

.contact-banner p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

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

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

/* Responsive Design */
@media (max-width: 1100px) {
    .service-content {
        padding: 40px;
    }
    
    .service-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
    }
    
    .header-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .header-content h1 {
        font-size: 2.8rem;
    }
    
    .service-row, .service-row:nth-child(even) {
        flex-direction: column;
    }
    
    .service-image {
        width: 100%;
        min-height: 250px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2.3rem;
    }
    
    .header-content h1 {
        font-size: 2.3rem;
    }
    
    .service-content {
        padding: 30px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .service-cta {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 2rem;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
}
