/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600;700&display=swap');

/* Root Variables */
:root {
    --main-color: #df2728;
    --hover-color: #ff6200;
    --dark-bg: #282828;
    --light-bg: #f2f2f2;
    --white: #ffffff;
    --dark-gray: #333333;
    --text-light: #666666;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: capitalize;
    text-align: left;
    color: var(--dark-gray);
}

h2 {
    font-size: 2.5rem;
}

p {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-gray);
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 60px 0;
}

section:nth-child(odd) {
    background-color: var(--white);
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo img {
    width: 50px;
    height: auto;
}

.nav-logo-text {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--main-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--main-color);
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    background-color: var(--hover-color);
    color: var(--white);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1001;
    border-radius: 5px;
    right: 0;
}

.dropdown-content a {
    color: var(--main-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 600;
}

.dropdown-content a:hover {
    background-color: var(--hover-color);
    color: var(--white);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.chevron {
    margin-left: 5px;
    font-size: 12px;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--main-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 40px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 15px;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    width: 400px;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.cta-primary {
    background-color: var(--main-color);
    color: var(--white);
}

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

.cta-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-secondary:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}

/* Banner Section */
.banner {
    background-color: var(--main-color) !important;
    text-align: center;
}

.banner-text {
    color: var(--white);
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.banner .cta-primary {
    background-color: black;
    color: var(--white);
}

.banner .cta-primary:hover {
    background-color: var(--hover-color);
}

/* Footer */
.footer {
    background-color: var(--dark-bg) !important;
    padding: 40px 0;
}

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

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 200px;
}

.footer-logo-text {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--main-color);
}

.footer-right {
    flex: 1;
    max-width: 400px;
}

.map-embed {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.card i {
    font-size: 60px;
    color: var(--main-color);
    margin-bottom: 20px;
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* About Section */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
}

.bbb-section {
    margin-top: 30px;
    text-align: left;
}

.bbb-section p {
    margin-bottom: 15px;
}

.bbb-section img {
    height: 80px;
    width: auto;
}

/* FAQ Accordion */
.faq-item {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-item:first-of-type {
    margin-top: 40px;
}

.faq-question {
    background-color: var(--main-color);
    color: var(--white);
    padding: 20px;
    cursor: pointer;
    margin: 0;
    font-size: 1.2rem;
    position: relative;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
}

.faq-question.active:after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 20px;
    background-color: var(--white);
    border: 1px solid #ddd;
}

.faq-answer.active {
    display: block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
}

.modal-header {
    background-color: var(--main-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
    position: relative;
}

.modal-header h3 {
    margin: 0;
    color: var(--white);
}

.close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    opacity: 0.7;
}

.modal-iframe {
    width: 100%;
    height: 550px;
    border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1000px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        max-width: 100%;
        order: 2;
    }

    .footer-left {
        order: 1;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

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

    h2 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

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

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

    .hamburger {
        display: flex;
    }

    .cta-btn {
        width: 100%;
    }

    .footer-left {
        width: 100%;
    }

    .footer-right {
        width: 100%;
    }

    .footer-left .cta-btn {
        width: 100%;
    }

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

    .hero-content {
        padding: 20px;
    }
}

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

    section {
        padding: 40px 0;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 16px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

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