.utn-quote-wrap {
    background: #0f0f0f;
    color: #fff;
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    margin: 30px auto;
    font-family: 'Poppins', sans-serif;
}

.utn-quote-wrap h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(90deg, #8b5cf6, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.utn-section {
    margin-bottom: 20px;
}

.utn-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ddd;
}

.utn-section input[type="radio"],
.utn-section input[type="checkbox"] {
    accent-color: #8b5cf6;
    margin-right: 6px;
}

.utn-section select,
.utn-section input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    background: #1a1a1a;
    color: #fff;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}

.utn-section select:focus,
.utn-section input[type="email"]:focus {
    border-color: #8b5cf6;
    outline: none;
    box-shadow: 0 0 5px #8b5cf6;
}

.utn-addons label {
    display: block;
    padding: 6px 0;
    color: #ccc;
}

.utn-summary {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 25px;
}

.utn-summary h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}

#utn_breakdown ul {
    margin: 0;
    padding-left: 18px;
}

#utn_breakdown li {
    margin-bottom: 5px;
    color: #bbb;
}

.utn-total {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 15px 0;
    text-align: right;
    color: #8b5cf6;
}

#utn_send_quote {
    background: linear-gradient(90deg, #8b5cf6, #000);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

#utn_send_quote:hover {
    background: linear-gradient(90deg, #9b6cff, #111);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 92, 246, 0.4);
}

#utn_message {
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
    color: #7fff7f;
    font-size: 14px;
}

/* Smooth fade animation */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

.utn-quote-wrap {
    animation: fadeIn 0.5s ease-in-out;
}
