/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;600;700;800&display=swap');

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

:root {
    --main-color: #ff7200;
    --main-hover-color: #ffae00;
    --light-gray: #f2f2f2;
    --dark-gray: #333333;
    --footer-dark: #282828;
    --white: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: capitalize;
    text-align: left;
    line-height: 1.3;
}

h1 {
    font-size: 18px;
    color: var(--main-color);
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

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

/* Sections */
section {
    padding: 40px 0;
    position: relative;
}

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

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

/* Navigation */
nav {
    background-color: var(--white);
    padding: 10px 0;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--main-color);
}

.logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.company-name {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--main-color);
    text-decoration: none;
}

.menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.menu > li {
    position: relative;
    margin-left: 30px;
}

.menu a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 5px;
}

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

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 5px;
    top: 100%;
    left: 0;
}

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

.dropdown-content a {
    padding: 12px 16px;
    display: block;
    border-bottom: 1px solid #eee;
}

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

.chevron {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .chevron {
    transform: rotate(180deg);
}

/* Sub-dropdowns */
.sub-dropdown {
    position: relative;
}

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

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

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

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

.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.4;
}

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

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

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

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

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

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

/* Banner Section Buttons */
.banner .btn-primary {
    background-color: #000;
    color: var(--white);
}

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

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

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

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

.card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 60px;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

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

.about-text h2 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

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

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

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

.review-card .card-icon {
    color: var(--main-color);
    margin-bottom: 1rem;
}

.review-card .reviewer-name {
    font-style: italic;
    color: var(--main-color);
    font-weight: 600;
    margin-top: 1rem;
}

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

.banner p {
    font-size: 25px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.service-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-card-content {
    padding: 20px;
}

.service-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* FAQs */
.faq-container {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--main-color);
    color: var(--white);
    padding: 20px;
    cursor: pointer;
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-answer {
    background-color: var(--white);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

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

.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--main-color);
    margin-bottom: 2rem;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

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

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

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

.modal-header {
    background-color: var(--main-color);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.close {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: static;
}

.close:hover {
    color: #ddd;
}

.modal iframe {
    width: 100%;
    height: calc(100% - 60px);
    border: none;
    border-radius: 0 0 10px 10px;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .cta-buttons {
        justify-content: center;
    }

    .btn-primary, .btn-secondary {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

    h2 {
        font-size: 2rem;
    }

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

@media (max-width: 750px) {
    .menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 20px;
        z-index: 999;
        overflow-y: auto;
    }

    .menu.active {
        left: 0;
    }

    .menu > li {
        margin: 10px 0;
        width: 90%;
    }

    .menu a {
        width: 100%;
        text-align: center;
        padding: 15px;
        border: 1px solid var(--light-gray);
        border-radius: 5px;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background-color: var(--light-gray);
        width: 100%;
        margin-top: 10px;
    }

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

    .sub-dropdown-content {
        position: static;
        right: auto;
        background-color: #e0e0e0;
        margin-left: 20px;
        display: none;
    }

    .sub-dropdown.active .sub-dropdown-content {
        display: block;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

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

    .hero-content {
        padding: 20px;
    }

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

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

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

    section, .hero {
        padding: 30px 0;
    }

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

    h2 {
        font-size: 1.8rem;
    }

    .card, .review-card, .service-card {
        padding: 20px;
    }
}

/* Privacy Policy and Terms & Conditions Full Width */
.full-width-content {
    width: 100%;
    max-width: none;
}

.full-width-content h2 {
    margin-bottom: 2rem;
}

.full-width-content p,
.full-width-content ul,
.full-width-content ol {
    width: 100%;
    margin-bottom: 1.5rem;
}

.full-width-content li {
    margin-bottom: 0.5rem;
}