/* Hide WooCommerce Cart and Buy Now Buttons */
.single-product .cart,
.single-product form.cart,
.single-product .single_add_to_cart_button,
.single-product button.buy_now_button,
.single-product .quantity,
.single-product div.product form.cart div.quantity,
.single-product .woocommerce-variation-add-to-cart,
.single-product button[name="add-to-cart"],
.single-product .add_to_cart_button,
.woocommerce div.product form.cart,
.woocommerce div.product form.cart .quantity,
.woocommerce div.product form.cart button.single_add_to_cart_button,
body.single-product div.product form.cart,
body.single-product div.product form.cart .quantity,
body.single-product div.product form.cart button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Enquiry Button */
.wpec-enquiry-button-wrapper {
    margin-top: 15px;
    margin-bottom: 15px;
    display: block !important;
    visibility: visible !important;
}

.wpec-enquiry-button {
    width: 100%;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    border-radius: 4px;
    background-color: #003d82 !important;
    color: #fff !important;
    display: block !important;
    text-align: center;
}

.wpec-enquiry-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #00509e !important;
}

/* Modal Overlay */
.wpec-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%),
                rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.wpec-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Modal Content */
.wpec-modal-content {
    background: #fff;
    margin: auto;
    padding: 0;
    border-radius: 0;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: slideDown 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
}

/* Split Layout */
.wpec-modal-split {
    display: flex;
    width: 100%;
    min-height: 600px;
}

/* Left Side - Branding */
.wpec-modal-left {
    flex: 0 0 45%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.wpec-modal-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.95) 0%, rgba(42, 82, 152, 0.9) 50%, rgba(126, 34, 206, 0.85) 100%);
    z-index: 1;
}

.wpec-modal-left-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.wpec-modal-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.wpec-modal-logo svg {
    color: #fff;
}

.wpec-modal-left h2 {
    margin: 0 0 15px 0;
    padding: 0;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0;
}

.wpec-modal-left p {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.6;
}

/* Right Side - Form */
.wpec-modal-right {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    max-height: 90vh;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.wpec-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #666;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: transparent;
    z-index: 10;
}

.wpec-modal-close:hover,
.wpec-modal-close:focus {
    background: #f5f5f5;
    color: #333;
}

.wpec-form {
    width: 100%;
}

/* Form Styles */
.wpec-form-group {
    margin-bottom: 18px;
}

.wpec-form-group:first-child {
    margin-top: 0;
}

.wpec-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.wpec-form-group .required {
    color: #e74c3c;
    margin-left: 2px;
}

.wpec-form-group input[type="text"],
.wpec-form-group input[type="email"],
.wpec-form-group input[type="tel"],
.wpec-form-group textarea,
.wpec-form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    background: #fff;
}

.wpec-form-group input:focus,
.wpec-form-group textarea:focus,
.wpec-form-group select:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.wpec-form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
    color: #7f8c8d;
}

.wpec-form-group textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

/* CAPTCHA Styles */
.wpec-captcha-group {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-top: 0;
}

.wpec-captcha-group label {
    color: #2c3e50 !important;
}

.wpec-captcha-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wpec-captcha-image-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#wpec-captcha-image {
    max-width: 150px;
    height: 50px;
    border-radius: 8px;
    flex-shrink: 0;
    border: 2px solid #e8ecf1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.wpec-refresh-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.wpec-refresh-button:hover {
    transform: rotate(180deg) scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.5);
}

.wpec-refresh-button svg {
    display: block;
}

#wpec-captcha-input {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 16px;
}

.wpec-captcha-help {
    margin: 8px 0 0 0;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* Form Response Messages */
.wpec-form-response {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 6px;
    display: none;
    font-size: 14px;
    font-weight: 500;
}

.wpec-form-response.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpec-form-response.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Actions */
.wpec-form-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.wpec-submit-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: #1e3c72;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: none;
}

.wpec-submit-button:hover:not(:disabled) {
    background: #2a5298;
}

.wpec-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.wpec-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.wpec-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .wpec-modal-split {
        flex-direction: column;
        min-height: auto;
    }
    
    .wpec-modal-left {
        flex: 0 0 auto;
        min-height: 250px;
        padding: 30px 20px;
    }
    
    .wpec-modal-left h2 {
        font-size: 26px;
    }
    
    .wpec-modal-left p {
        font-size: 14px;
    }
    
    .wpec-modal-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .wpec-modal-logo svg {
        width: 40px;
        height: 40px;
    }
    
    .wpec-modal-right {
        padding: 30px 20px;
    }
    
    .wpec-modal-content {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .wpec-modal-content {
        width: 95%;
        max-width: 100%;
    }
    
    .wpec-modal-right {
        padding: 25px 20px;
    }
    
    .wpec-modal-left {
        min-height: 200px;
        padding: 25px 15px;
    }
    
    .wpec-modal-content {
        width: 95%;
        padding: 20px 15px;
        margin: 10px;
    }
    
    .wpec-modal-content h2 {
        font-size: 22px;
        padding-right: 30px;
    }
    
    .wpec-modal-close {
        right: 15px;
        top: 15px;
    }
    
    .wpec-captcha-image-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    #wpec-captcha-image {
        max-width: 100%;
        width: 100%;
    }
    
    .wpec-refresh-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .wpec-modal-content {
        padding: 20px 15px;
    }
    
    .wpec-form-group input,
    .wpec-form-group textarea {
        font-size: 16px;
    }
    
    .wpec-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .wpec-submit-button {
        width: 100%;
    }
}

/* Input Validation States */
.wpec-form-group input.error,
.wpec-form-group textarea.error {
    border-color: #e74c3c;
}

.wpec-form-group input.success,
.wpec-form-group textarea.success {
    border-color: #27ae60;
}

/* ========================================
   Service Drawer Styles
   ======================================== */

/* Drawer Button - Vertical Tab Design */
.wpec-drawer-button {
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 40px !important;
    height: 280px !important;
    background: #003d82 !important;
    border-radius: 8px 0 0 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3) !important;
    z-index: 999999 !important;
    transition: all 0.3s ease !important;
    color: #fff !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 20px 10px !important;
    writing-mode: vertical-rl !important;
    text-orientation: mixed !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
}

.wpec-drawer-button.wpec-drawer-right {
    right: 0 !important;
    border-radius: 8px 0 0 8px !important;
}

.wpec-drawer-button.wpec-drawer-left {
    left: 0 !important;
    border-radius: 0 8px 8px 0 !important;
}

.wpec-drawer-button:hover {
    transform: translateY(-50%) translateX(-5px) !important;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.4) !important;
    background: #00509e !important;
}

.wpec-drawer-button.wpec-drawer-left:hover {
    transform: translateY(-50%) translateX(5px) !important;
}

.wpec-drawer-button svg {
    width: 24px !important;
    height: 24px !important;
    margin-top: 15px !important;
    transform: rotate(90deg) !important;
}

/* Drawer Overlay */
.wpec-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%),
                rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 999998;
    animation: fadeIn 0.3s ease;
}

.wpec-drawer-overlay.active {
    display: block !important;
}

/* Service Drawer */
.wpec-service-drawer {
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 340px !important;
    max-width: 340px !important;
    background: #fff !important;
    border: 3px solid #003d82 !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    z-index: 999999 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    overflow: hidden !important;
    padding: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


.wpec-service-drawer.wpec-drawer-right {
    right: -500px !important;
}

.wpec-service-drawer.wpec-drawer-left {
    left: -500px !important;
}

.wpec-service-drawer.wpec-drawer-right.active {
    right: 20px !important;
}

.wpec-service-drawer.wpec-drawer-left.active {
    left: 20px !important;
}

.wpec-drawer-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #003d82;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.wpec-drawer-close:hover {
    background: #00509e;
    transform: rotate(90deg);
}

.wpec-drawer-content {
    text-align: center;
    position: relative;
    padding: 0 15px 15px;
}

.wpec-drawer-avatar {
    margin: 15px auto 12px;
    position: relative;
    width: 70px;
    height: 70px;
}

.wpec-drawer-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #003d82;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wpec-drawer-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: #003d82;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.wpec-drawer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wpec-contact-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #fff;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e8ecf1;
    margin: 0;
}

.wpec-contact-item:last-child {
    border-bottom: none;
}

.wpec-contact-item:hover {
    background: #f8f9fa;
}

.wpec-contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #f5f5f5;
}

.wpec-contact-icon svg {
    width: 20px;
    height: 20px;
}

.wpec-phone-icon {
    color: #4CAF50;
}

.wpec-email-icon {
    color: #FF9800;
}

.wpec-whatsapp-icon {
    color: #25D366;
}

.wpec-wechat-icon {
    color: #09B83E;
}

.wpec-contact-value {
    font-size: 14px;
    color: #555;
    font-weight: 400;
    text-align: left;
    flex: 1;
}

/* Responsive Design for Drawer */
@media (max-width: 768px) {
    .wpec-service-drawer {
        width: 90% !important;
        max-width: 90% !important;
    }
    
    .wpec-drawer-content {
        padding: 20px 15px 15px;
    }
    
    .wpec-service-drawer.wpec-drawer-right {
        right: -100%;
    }
    
    .wpec-service-drawer.wpec-drawer-left {
        left: -100%;
    }
    
    .wpec-service-drawer.wpec-drawer-right.active {
        right: 10px;
    }
    
    .wpec-service-drawer.wpec-drawer-left.active {
        left: 10px;
    }
    
    .wpec-drawer-avatar {
        width: 80px;
        height: 80px;
    }
    
    .wpec-drawer-avatar img {
        width: 80px;
        height: 80px;
    }
    
    .wpec-drawer-title {
        font-size: 18px;
    }
    
    .wpec-contact-value {
        font-size: 14px;
    }
    
    .wpec-contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .wpec-drawer-button {
        width: 60px !important;
        height: 200px !important;
        font-size: 14px !important;
        letter-spacing: 3px !important;
        padding: 15px 8px !important;
    }
    
    .wpec-drawer-button svg {
        width: 20px !important;
        height: 20px !important;
        margin-top: 10px !important;
    }
}

/* ========================================
   Free Quote Request Popup Styles
   ======================================== */

/* Floating Quote Button */
.wpec-quote-float-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    z-index: 99998;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.wpec-quote-float-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.wpec-quote-float-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Quote Modal Overlay */
.wpec-quote-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%),
                rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    z-index: 999998;
    animation: fadeIn 0.3s ease;
}

.wpec-quote-overlay.active {
    display: block;
}

/* Quote Modal */
.wpec-quote-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.wpec-quote-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wpec-quote-modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    width: 90%;
    max-width: 520px;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: slideDown 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Quote Header */
.wpec-quote-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 25px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.wpec-quote-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.wpec-quote-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wpec-quote-header-left svg {
    width: 24px;
    height: 24px;
}

.wpec-quote-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.wpec-quote-close {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.wpec-quote-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Quote Body */
.wpec-quote-body {
    padding: 30px 25px 25px;
    background: #fff;
}

.wpec-quote-description {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Quote Form */
.wpec-quote-form-group {
    margin-bottom: 15px;
}

.wpec-quote-form-group input[type="email"],
.wpec-quote-form-group input[type="text"],
.wpec-quote-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.wpec-quote-form-group input:focus,
.wpec-quote-form-group textarea:focus {
    outline: none;
    border-color: #003d82;
}

.wpec-quote-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Quote Captcha */
.wpec-quote-captcha-group {
    margin-bottom: 15px;
}

.wpec-quote-captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
}

#wpec-quote-captcha-image {
    max-width: 150px;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.wpec-quote-refresh-captcha {
    background: #003d82;
    border: none;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpec-quote-refresh-captcha:hover {
    background: #00509e;
    transform: rotate(180deg);
}

.wpec-quote-refresh-captcha svg {
    display: block;
}

/* Quote Form Response */
.wpec-quote-form-response {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 4px;
    display: none;
    font-size: 14px;
}

.wpec-quote-form-response.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpec-quote-form-response.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Quote Submit Button */
.wpec-quote-form-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wpec-quote-submit-button {
    background: #003d82;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wpec-quote-submit-button:hover:not(:disabled) {
    background: #00509e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 61, 130, 0.3);
}

.wpec-quote-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wpec-quote-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.wpec-quote-spinner {
    animation: spin 1s linear infinite;
}

/* Responsive for Quote Popup */
@media (max-width: 768px) {
    .wpec-quote-float-button {
        right: 15px;
        bottom: 80px;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .wpec-quote-float-button svg {
        width: 18px;
        height: 18px;
    }
    
    .wpec-quote-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .wpec-quote-body {
        padding: 20px;
    }
    
    .wpec-quote-header h3 {
        font-size: 16px;
    }
    
    .wpec-quote-captcha-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    #wpec-quote-captcha-image {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .wpec-quote-float-button span {
        display: none;
    }
    
    .wpec-quote-float-button {
        padding: 12px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
    }
}
