.v3-enquiry-tabs-e70bb4fe {
    max-width: 900px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Tabs Navigation */
.v3-tabs-nav-e70bb4fe {
    display: flex;
    background: #1a1a2e;
    padding: 0;
    gap: 0;
}

.v3-tab-btn-e70bb4fe {
    flex: 1;
    padding: 18px 20px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    letter-spacing: 0.3px;
}

.v3-tab-btn-e70bb4fe:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.v3-tab-btn-e70bb4fe.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.v3-tab-btn-e70bb4fe.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: #4fc3f7;
    border-radius: 3px 3px 0 0;
}

.v3-tab-icon-e70bb4fe {
    font-size: 18px;
}

/* Tab Content */
.v3-tab-content-e70bb4fe {
    display: none;
    padding: 36px 40px 40px;
    animation: v3FadeIn_e70bb4fe 0.35s ease;
}

.v3-tab-content-e70bb4fe.active {
    display: block;
}

@keyframes v3FadeIn_e70bb4fe {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tab Header */
.v3-tab-header-e70bb4fe {
    margin-bottom: 28px;
}

.v3-tab-header-e70bb4fe h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.v3-tab-header-e70bb4fe p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Form Grid */
.v3-form-grid-e70bb4fe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.v3-form-group-e70bb4fe {
    display: flex;
    flex-direction: column;
}

.v3-form-group-e70bb4fe label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.v3-required-e70bb4fe {
    color: #e74c3c;
}

.v3-form-group-e70bb4fe input,
.v3-form-group-e70bb4fe textarea {
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    transition: all 0.25s ease;
    background: #fafafa;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.v3-form-group-e70bb4fe input:focus,
.v3-form-group-e70bb4fe textarea:focus {
    outline: none;
    border-color: #4fc3f7;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.12);
}

.v3-form-group-e70bb4fe input::placeholder,
.v3-form-group-e70bb4fe textarea::placeholder {
    color: #aaa;
}

.v3-full-width-e70bb4fe {
    grid-column: 1 / -1;
    margin-bottom: 8px;
}

/* Products Section */
.v3-products-section-e70bb4fe {
    margin-bottom: 24px;
}

.v3-products-section-e70bb4fe h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
}

.v3-checkbox-grid-e70bb4fe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Custom Checkboxes */
.v3-checkbox-label-e70bb4fe {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #444;
    padding: 10px 14px;
    border-radius: 10px;
    border: 2px solid #e8e8e8;
    transition: all 0.25s ease;
    background: #fafafa;
    user-select: none;
}

.v3-checkbox-label-e70bb4fe:hover {
    border-color: #4fc3f7;
    background: #f0faff;
}

.v3-checkbox-label-e70bb4fe input[type="checkbox"] {
    display: none;
}

.v3-checkmark-e70bb4fe {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    position: relative;
}

.v3-checkbox-label-e70bb4fe input[type="checkbox"]:checked + .v3-checkmark-e70bb4fe {
    background: #4fc3f7;
    border-color: #4fc3f7;
}

.v3-checkbox-label-e70bb4fe input[type="checkbox"]:checked + .v3-checkmark-e70bb4fe::after {
    content: '';
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
}

.v3-checkbox-label-e70bb4fe input[type="checkbox"]:checked ~ * {
    color: #1a1a2e;
    font-weight: 600;
}

/* Callback Section */
.v3-callback-section-e70bb4fe {
    margin: 20px 0 24px;
}

.v3-callback-label-e70bb4fe {
    border: 2px dashed #d0d0d0;
    background: #fffdf5;
}

.v3-callback-label-e70bb4fe:hover {
    border-color: #4fc3f7;
    background: #f0faff;
}

/* Submit Button */
.v3-submit-section-e70bb4fe {
    text-align: center;
}

.v3-submit-btn-e70bb4fe {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
    max-width: 320px;
}

.v3-submit-btn-e70bb4fe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.3);
    background: linear-gradient(135deg, #2d2d5e 0%, #1a1a2e 100%);
}

.v3-submit-btn-e70bb4fe:active {
    transform: translateY(0);
}

.v3-submit-btn-e70bb4fe.v3-loading-e70bb4fe {
    opacity: 0.7;
    pointer-events: none;
}

/* Success / Error Messages */
.v3-form-message-e70bb4fe {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.v3-form-message-e70bb4fe.v3-success-e70bb4fe {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.v3-form-message-e70bb4fe.v3-error-e70bb4fe {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Responsive */
@media (max-width: 768px) {
    .v3-tabs-nav-e70bb4fe {
        flex-direction: column;
    }

    .v3-tab-btn-e70bb4fe {
        padding: 14px 16px;
        font-size: 14px;
    }

    .v3-tab-btn-e70bb4fe.active::after {
        left: 0;
        right: auto;
        width: 4px;
        height: 100%;
        top: 0;
        bottom: 0;
        border-radius: 0 3px 3px 0;
    }

    .v3-tab-content-e70bb4fe {
        padding: 24px 20px 28px;
    }

    .v3-form-grid-e70bb4fe {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .v3-checkbox-grid-e70bb4fe {
        grid-template-columns: 1fr;
    }

    .v3-tab-header-e70bb4fe h2 {
        font-size: 20px;
    }

    .v3-submit-btn-e70bb4fe {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .v3-enquiry-tabs-e70bb4fe {
        margin: 20px 12px;
        border-radius: 12px;
    }

    .v3-tab-content-e70bb4fe {
        padding: 20px 16px 24px;
    }
}
