/**
 * Quote Page Styles
 */

/* Highlight Banner */
.quote-highlight-banner {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 94, 168, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-highlight-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.quote-highlight-banner .icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(5px);
}

.quote-highlight-banner .icon {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.quote-highlight-banner .banner-text {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.4;
    color: white;
}

@media (min-width: 768px) {
    .banner-content {
        flex-direction: row;
        text-align: right;
    }

    .quote-highlight-banner .icon-wrapper {
        margin-bottom: 0;
    }
}

/* Form Wrapper Adjustments */
.quote-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}