﻿/* ===== Native select fallback — match .form-clt input design ===== */
.contact-form-box .form-clt select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    line-height: 1;
    padding: 20px 20px;
    text-transform: capitalize;
    color: var(--text);
    border-radius: 4px;
    border: 1px solid var(--white);
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235C6672' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    font-size: 16px;
    font-family: "Plus Jakarta Sans", system-ui;
    font-weight: 400;
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
}

    .contact-form-box .form-clt select:focus {
        border-color: var(--theme-color);
    }

    .contact-form-box .form-clt select option {
        padding: 10px;
        color: var(--text);
    }

/* ===== Nice-select overrides (when JS transforms the select) ===== */
.contact-form-box .form-clt .nice-select {
    width: 100%;
    height: auto;
    line-height: 1;
    padding: 20px 20px;
    border-radius: 4px;
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--text);
    text-transform: capitalize;
    font-size: 16px;
    font-family: "Plus Jakarta Sans", system-ui;
    font-weight: 400;
    float: none;
    display: block;
    box-sizing: border-box;
}

    .contact-form-box .form-clt .nice-select .current {
        color: var(--text);
        font-size: 16px;
        font-weight: 400;
        line-height: 1;
    }

    /* Arrow chevron positioning */
    .contact-form-box .form-clt .nice-select:after {
        right: 20px;
        border-color: var(--text);
    }

    /* Hover / focus / open states */
    .contact-form-box .form-clt .nice-select:hover,
    .contact-form-box .form-clt .nice-select:active,
    .contact-form-box .form-clt .nice-select.open,
    .contact-form-box .form-clt .nice-select:focus {
        border-color: var(--theme-color);
    }

    /* Dropdown list panel */
    .contact-form-box .form-clt .nice-select .list {
        width: 100%;
        border-radius: 4px;
        background: var(--white);
        box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
        margin-top: 2px;
        max-height: 250px;
        overflow-y: auto;
        z-index: 99;
    }

    /* Individual option items */
    .contact-form-box .form-clt .nice-select .option {
        padding: 10px 20px;
        line-height: 1.5;
        min-height: auto;
        font-size: 15px;
        color: var(--text);
        text-transform: capitalize;
        transition: all 0.2s ease;
    }

        .contact-form-box .form-clt .nice-select .option:hover,
        .contact-form-box .form-clt .nice-select .option.focus {
            background-color: var(--bg);
            color: var(--theme-color);
        }

        .contact-form-box .form-clt .nice-select .option.selected {
            font-weight: 600;
            color: var(--theme-color);
        }

        .contact-form-box .form-clt .nice-select .option.disabled {
            color: #999;
        }

    /* Scrollbar styling for the dropdown */
    .contact-form-box .form-clt .nice-select .list::-webkit-scrollbar {
        width: 5px;
    }

    .contact-form-box .form-clt .nice-select .list::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .contact-form-box .form-clt .nice-select .list::-webkit-scrollbar-thumb {
        background: var(--theme-color);
        border-radius: 4px;
    }

/* ===== Blockquote for Bulk Enquiry section (replicate News Details design) ===== */
.gallery-section blockquote,
.gallery-section .wp-block-quote {
    background-color: var(--theme-color);
    color: var(--white);
    font-size: 26px;
    line-height: 1.4;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    padding: 60px;
    text-align: center;
    margin: 40px 0px;
    position: relative;
    z-index: 1;
    border-radius: 6px;
}

    .gallery-section blockquote a,
    .gallery-section .wp-block-quote a {
        color: var(--white);
    }

        .gallery-section blockquote a:hover,
        .gallery-section .wp-block-quote a:hover {
            color: var(--text);
        }

@media (max-width: 767px) {

    .gallery-section blockquote,
    .gallery-section .wp-block-quote {
        padding: 30px 15px;
        font-size: 18px;
        line-height: 1.5;
    }
}

.gallery-section blockquote::before,
.gallery-section .wp-block-quote::before {
    right: 30px;
    font-size: 110px;
    line-height: 1;
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    content: "\f10d";
    bottom: -20px;
    color: var(--white);
    z-index: -1;
    opacity: 0.1;
    font-weight: 900;
}
