/* ======================================
        ||         FULL STYLESHEET           ||
        ====================================== */

/* Shared Styles */

.whatsappbtn {
    background-color: #25D366;
    border: none;
}

.whatsappbtn:hover {
    background-color: #128C7E;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    cursor: pointer;
}

/* --- Floating Buttons Container --- */

.floating-contact-btn {
    position: fixed;
    bottom: 20px;
    /* Space from the bottom */

    right: 20px;
    /* Space from the right */

    display: flex;
    flex-direction: column;
    align-items: center;
    /* Aligns items to the center of the container */

    gap: 10px;
    /* Creates space between the buttons */

    z-index: 1050;
}

/* Floating Button Styles */

.floating-contact-btn > div, .floating-contact-btn > a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    text-decoration: none;
    /* For the link element */

}

.floating-contact-btn > div:hover, .floating-contact-btn > a:hover {
    transform: scale(1.1);
}

.floating-whatsapp-btn {
    background-color: #25D366;
}

.floating-phone-btn {
    background-color: #34B7F1;
}

.floating-contact-btn img {
    width: 40px;
}

.floating-contact-btn i {
    color: white;
    font-size: 2rem;
}

.icon-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Modal Overlay and Container */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-content-wrapper {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(-50px);
    opacity: 0;
}

.modal-overlay.show .modal-content-wrapper {
    transform: translateY(0);
    opacity: 1;
}

/* Modal Header */

.modal-header {
    background-color: #25D366;
    color: white;
    padding: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h5 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.modal-header .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

/* Modal Body */

.modal-body {
    padding: 1.5rem;
}

/* Form Styling */

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

.form-label {
    font-weight: 500;
    color: #4a4a4a;
    display: block;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-submit {
    background-color: #25d366;
    border: none;
    font-weight: bold;
    color: white;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    width: 100%;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.btn-submit:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

/* Corner Modal Specific Styles */

.corner-modal-overlay {
    justify-content: flex-end;
    align-items: flex-end;
    padding: 20px;
}

.corner-modal-overlay .modal-content-wrapper {
    width: 100%;
    max-width: 400px;
    transform: translateY(50px);
    margin: 0;
}

/* --- MOBILE RESPONSIVE STYLES --- */

@media (max-width: 768px) {
    .floating-contact-btn {
        bottom: 2rem;
        /* Space from the bottom on mobile */

        right: 1rem;
        /* Space from the right on mobile */

        gap: 0.75rem;
    }

    .floating-contact-btn > div, .floating-contact-btn > a {
        width: 50px;
        height: 50px;
    }

    .floating-contact-btn img {
        width: 35px;
    }

}

.seo-location-section {
    padding:24px 0 34px;
    background:#fff
}

.seo-location-heading {
    background:#f57c32;
    color:#fff;
    text-align:center;
    font-size:28px;
    padding:12px 15px;
    margin:0 0 28px
}

.seo-location-card {
    background:#fff;
    padding:20px;
    box-shadow:0 10px 28px rgba(0,0,0,.10);
    height:100%
}

.seo-location-toggle {
    width:100%;
    border:0;
    border-radius:8px;
    background:#fff1e9;
    color:#111;
    font-weight:700;
    font-size:18px;
    padding:14px;
    cursor:pointer
}

.seo-location-links {
    list-style:none;
    padding:10px 0 0;
    margin:0
}

.seo-location-links li {
    display:flex;
    align-items:flex-start;
    gap:10px;
    border-bottom:1px solid #eee;
    padding:8px 0;
    line-height:1.35
}

.seo-location-links li:last-child {
    border-bottom:0
}

.seo-location-links a {
    color:#f52222;
    text-decoration:none;
    word-break:break-word
}

.seo-location-links a:hover {
    text-decoration:underline
}

.seo-loc-arrow {
    font-size:25px;
    line-height:18px;
    color:#111;
    font-weight:700
}

@media(max-width:767px) {
    .seo-location-heading {
        font-size:23px
    }

    .seo-location-card {
        padding:14px
    }

}

/* Our Locations: one parent collapse trigger; city headings are display-only. */

.seo-location-main-toggle {
    width: 100%;
    border: 0;
    font-family: inherit;
    cursor: pointer;
}

.seo-location-card .seo-location-toggle {
    cursor: default;
}


/* Product/location detail layout */
.seo-meta-content {
    padding-top: 28px;
    padding-bottom: 24px;
}

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

.seo-product-top-row {
    margin-top: 20px;
}

.seo-product-media > img {
    display: block;
    width: 100%;
    margin-bottom: 0 !important;
}

.product-action-buttons {
    display: flex;
    width: 100%;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.product-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-height: 42px;
    padding: 10px 12px;
    background: #f52222;
    color: #fff !important;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    border: 0;
    border-radius: 0;
}

.product-action-btn:hover,
.product-action-btn:focus {
    color: #fff !important;
    text-decoration: none !important;
    opacity: 0.92;
}

.seo-product-detail-row {
    margin-top: 4px;
}

.seo-detail-list {
    margin: 8px 0 14px 22px;
    padding-left: 0;
    list-style-type: square;
}

.seo-detail-list li {
    margin-bottom: 6px;
    line-height: 1.55;
}

.seo-detail-list li strong {
    font-weight: 700;
}

@media (max-width: 767px) {
    .seo-product-intro {
        margin-top: 4px;
    }

    .product-action-buttons {
        gap: 10px;
    }

    .product-action-btn {
        font-size: 11px;
        padding-left: 8px;
        padding-right: 8px;
    }
}


/* Reusable FAQ accordion */
.faq-accordion {
    width: 100%;
    margin: 10px 0 20px;
}

.faq-item {
    width: 100%;
    border-bottom: 1px solid #eeeeee;
}

.faq-question {
    position: relative;
    display: block;
    width: 100%;
    padding: 12px 42px 12px 12px;
    border: 0;
    background: #fff1e9;
    color: #000;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
}

.faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
    content: "−";
}

.faq-question:hover,
.faq-question:focus {
    color: #fff;
    outline: none;
}

.faq-answer {
    background: #fff;
}

.faq-answer .para {
    margin: 0;
    padding: 12px;
}

@media (max-width: 767px) {
    .faq-question {
        padding: 11px 38px 11px 10px;
        font-size: 15px;
    }

    .faq-question::after {
        right: 12px;
    }
}
