/* Moved from FAQ.html inline <style> */
body {
    font-family: Arial, sans-serif;
    margin: 2rem;
    background: #000 !important;
    color: #f5f5f5;
}
h1 {
    color: #D5F637 !important;
    text-align: center;
    margin-bottom: 2rem !important;
}
.faq-contact-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    background: #000 !important;
}
.faq-list {
    flex: 2 1 0;
    min-width: 0;
}
.faq-list {
    max-width: 800px;
    margin: auto;
}
details {
    background: #181818;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px #222;
    border: 1px solid #222;
    transition: border-color 0.2s;
}
summary {
    font-weight: bold;
    font-size: 1.1em;
    padding: 1rem;
    cursor: pointer;
    outline: none;
    color: #D5F637;
    transition: color 0.2s;
}
details[open] summary {
    color: #111;
    background: #D5F637;
    border-radius: 6px 6px 0 0;
}
.faq-answer {
    padding: 1rem 1rem 1rem 1rem;
    color: #f5f5f5;
}
ul, ol {
    color: #f5f5f5;
}
strong {
    color: #D5F637;
}
/* Scrollbar styling for dark mode */
::-webkit-scrollbar {
    width: 8px;
    background: #222;
}
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}
a {
    color: #D5F637;
}
.contact-section {
    flex: 1 1 320px;
    max-width: 350px;
    margin: 0;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    background: #191919;
    border-radius: 10px;
    box-shadow: 0 2px 8px #181818;
    color: #f5f5f5;
    text-align: center;
}
.contact-section h2 {
    color: #D5F637;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.contact-section address {
    font-style: normal;
    font-size: 1rem;
    line-height: 1.6;
    color: #f5f5f5;
}
.contact-title {
    color: #D5F637;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.contact-phone, .contact-hours {
    margin-top: 0.7rem;
    font-size: 1rem;
    color: #D5F637;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}
.contact-phone i, .contact-hours i {
    color: #D5F637;
    margin-right: 0.4em;
}
.contact-hours span {
    color: #fff;
    font-weight: 400;
}
@media (max-width: 1000px) {
    .faq-contact-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact-section {
        max-width: 98vw;
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .contact-section {
        max-width: 98vw;
        padding: 1.2rem 0.5rem;
    }
}

/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: none;
    color: #111;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: none;
    z-index: 1000;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-5px) scale(1.08);
}
.back-to-top i {
    display: block;
    position: absolute;
    top: 13px;
    left: 17px;
    right: 0;
    margin: 0 auto;
    font-size: 1.3rem;
    color: #111;
    z-index: 2;
    pointer-events: none;
    transition: color 0.3s;
}
.back-to-top:hover i {
    color: #1ea952;
}
.back-to-top::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid #D5F637;
    margin: 0 auto;
    transition: border-bottom-color 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.back-to-top:hover::before {
    border-bottom-color: #1ea952;
}
/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.whatsapp-button.show {
    opacity: 1;
    visibility: visible;
}
.whatsapp-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}
.whatsapp-button i {
    font-size: 20px;
}
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 20px;
    }
    .whatsapp-button {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 80px;
    }
}

/* Modal & Form Styles */
.modal-dialog {
    max-width: 600px !important;
}

.modal-content {
    background: #ffffff !important;
    color: #111 !important;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    width: 100%;
}

.modal-header, .modal-footer {
    border-color: #e6e6e6;
}

.modal-title {
    color: #111 !important;
}

.form-label {
    color: #111 !important;
}

.form-control {
    background: #fff !important;
    color: #111 !important;
    border: 1px solid #d0d0d0 !important;
}

.form-control:focus {
    background: #fff !important;
    color: #111 !important;
    border-color: #999 !important;
    box-shadow: 0 0 0 0.15rem rgba(0,0,0,0.05);
}

.btn-close {
    filter: none;
    opacity: 1;
}

.required-asterisk {
    color: red;
    margin-left: 2px;
    font-size: 1.1em;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #808080;
}

.input-icon-wrapper input,
.input-icon-wrapper select,
.input-icon-wrapper .custom-multiselect .select-box {
    padding-left: 30px;
}

.custom-multiselect {
    position: relative;
    width: 100%;
}

.custom-multiselect .select-box {
    background: #fff;
    color: #111;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 8px 12px 8px 30px;
    cursor: pointer;
    min-height: 38px;
    transition: border-color 0.2s;
}

.custom-multiselect .select-box.select-placeholder {
    color: #aaa;
}

.custom-multiselect .dropdown-list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #333;
    border-radius: 0 0 5px 5px;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 2px;
}

.custom-multiselect.open .dropdown-list {
    display: block;
}

.custom-multiselect label {
    display: block;
    padding: 6px 12px;
    cursor: pointer;
    color: #f5f5f5;
}

.custom-multiselect label:hover {
    background: #fff;
    color: #D5F637;
}

.custom-multiselect input[type="checkbox"] {
    margin-right: 8px;
}

.form-section {
    margin-bottom: 1.5rem;
}

.section-title {
    color: #111;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.form-row.radio-row {
    flex-direction: row !important;
    gap: 10px;
    margin-bottom: 0;
    flex-wrap: nowrap;
    align-items: center;
}

.form-row.radio-row .form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: unset;
    margin-bottom: 0;
    gap: 6px;
}

.form-row.radio-row .form-group label {
    margin-bottom: 0;
    white-space: nowrap;
    font-weight: 500;
    cursor: pointer;
}

.form-group {
    flex: 1 1 220px;
    min-width: 180px;
    margin-bottom: 0;
}

/* Ensure input fields and submit button in contact section/modal look consistent */
#enquiryFormModal input[type="text"],
#enquiryFormModal input[type="email"],
#enquiryFormModal input[type="tel"],
#enquiryFormModal input[type="number"] {
    background: #fff !important;
    color: #111 !important;
    border: 1px solid #333 !important;
    border-radius: 5px;
    padding: 8px 12px 8px 30px;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.2s;
    box-sizing: border-box;
}



#enquiryFormModal label {
    color: #111 !important;
    font-weight: 500;
    margin-bottom: 0.3rem;
    display: block;
}

#enquiryFormModal .activity-book-btn {
    background: #D5F637;
    color: #181818;
    border: none;
    border-radius: 999px;
    padding: 0.55em 2em 0.55em 1.2em;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.7em;
    box-shadow: 0 2px 8px #232e1a;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    width: 100%;
    justify-content: center;
}

#enquiryPeopleModal {
    appearance: textfield;
}

#enquiryPeopleModal::-webkit-inner-spin-button,
#enquiryPeopleModal::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0.3rem; /* reduced gap */
        margin-bottom: 0.5rem; /* reduced margin */
    }
    /* Keep radio rows in one line on mobile */
    .form-row.radio-row {
        flex-direction: row !important;
        gap: 10px;
        flex-wrap: nowrap;
        align-items: center;
        margin-bottom: 0.3rem; /* reduced margin */
    }
    .modal-dialog {
        margin: 0.5rem;
    }
    .form-group {
        flex: unset !important;
        min-width: unset !important;
    }
}