/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

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

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav .logo img {
    height: 80px;
    margin-bottom: -1.5rem;
}

nav .hamburger {
    display: none;
    font-size: 2.5rem;
    color: #141414;
    background: none;
    border: none;
    cursor: pointer;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #141414;
    font-family: 'Montserrat', sans-serif;
    font-weight: 450;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFD700;
}

.nav-links .apply-now, 
.nav-links .get-quote {
    background: #800080;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.nav-links .apply-now:hover, 
.nav-links .get-quote:hover {
    background: #FF4500;
}

.nav-links.active {
    display: block;
    flex-direction: column;
}

/* Responsive Styles for Navigation */
@media screen and (max-width: 968px) {
    nav {
        padding: 0 1rem;
    }

    nav .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 1rem 0;
        text-align: center;
    }

    nav ul li a {
        padding: 1rem;
        display: block;
    }
}

/* Quote Section */
.quote-section {
    
    padding: 4rem 2rem;
    
    text-align: center;
}

.quote-section h2 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #141414;
}

.quote-section p {
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    color: #555;
    margin-bottom: 2rem;
}

.quote-form {
    max-width: 600px;
    background-color: #fff;
    margin: 0 auto;
    padding: 6rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #800080;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #FF4500;
}

/* Success Message */
.quote-success {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #28a745;
    font-family: 'Roboto', sans-serif;
}

/* Footer Styles */
footer {
    background-color: #444;
    color: #fff;
    padding: 2rem 0;
    font-family: 'Roboto', sans-serif;
}

.contact-us-section {
    background-color: #444;
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.map {
    flex: 1;
    max-width: 48%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact-info {
    flex: 1;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #ddd;
    display: flex;
    align-items: center;
}

.contact-info a {
    color: #f4f4f4;
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.5rem;
}

.contact-info a:hover {
    color: #FF4500;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #f4f4f4;
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    color: #aaa;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .map,
    .contact-info {
        max-width: 100%;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-info p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }
}
