@charset "UTF-8";

.quote-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px auto;
}

.quote-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
}

.quote-card h1 {
    margin-top: 0;
}

.quote-card .lead {
    color: var(--gray);
    margin-bottom: 24px;
}

.quote-aside {
    background: var(--pallet-light-pink);
    border-radius: 16px;
    padding: 24px;
}

.quote-aside ul {
    padding-left: 18px;
}

.quote-aside li {
    margin-bottom: 8px;
}

.quote-aside .note {
    font-size: 0.9rem;
    color: var(--gray);
}

.pricing-details .price-card {
    padding: 20px;
    border: 2px solid var(--pallet-green);
    background: rgba(71, 185, 149, 0.05);
}

.pricing-details .price-card h3 {
    margin: 0;
    font-size: 2.5em;
    text-align: center;
}

.pricing-details .price-card .price {
    font-size: 2.25em;
    margin: 0;
    color: var(--pallet-green-font);
}

.pricing-details .star-price-card {
    position: relative;
    left: calc(100% - 135px);
    margin-top: -85px;
    margin-bottom: -100px;
    width: 200px;
    height: 200px;
    background-image: url('/images/sunBurst-web.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
}

.pricing-details .star-price-text {
    display: block;
    font-size: 1.25em;
    line-height: 1.8em;
    color: var(--white);
    font-weight: bold;
}

.pricing-details .price-card .price-note {
    color: var(--gray);
    margin: 0;
}

.alert {
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    margin-top: 24px;
}

.alert-info {
    background: rgba(70, 130, 180, 0.1);
    border-left: 6px solid steelblue;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.15);
    border-left: 6px solid #ffc107;
}

.alert-error,
.alert-danger {
    background: rgba(217, 83, 79, 0.15);
    border-left: 6px solid #d9534f;
}

.alert-success {
    background: rgba(71, 185, 149, 0.15);
    border-left: 6px solid var(--pallet-green);
}

.quote-form .form-actions {
    margin-top: 16px;
}

.form-card {
    border: 2px solid var(--pallet-light-pink);
    border-radius: 16px;
    padding: 10px;
    margin-top: 16px;
}

.quote-form .form-group {
    margin-bottom: 16px;
}

.stripe-card-element {
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    background: var(--white);
    min-width: 250px;
}

/* Stripe specific */
.form-error {
    color: #d9534f;
    font-size: 0.9rem;
    margin-top: 8px;
}

.security-note {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 12px;
}

ul.price-details {
    list-style: none;
    color: var(--pallet-green-font);
    font-size: 1.23em;
}

@media screen and (max-width: 615px) {
    ul.price-details {
        padding-left: 0;
    }
}

ul.note {
    font-size: 0.9rem;
    color: var(--gray);
    list-style: none;
    padding-left: 0;
}

@media screen and (min-width: 700px) {
    .quote-wrapper {
        flex-direction: row;
    }

    .quote-card {
        flex: 2.25;
    }

    .quote-aside {
        flex: 1;
    }
}