@charset "utf-8";
/* CSS Document */
/* ===============================
   FLOAT ENQUIRY WRAPPER
================================*/
.enquiry-wrapper {
    position: fixed;
    top: 2%;
    right: 0;
    z-index: 9999;
}

/* ===============================
   FLOAT BUTTON
================================*/
.enquiry-float-btn {
    position: fixed;
    right: -102px;
    top: 30%;
    background: #c40000;
    color: #fff;
    padding: 12px 22px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transform: rotate(-90deg);
    transform-origin: center;
    border-radius: 10px 10px 0 0;
    white-space: nowrap;
    transition: 0.4s ease;
}

/* ===============================
   FORM PANEL
================================*/
.enquiry-form-box {
    position: fixed;
    top: 12%;
    right: -320px;
    width: 320px;
    background: #fff;
    padding: 25px 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.25);
    border-radius: 10px 0 0 10px;
    transition: 0.4s ease;
}

/* OPEN STATE */
.enquiry-wrapper.active .enquiry-form-box {
    right: 0;
}

.enquiry-wrapper.active .enquiry-float-btn {
    right: 220px;
}

/* ===============================
   FORM ELEMENTS
================================*/
.input-box {
    margin-bottom: 12px;
}

.input-box input,
.input-box select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.flex-row {
    display: flex;
    gap: 10px;
}

/* ===============================
   SELECT ARROW
================================*/
.course-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5' fill='%23000'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 38px;
    cursor: pointer;
}

/* ===============================
   SUBMIT BUTTON
================================*/
.submit-btn {
    background: #d62828;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #a71e1e;
}

/* ===============================
   SOCIAL ICONS
================================*/
.enquiry-social-icons {
    position: fixed;
    right: 5px;
    top: 63%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.4s ease;
}

.enquiry-social-icons a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
}

.enquiry-social-icons .call { background: #0d6efd; }
.enquiry-social-icons .facebook { background: #1877f2; }
.enquiry-social-icons .instagram { background: #e1306c; }

/* MOVE ICONS WITH FORM */
.enquiry-wrapper.active .enquiry-social-icons {
    right: 20px;
}

/* ===============================
   CLOSE BUTTON
================================*/
.enquiry-form-box span {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 18px;
}

/* ===============================
   MOBILE HIDE
================================*/
@media (max-width: 991px) {
    .enquiry-wrapper {
        display: none !important;
    }
}

