.nd-quote-widget-container * {
    box-sizing: border-box;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}

/* Fix FontAwesome conflict */
.nd-quote-widget-container .fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.nd-quote-widget-container .fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

.nd-quote-widget-container .far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400;
}

h3.nd-quote-title {
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgb(23, 39, 72);
    text-align: center;
}

.nd-quote-subtitle {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: rgb(23, 39, 72);
    margin-bottom: 30px;
    text-align: center;
}

/* CONTENEDOR */
.nd-quote-widget-container {
    background: #eaf2ff;
    padding: 32px;
    border-radius: 24px;
    margin: 0 auto;
    border: 2px solid #355fb8;
    /* Added blue border */
}

/* GRID */
.nd-quote-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 18px;
}

/* GRUPO */
.nd-quote-field-group {
    width: 100%;
}

/* LABEL */
.nd-quote-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0f172a;
}

/* INPUTS Y SELECT */
.nd-quote-input,
.nd-quote-field-group select {
    width: 100% !important;
    height: 46px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    background: #fff;
    outline: none;
    appearance: none;
}

/* PLACEHOLDER */
.nd-quote-input::placeholder {
    color: #94a3b8;
}

/* FOCUS */
.nd-quote-input:focus,
.nd-quote-field-group select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* INPUT CON ICONO */
.nd-input-wrapper {
    position: relative;
}

.nd-input-wrapper .nd-quote-input {
    padding-left: 40px;
    padding-right: 36px;
}

.nd-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #64748b;
}

.nd-input-chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #64748b;
    pointer-events: none;
}

/* BOTON */
.nd-btn-container {
    display: flex;
    align-items: flex-end;
}

.nd-quote-submit-btn {
    width: 100%;
    height: 46px;
    border-radius: 999px;
    border: none;
    background: #355fb8;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nd-quote-submit-btn:hover {
    background: #2b4ea1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nd-quote-form-grid {
        grid-template-columns: 1fr;
    }
}