@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Base */
html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 65px 0 0 0; 
    background-color: #ffffff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: auto; 
}

/* Header / Navbar */
header {
    background-color: #111; 
    height: 70px;
    width: 100%;
    position: fixed; 
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}
.nav-menu li {
    margin-left: 2rem;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #0066cc;
}

@media (max-width: 768px) {
    .hamburger {
        display: block; 
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%; 
        top: 70px; 
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95); 
        backdrop-filter: blur(5px); 
        width: 100%;
        height: calc(100vh - 70px); 
        text-align: center;
        transition: 0.4s ease-in-out; 
        justify-content: flex-start; 
        padding-top: 50px;
        gap: 40px; 
        box-shadow: 0 10px 10px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        left: 0; 
    }

    .nav-menu li {
        margin: 0;
    }
    .nav-menu li a {
        font-size: 1.5rem; 
        display: block;
    }
    
    .nav-menu li a:hover {
        background-color: #555;
    }
}

/* Hero */
.hero {
    min-height: 100vh; 
    width: 100%;
    background-image: url('Images/heroimage1.png');
    background-size: cover;
    background-position: center;
    position: relative; 
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.7); 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

.hero1 {
    min-height: 100vh; 
    width: 100%;
    background-image: url('Images/workshop.jfif');
    background-size: 100% 100%;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay1 {
   background-color: rgba(0, 0, 0, 0.5); 
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem; 
    margin-bottom: 10px;
    font-weight: 700;
}

.hero p {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    position: relative;
    z-index: 40;
}

.hero-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

#appointment-form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 50;
    width: 300px;
    max-width: 90%;
}

.close-form {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

#appointment-form-container form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#appointment-form-container label {
    font-weight: bold;
    color: #333;
}

#appointment-form-container input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#appointment-form-container button {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#appointment-form-container button:hover {
    background-color: #0056b3;
}

/* Services */
.services-overview {
    padding: 60px 20px;
    background-color: #ffffff;
}

.services-overview h2 {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #2b2b2b; 
    border-radius: 10px;
    padding: 20px;
    padding-top: 0;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.service-item h3 {
    color: #ffffff; 
    margin: 15px 0 10px 0;
    font-size: 1.2rem;
}

.service-item p {
    color: #ffffff; 
    margin: 0;
    font-size: 0.9rem;
}

/* Chat Launcher Button */
#chat-launcher {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #0066b1;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 18px; 
    font-weight: bold;
    cursor: pointer;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: background 0.3s;
    display: none; 
}

/* Chat Window */
#chat-window {
    display: flex; 
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 430px;  
    height: 85vh;  
    max-height: 932px;
    background-color: white;
    border-radius: 25px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1001;
    overflow: hidden;
    flex-direction: column;
    border: 4px solid #333; 
}

@media (max-width: 768px) {
    #chat-window {
        width: 95vw; 
        right: 10px; 
        bottom: 10px; 
    }
}

.chat-header {
    background-color: #333;
    color: white;
    padding: 20px;
    font-size: 1.2rem;
}

.chat-messages {
    padding: 20px;
    font-size: 16px; 
    flex: 1;
    overflow-y: auto;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.bot-message {
    background-color: #e0e0e0;
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.user-message {
    background-color: #0066b1;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.chat-input-area {
    display: flex;
    padding: 20px;
    border-top: 1px solid #ddd;
    background: white;
}

.chat-input-area input {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    margin-right: 10px;
}

.chat-input-area button {
    background: none;
    border: none;
    color: #0066b1;
    font-size: 18px;
    cursor: pointer;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Listings Page */
.listings {
    flex-grow: 1;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.listing-item {
    background-color: #2b2b2b;
    border-radius: 10px;
    padding: 20px;
    padding-top: 0;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.listing-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.listing-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.listing-item h3 {
    color: #ffffff;
    margin: 15px 0 10px 0;
    font-size: 1.2rem;
}

.listing-item p {
    color: #ffffff;
    margin: 0;
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose-us {
    min-height: 50vh;
    width: 100%;
    background-image: url('Images/workshop.jfif');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
}

.why-choose-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-choose-overlay p, .why-choose-overlay ul {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
}

.why-choose-overlay ul {
    text-align: left;
    color: #ffffff;
}

.why-choose-overlay li {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* About Page Section */
.about {
    position: relative; 
    background-image: url('Images/workshop.jfif');
    background-size: cover;
    background-position: center;
    min-height: 60vh; 
    padding: 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-overlay {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
}

.about-overlay h1, 
.about-overlay p {
    color: #ffffff !important; 
    text-align: center;
    max-width: 800px;
    z-index: 2; 
    margin: 0;
}

.about-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-overlay p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.customer-services {
    padding: 4rem 2rem;
    position: relative;
    background-size: 100vw auto;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.customer-services .book-appointment-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
}

.customer-services .book-appointment-btn:hover {
    background-color: #128c7e;
}

.book-appointment-btn.whatsapp-btn {
    background-color: #25D366; 
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px; 
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.book-appointment-btn.whatsapp-btn:hover {
    background-color: #128C7E; 
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.book-appointment-btn.whatsapp-btn:active {
    transform: translateY(-1px);
}

.book-appointment-btn.whatsapp-btn i, 
.book-appointment-btn.whatsapp-btn img {
    filter: brightness(0) invert(1); 
}

/* Map and Contact Form Side by Side */
.map-contact-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 4rem 0;
}

.map-contact-container .location-map,
.map-contact-container .contact-us {
    flex: 1;
    padding: 0;
}

.map-contact-container .contact-us {
    text-align: left;
}

/* Contact Us Section */
.contact-us {
    padding: 4rem 2rem;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-us h2 {
    color: #333333;
    margin-bottom: 2rem;
    font-size: 2rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0;
}

.name-phone-row {
    display: flex;
    gap: 1rem;
}

.name-phone-row div {
    flex: 1;
}

#contact-form label {
    font-weight: bold;
    color: #333333;
    text-align: left;
}

#contact-form input,
#contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

#contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

#contact-form button {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #0056b3;
}

/* ========================= */
/* ELFSIGHT REVIEWS WIDGET   */
/* ========================= */
.widget-section { 
    padding: 60px 20px; 
    background-color: #f5f5f5; 
    min-height: 500px; /* Gives the widget room to load smoothly */
}

.widget-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================= */
/* FOOTER                    */
/* ========================= */
.site-footer {
    background-color: #333333;
    color: #ffffff;
    padding: 2rem 3rem 1rem;
    margin-top: 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a.active {
    color: #0066cc;
}

.footer-logo img {
    width: 250px; height: 60px;
}

.footer-contact {
    display: flex;
    gap: 30px;
    text-align: left;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.footer-contact strong {
    color: #0066cc;
    font-weight: 600;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 0.85rem;
    color: #cccccc;
}

/* Floating Contact Button */
#contact-launcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

#contact-launcher:hover {
    background-color: #0056b3;
}

.submenu {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-left: 20px;
}

.submenu button {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    min-width: 180px;
}

.submenu button:hover {
    background-color: #e9ecef;
}

/* WhatsApp Widget Styles */
#whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    height: 450px;
    background-color: #e5ddd5; 
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    z-index: 2000;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.wa-left { display: flex; align-items: center; gap: 10px; }
.wa-left img { width: 35px; }
.wa-info { display: flex; flex-direction: column; }
.wa-name { font-weight: bold; font-size: 14px; }
.wa-status { font-size: 11px; opacity: 0.8; }

.wa-close { background: none; border: none; color: white; font-size: 22px; cursor: pointer; }

.wa-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-image: url('Images/2020-bmw-x5-m50i-1.webp.png')
}

#wa-input {
    flex: 1;
    border: none;
    padding: 10px;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
}

#wa-launcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: none; 
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1999;
}

.contact-actions {
    position: relative;
    margin-top: 20px;
    display: inline-block;
}

.main-contact-btn {
    background-color: #0066b1;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

#contact-menu {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: fixed;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    right: 0;
    bottom: 60px;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    overflow: hidden;
}

.menu-header {
    background: #333;
    color: white;
    padding: 12px;
    font-size: 14px;
    text-align: center;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-option:hover { background: #f9f9f9; }

.contact-option i {
    font-size: 20px;
    color: #0066b1;
    width: 30px;
}

.option-text { display: flex; flex-direction: column; flex: 1; }
.option-text strong { font-size: 14px; }
.option-text span { font-size: 12px; color: #666; }

.arrow-icon { font-size: 12px !important; color: #ccc !important; }

#wa-number-selector {
    display: none; 
    background: #f4f4f4;
    padding: 10px;
}

.wa-num {
    display: block;
    padding: 10px;
    color: #25d366;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.wa-num i { margin-right: 8px; font-size: 14px; }
.wa-num:hover { background: #e8e8e8; }

.wa-header {
    background: #075e54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar img { width: 35px; }
.wa-chat-info { flex: 1; display: flex; flex-direction: column; }
.wa-chat-body {
    padding: 20px;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    height: 120px;
}

.wa-msg {
    background: white;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    position: relative;
    max-width: 90%;
}

.wa-time { font-size: 10px; color: #999; display: block; text-align: right; margin-top: 5px; }

.wa-footer {
    background: white;
    padding: 15px;
}

.rep-btn {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid #25d366;
    background: #25d366;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
}

.wa-call-link {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #0066b1;
    text-decoration: none;
    margin-top: 10px;
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff; 
    color: #333333; 
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #ff0000; 
    text-decoration: none;
}

#appointment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#appointment-form label {
    font-weight: bold;
    color: #333333; 
    font-size: 0.9rem;
    margin-bottom: -10px;
}

#appointment-form input {
    padding: 12px;
    border: 1px solid #ddd; 
    border-radius: 8px;
    font-size: 16px;
    background-color: #ffffff; 
    color: #333333; 
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#appointment-form input:hover {
    border-color: #0066cc;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
}

#appointment-form input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
}

#appointment-form button[type="submit"] {
    background-color: #0066cc; 
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s, transform 0.2s;
}

#appointment-form button[type="submit"]:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

#appointment-form button[type="submit"]:active {
    transform: translateY(0);
}

.chat-with-us-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.chat-with-us-btn:hover {
    background-color: #128c7e;
}

.chat-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background-color: #e5ddd5;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 2000;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.chat-popup-header {
    background-color: #075e54;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.chat-popup-body {
    padding: 20px;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: cover;
    text-align: center;
}

.chat-popup-body p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
}

.chat-option {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.chat-option:hover {
    background-color: #128c7e;
}

.whatsapp-launcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-launcher:hover {
    background-color: #1ebc57;
}

.whatsapp-widget {
    display: none; 
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 1001;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.whatsapp-header {
    background-color: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    color: #075E54;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.wa-header-info {
    flex-grow: 1;
}

.whatsapp-body {
    height: 250px;
    background-color: #e5ddd5; 
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wa-message {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    position: relative;
}

.wa-message.bot {
    align-self: flex-start;
    background-color: white;
    border-top-left-radius: 0;
}

.wa-message.user {
    align-self: flex-end;
    background-color: #dcf8c6;
    border-top-right-radius: 0;
}

.whatsapp-footer {
    padding: 10px;
    background-color: #f0f0f0;
    display: flex;
    gap: 10px;
}

.whatsapp-footer input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 20px;
    outline: none;
}

.wa-send {
    background-color: #075E54;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-quote-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: #0066cc; 
    color: white;
    padding: 15px 25px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 2001; 
    border-radius: 5px 5px 0 0;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sticky-quote-btn:hover {
    background-color: #111;
    padding-right: 35px;
}

.quote-modal {
    display: none; 
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.quote-modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-quote {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.quote-modal-content label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
}

.quote-modal-content input, 
.quote-modal-content select, 
.quote-modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

/* ========================= */
/* GLOBAL MOBILE MEDIA QUERY */
/* ========================= */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .contact-us {
        padding: 2rem 1rem;
    }

    .contact-us h2 {
        font-size: 1.5rem;
    }

    #contact-form {
        max-width: 100%;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        flex-direction: column;
        gap: 10px;
    }

    .listings {
        margin-left: 10px;
    }
    
    .map-contact-container {
        flex-direction: column;
        padding: 16px;
        gap: 24px;
    }

    .location-map iframe {
        width: 100%;
        height: 280px;
        max-width: 400px;
    }

    .contact-us {
        width: 100%;
        max-width: 100%;
        padding: 16px;
        box-sizing: border-box;
        transform: none; 
    }

    #contact-form {
        width: 100%;
    }

    #contact-form input,
    #contact-form textarea,
    #contact-form button {
        width: 100%;
        box-sizing: border-box;
        font-size: 15px;
    }

    .name-phone-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .about {
        min-height: 80vh;
    }
    
    #contact-menu {
        width: 95vw; 
        right: 10px; 
        bottom: 80px; 
    }
    
    .modal-content {
        margin: 15% auto;
        padding: 20px;
        width: 95%;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .chat-with-us-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .chat-popup {
        width: 95%;
        max-width: 350px;
    }
    
    .sticky-quote-btn {
        top: auto;
        bottom: 0;
        right: 0;
        transform: none;
        width: 100%;
        text-align: center;
        border-radius: 0;
    }
}