/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #364151;
    background-color: #FFFFFF;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Primary Color Variables */
:root {
    --primary-color: #78e323;
    --primary-hover: #6acc1f;
    --text-color: #364151;
    --heading-color: #0F172A;
    --bg-light: #E7F6FF;
    --bg-white: #FFFFFF;
    --border-color: #D1DAE5;
}

/* Header Styles */
.site-header {
    background-color: #0F172A;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.fusion-header {
    background-color: #0F172A;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

/* Logo */
.site-logo img {
    max-width: 200px;
    height: auto;
}

/* Main Navigation */
.main-navigation {
    display: flex;
}

    .main-navigation ul {
        list-style: none;
        display: flex;
        gap: 5px;
        margin: 0;
        padding: 0;
    }

    .main-navigation li {
        position: relative;
    }

    .main-navigation a {
        display: block;
        padding: 12px 20px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.3s;
    }

        .main-navigation a:hover,
        .main-navigation .current-menu-item a {
            color: var(--primary-color);
        }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
}

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #ffffff;
        margin: 5px 0;
    }

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-content {
    max-width: 800px;
    padding: 20px;
    color: #fff;
}

    .slide-content h1 {
        font-size: 60px;
        font-weight: 300;
        line-height: 1.2;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .slide-content .highlight {
        color: #ffc326;
        font-weight: 700;
    }

    .slide-content p {
        font-size: 22px;
        line-height: 1.4;
        margin-top: 20px;
    }

/* Info Bar */
.info-bar {
    background: var(--bg-white);
    padding: 30px 0;
    margin-top: -1px;
}

    .info-bar .container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 30px;
    }

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

.info-box {
    background: #78e323;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(120, 227, 35, 0.3);
    }

    .info-box i {
        font-size: 48px;
        color: #000000;
        margin-bottom: 15px;
    }

    .info-box h3 {
        font-size: 18px;
        font-weight: 600;
        color: #000000;
        margin-bottom: 5px;
    }

    .info-box p {
        font-size: 14px;
        color: #000000;
        font-weight: 600;
    }

    .info-box a {
        color: #000000;
        font-weight: 700;
    }

/* Main Content */
.site-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 30px;
}

.section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.3;
}

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

.about-image img {
    width: 100%;
    border-radius: 6px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .check-list li {
        padding: 10px 0;
        padding-left: 30px;
        position: relative;
    }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 18px;
        }

/* Stats Section */
.stats-section {
    background: #0F172A;
    padding: 60px 0;
    /*  margin: 0 -9999px;
    padding-left: 9999px;
    padding-right: 9999px;
    */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
}

.stat-box {
    text-align: center;
}

    .stat-box i {
        font-size: 48px;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .stat-box h3 {
        font-size: 36px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .stat-box p {
        font-size: 14px;
        color: #ffffff;
    }

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

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(120, 227, 35, 0.2);
        border-color: var(--primary-color);
    }

    .service-card img {
        width: 80px;
        height: auto;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--heading-color);
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.8;
        color: var(--text-color);
    }

/* CTA Section */
.cta-section {
    background-image: url('../images/towing-car-waiting.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 100px 30px;
    /*  margin: 0 -9999px;
    padding-left: 9999px;
    padding-right: 9999px;
    */
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1;
    }

    .cta-section > * {
        position: relative;
        z-index: 2;
    }

    .cta-section h2 {
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #fff;
    }

    .cta-section p {
        font-size: 18px;
        margin-bottom: 30px;
    }

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn:hover {
        background: var(--heading-color);
        color: #fff;
    }

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

    .gallery-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.3s;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

/* FAQ Section */
.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-list {
    margin-top: 0;
}

    .faq-list .section-subtitle {
        text-align: left;
    }

    .faq-list h2 {
        font-size: 32px;
        font-weight: 600;
        color: var(--heading-color);
        margin-bottom: 30px;
        text-align: left;
    }

.accordion-item {
    background: #f5f5f5;
    margin-bottom: 8px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

    .accordion-item.active {
        background: #ffffff;
        border-color: var(--primary-color);
        box-shadow: 0 3px 10px rgba(120, 227, 35, 0.15);
    }

.accordion-header {
    padding: 20px 60px 20px 25px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    font-size: 15px;
    color: var(--heading-color);
    transition: all 0.3s;
    background: transparent;
    display: flex;
    align-items: center;
}

.accordion-item.active .accordion-header {
    color: var(--primary-color);
    background: rgba(120, 227, 35, 0.05);
}

.accordion-header:hover {
    background: rgba(120, 227, 35, 0.08);
}

/* Arrow icon */
.accordion-header::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 10px 25px 25px;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 15px;
}

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

.contact-info .section-subtitle {
    text-align: left;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
    text-align: left;
}

.contact-info p {
    color: var(--text-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

    .contact-item i {
        font-size: 24px;
        color: var(--primary-color);
        margin-right: 15px;
        margin-top: 3px;
    }

    .contact-item h6 {
        font-size: 16px;
        font-weight: 600;
        color: var(--heading-color);
        margin-bottom: 5px;
    }

    .contact-item a {
        color: var(--heading-color);
    }

        .contact-item a:hover {
            color: var(--primary-color);
        }

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 6px;
}

    .contact-form h3 {
        font-size: 24px;
        font-weight: 600;
        color: var(--heading-color);
        margin-bottom: 25px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        font-size: 16px;
        font-family: inherit;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

.btn-primary {
    background: var(--primary-color);
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #0F172A, #1a202c);
    color: #fff;
    padding: 50px 0 0;
}

.footer-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-widget p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #bfbfbf;
}

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

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

        .footer-widget ul li a {
            color: #bfbfbf;
            transition: color 0.3s;
        }

            .footer-widget ul li a:hover {
                color: var(--primary-color);
            }

.footer-bottom {
    background: #070614;
    padding: 20px 0;
    text-align: center;
}

    .footer-bottom p {
        color: #8c8989;
        font-size: 14px;
    }

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

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

    .scroll-top.active {
        opacity: 1;
        visibility: visible;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .faq-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

        .main-navigation.active {
            display: block;
        }

        .main-navigation ul {
            flex-direction: column;
        }

        .main-navigation li {
            border-bottom: 1px solid var(--border-color);
        }

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

    /* Disable parallax on mobile for better performance */
    .cta-section {
        background-attachment: scroll;
        padding: 60px 30px;
    }

    .hero-slider {
        height: 400px;
    }

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

    .slide-content p {
        font-size: 16px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 544px) {
    .site-content {
        padding: 40px 15px;
    }

    .hero-slider {
        height: 300px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

/* Utility Classes */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}
