#floating-enquiry-wrap {
    position: fixed;
    top: 38%;
    right: 0;
    z-index: 9999;
    transform: translateX(360px);
    transition: transform 0.42s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#floating-enquiry-wrap.floating-enquiry-open {
    transform: translateX(0);
}

.enquiry-toggle {
    position: absolute;
    left: -68px;
    width: 74px;
    height: 148px;
    background: #262727;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    box-shadow: -4px 0 14px rgba(0,0,0,0.22);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    font-size: 1.05rem;
}

.enquiry-toggle:hover { background: #1A1A1A; }

.toggle-icon  { font-size: 1.9rem; margin-bottom: 10px; }

.enquiry-panel {
    width: 360px;
    background: #fff;
    border-radius: 10px 0 0 10px;
    box-shadow: -8px 0 28px rgba(0,0,0,0.26);
}

.enquiry-header {
    background: #262727;
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.enquiry-header h3 { margin:0; font-size: 1.25rem; }

.enquiry-close {
    background: none;
    border: none;
    color: white;
    font-size: 2.1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 6px;
}

.enquiry-close:hover { opacity: 0.75; }

#floating-enquiry-form {
    padding: 20px 24px;
}

.form-row {
    margin-bottom: 1.1rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.97rem;
    box-sizing: border-box;
}

.form-row textarea { min-height: 110px; resize: vertical; }

.enquiry-submit {
    width: 100%;
    padding: 0.95rem;
    background: #262727;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.03rem;
    font-weight: 600;
    cursor: pointer;
}

.enquiry-submit:hover { background: #1d4ed8; }

.form-message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.95rem;
}

.form-message.success { background:#ecfdf5; color:#065f46; }
.form-message.error   { background:#fef2f2; color:#991b1b; }

/* Mobile adjustments */
@media (max-width: 480px) {
    #floating-enquiry-wrap { top: 30%; }
    .enquiry-panel { width: 90vw; max-width: 340px; }
}