/*
|--------------------------------------------------------------------------
| REQUEST QUOTE PAGE
|--------------------------------------------------------------------------
|
| File:
| /assets/css/request-quote.css
|
*/

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    background: var(
        --body-background-color,
        #ffffff
    );
    color: var(
        --body-font-color,
        #515151
    );
    font-family: var(
        --font-body,
        Arial,
        Helvetica,
        sans-serif
    );
    font-size: var(
        --body-font-size,
        16px
    );
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

button,
input,
select,
textarea {
    font: inherit;
}

.tc-quote-main {
    width: 100%;
    padding: 55px 20px 75px;
    background: #f5f5f5;
}

.tc-quote-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.tc-quote-heading {
    margin-bottom: 30px;
    text-align: center;
}

.tc-quote-heading h1 {
    margin: 0 0 12px;
    color: #ec008c;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
}

.tc-quote-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: #666666;
    font-size: 17px;
    line-height: 1.6;
}

.tc-quote-alert {
    margin-bottom: 24px;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.tc-quote-alert h2 {
    margin: 0 0 7px;
    font-size: 21px;
}

.tc-quote-alert ul {
    margin: 0;
    padding-left: 21px;
}

.tc-quote-alert-success {
    border: 1px solid #9fd26b;
    background: #efffdc;
    color: #285900;
}

.tc-quote-alert-warning {
    border: 1px solid #e1ba5b;
    background: #fff8dc;
    color: #745000;
}

.tc-quote-alert-error {
    border: 1px solid #ef9acb;
    background: #fff0f8;
    color: #8a0050;
}

.tc-quote-reference {
    margin-top: 8px;
    font-weight: 800;
}

.tc-quote-card {
    overflow: hidden;
    border: 1px solid #dddddd;
    border-radius: 20px;
    background: #ffffff;
    box-shadow:
        0 18px 50px
        rgba(0, 0, 0, 0.08);
}

.tc-quote-card-header {
    padding: 25px 30px;
    background: #111217;
    color: #ffffff;
}

.tc-quote-card-header h2 {
    margin: 0 0 7px;
    color: #00e1d3;
    font-size: 25px;
}

.tc-quote-card-header p {
    margin: 0;
    color: #dddddd;
    line-height: 1.5;
}

.tc-quote-form {
    padding: 30px;
}

.tc-quote-section {
    margin-bottom: 38px;
}

.tc-quote-section:last-child {
    margin-bottom: 0;
}

.tc-quote-section-title {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 20px;
    color: #111111;
    font-size: 21px;
}

.tc-quote-section-title::before {
    width: 7px;
    height: 27px;
    border-radius: 8px;
    background: #ec008c;
    content: "";
}

.tc-quote-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.tc-quote-field {
    min-width: 0;
}

.tc-quote-field-full {
    grid-column: 1 / -1;
}

.tc-quote-field label {
    display: block;
    margin-bottom: 8px;
    color: #222222;
    font-size: 14px;
    font-weight: 700;
}

.tc-required {
    color: #ec008c;
}

.tc-quote-field input,
.tc-quote-field select,
.tc-quote-field textarea {
    display: block;
    width: 100%;
    min-height: 51px;
    padding: 12px 14px;
    border: 1px solid #cccccc;
    border-radius: 9px;
    outline: none;
    background: #ffffff;
    color: #111111;
    font-size: 15px;
}

.tc-quote-field textarea {
    min-height: 145px;
    resize: vertical;
    line-height: 1.55;
}

.tc-quote-field input:focus,
.tc-quote-field select:focus,
.tc-quote-field textarea:focus {
    border-color: #00e1d3;
    box-shadow:
        0 0 0 4px
        rgba(0, 225, 211, 0.15);
}

.tc-deal-title {
    border: 2px solid #00e1d3 !important;
    background: #edfffd !important;
    font-weight: 700;
}

.tc-child-ages {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.tc-child-age-card {
    padding: 15px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #fafafa;
}

.tc-budget-wrap {
    position: relative;
}

.tc-budget-symbol {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 1;
    color: #555555;
    font-weight: 800;
    transform: translateY(-50%);
}

.tc-budget-wrap input {
    padding-left: 38px;
}

.tc-newsletter {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #fafafa;
}

.tc-newsletter input {
    width: 21px;
    min-width: 21px;
    height: 21px;
    min-height: 21px;
    margin: 1px 0 0;
    accent-color: #ec008c;
}

.tc-newsletter label {
    margin: 0;
    cursor: pointer;
    line-height: 1.5;
}

.tc-quote-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #eeeeee;
}

.tc-quote-submit {
    min-width: 240px;
    padding: 15px 24px;
    border: 0;
    border-radius: 9px;
    background: #00e1d3;
    color: #111111;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.tc-quote-submit:hover {
    background: #b5e300;
    box-shadow:
        0 10px 23px
        rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
}

.tc-other-city {
    display: none;
}

.tc-other-city.is-visible {
    display: block;
}

@media (max-width: 800px) {
    .tc-quote-main {
        padding: 40px 15px 60px;
    }

    .tc-quote-form,
    .tc-quote-card-header {
        padding: 22px 20px;
    }

    .tc-quote-grid {
        grid-template-columns: 1fr;
    }

    .tc-quote-field-full {
        grid-column: auto;
    }

    .tc-child-ages {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .tc-child-ages {
        grid-template-columns: 1fr;
    }

    .tc-quote-actions {
        display: block;
    }

    .tc-quote-submit {
        width: 100%;
        min-width: 0;
    }
}
