/* Button Group Container */
.elz-button-group {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

/* Enquire Now Button */
.elz-enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0ea5e9;
    color: #fff;
    border: 2px solid #0ea5e9;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    min-width: 180px;
}
.elz-enquire-btn:hover {
    background: #0284c7;
    border-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
}

/* WhatsApp Button */
.elz-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    white-space: nowrap;
    flex: 1;
    min-width: 180px;
}
.elz-whatsapp-style-default {
    background-color: #0071a1;
    color: #fff !important;
    border-color: #0071a1;
}
.elz-whatsapp-style-green {
    background-color: #25D366;
    color: #fff !important;
    border-color: #25D366;
}
.elz-whatsapp-style-outline {
    background-color: transparent;
    color: #25D366 !important;
    border-color: #25D366;
}
.elz-whatsapp-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Modal Styles */
.elz-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999;
}
.elz-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 520px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 10000;
}
.elz-modal header {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 700;
    font-size: 18px;
    color: #0f172a;
}
.elz-modal .elz-body {
    padding: 20px;
}
.elz-field {
    margin-bottom: 14px;
}
.elz-field label {
    display: block;
    font-size: 14px;
    color: #374151;
    margin-bottom: 6px;
    font-weight: 500;
}
.elz-field input,
.elz-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
}
.elz-field input:focus,
.elz-field textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
.elz-row {
    display: flex;
    gap: 12px;
}
.elz-row .elz-field {
    flex: 1;
}
.elz-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 14px 14px;
    margin: 0 -20px -20px;
}
.elz-btn {
    padding: 10px 24px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.elz-btn:hover {
    background: #f3f4f6;
}
.elz-btn-primary {
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: #fff;
}
.elz-btn-primary:hover {
    background: #0284c7;
    border-color: #0284c7;
}
.elz-note {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
}
.elz-ok {
    color: #059669;
    font-weight: 500;
}
.elz-err {
    color: #dc2626;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 1024px) {
    .elz-enquire-btn,
    .elz-whatsapp-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .elz-button-group {
        flex-direction: column;
        gap: 12px;
    }
    .elz-enquire-btn,
    .elz-whatsapp-btn {
        width: 100%;
        min-width: auto;
        padding: 12px 24px;
        font-size: 15px;
    }
    .elz-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .elz-enquire-btn,
    .elz-whatsapp-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
