/* Slide-over Enquiry Drawer CSS */
.enquire-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.enquire-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.enquire-drawer-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 450px;
    max-width: 92vw;
    background: #ffffff;
    z-index: 999999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

.enquire-drawer-overlay.active .enquire-drawer-container {
    transform: translateX(0);
}

.enquire-drawer-header {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
    padding: 24px 28px;
    position: relative;
    border-bottom: 3px solid #b89047;
}

.enquire-drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.enquire-drawer-close:hover {
    background: #ee3425;
    color: #ffffff;
    transform: rotate(90deg);
}

.enquire-drawer-badge {
    display: inline-block;
    background: rgba(184, 144, 71, 0.2);
    color: #e5c178;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid rgba(184, 144, 71, 0.4);
}

.enquire-drawer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #ffffff;
}

.enquire-drawer-subtitle {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.5;
}

.enquire-drawer-body {
    padding: 28px;
    flex: 1;
    overflow-y: auto;
}

.enquire-drawer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.enquire-drawer-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.enquire-drawer-group label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 6px;
}

.enquire-drawer-group label span.required {
    color: #ef4444;
}

.enquire-drawer-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.enquire-drawer-input-wrap i.icon {
    position: absolute;
    left: 14px;
    color: #b89047;
    font-size: 15px;
    pointer-events: none;
    transition: color 0.2s ease;
}

.enquire-drawer-input-wrap input,
.enquire-drawer-input-wrap textarea {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #1f2937;
    background: #f9fafb;
    transition: all 0.2s ease;
    outline: none;
}

.enquire-drawer-input-wrap textarea {
    padding-top: 12px;
    resize: vertical;
    min-height: 100px;
}

.enquire-drawer-input-wrap input:focus,
.enquire-drawer-input-wrap textarea:focus {
    border-color: #b89047;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(184, 144, 71, 0.15);
}

.enquire-drawer-submit-btn {
    margin-top: 10px;
    background: linear-gradient(135deg, #b89047 0%, #ee3425 100%);
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(238, 52, 37, 0.25);
    transition: all 0.3s ease;
}

.enquire-drawer-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 52, 37, 0.35);
    background: linear-gradient(135deg, #a37c35 0%, #d82b1d 100%);
}

.enquire-drawer-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.enquire-drawer-success {
    text-align: center;
    padding: 40px 20px;
}

.enquire-drawer-success i {
    font-size: 56px;
    color: #22c55e;
    margin-bottom: 16px;
}

.enquire-drawer-success h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
}

.enquire-drawer-success p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px 0;
}
