/* Shared visual layer for pages outside the homepage. */

.quote-page,
.not-found-page {
    min-height: 100vh;
    background: var(--paper);
    color: var(--ink);
}

.quote-page .quote-hero {
    position: relative;
    min-height: min(620px, 78svh);
    overflow: hidden;
    padding: 174px 0 94px;
    color: #fff;
    background:
        linear-gradient(104deg, rgba(23, 45, 51, 0.96) 0%, rgba(39, 79, 88, 0.78) 48%, rgba(39, 79, 88, 0.45) 100%),
        url("/images/city.jpg") center/cover no-repeat;
}

.quote-page .quote-hero::before,
.not-found-page .not-found-main::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 74px 74px;
    content: "";
    mask-image: linear-gradient(90deg, black, transparent 78%);
    pointer-events: none;
}

.quote-page .quote-hero::after {
    position: absolute;
    right: -150px;
    bottom: -250px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(241, 155, 156, 0.32);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(241, 155, 156, 0.06), 0 0 0 140px rgba(241, 155, 156, 0.035);
    content: "";
    pointer-events: none;
}

.quote-page .quote-hero-inner {
    position: relative;
    z-index: 1;
}

.quote-page .quote-hero .eyebrow {
    margin-bottom: 20px;
    color: var(--sun);
}

.quote-page .quote-hero h1 {
    max-width: 700px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.quote-page .quote-hero p:not(.eyebrow) {
    max-width: 610px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65;
}

.quote-page .quote-form-section {
    position: relative;
    padding: clamp(68px, 9vw, 118px) 0;
    background: var(--cream);
}

.quote-page .quote-intro {
    max-width: 740px;
    margin: 0 auto 42px;
    text-align: center;
}

.quote-page .quote-intro .eyebrow {
    justify-content: center;
    margin-bottom: 18px;
}

.quote-page .quote-intro h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(2.15rem, 4.5vw, 3.8rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 1;
}

.quote-page .quote-intro p:not(.eyebrow) {
    max-width: 620px;
    margin: 18px auto 0;
    color: var(--muted);
    line-height: 1.7;
}

.quote-page .quote-form-card {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.quote-page .quote-steps {
    border-bottom: 0 !important;
    color: #fff;
    background: var(--ink) !important;
}

.quote-page .quote-steps > .relative {
    max-width: 760px !important;
}

.quote-page .quote-steps > .relative > .absolute {
    top: 27px !important;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.2) !important;
}

.quote-page .quote-steps .step-number {
    width: 54px !important;
    height: 54px !important;
    border-color: var(--ink) !important;
    color: rgba(255, 255, 255, 0.72) !important;
    background: rgba(255, 255, 255, 0.11) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16) !important;
}

.quote-page .quote-steps .step-number.bg-teal-500 {
    color: var(--ink) !important;
    background: var(--coral-bright) !important;
}

.quote-page .quote-steps h3 {
    color: rgba(255, 255, 255, 0.58) !important;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
}

.quote-page .quote-steps h3.text-gray-800 {
    color: #fff !important;
}

.quote-page .quote-steps p {
    color: rgba(255, 255, 255, 0.48) !important;
}

.quote-page .quote-form {
    padding: clamp(26px, 5vw, 54px) !important;
}

.quote-page .quote-form .form-step {
    max-width: 820px;
    margin: 0 auto;
}

.quote-page .quote-form .form-step > h3 {
    margin-bottom: 8px !important;
    color: var(--ink) !important;
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.quote-page .quote-form .form-step > p,
.quote-page .quote-form .text-gray-600 {
    color: var(--muted) !important;
}

.quote-page .quote-form label {
    color: var(--ink) !important;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
}

.quote-page .quote-form .required-marker {
    margin-left: 3px;
    color: var(--coral-deep);
}

.quote-page .quote-form .phone-input-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.85fr) minmax(0, 1.15fr);
    gap: 10px;
}

.quote-page .quote-form .form-hint {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.quote-page .quote-form input:not([type="checkbox"]),
.quote-page .quote-form select,
.quote-page .quote-form textarea {
    min-height: 48px;
    border: 1px solid rgba(39, 79, 88, 0.18) !important;
    border-radius: 12px !important;
    outline: 0;
    color: var(--ink) !important;
    background: #fff !important;
    font-family: var(--sans);
    box-shadow: none !important;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.quote-page .quote-form input:not([type="checkbox"]):focus,
.quote-page .quote-form select:focus,
.quote-page .quote-form textarea:focus {
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 4px rgba(117, 211, 199, 0.18) !important;
}

.quote-page .quote-form input[type="checkbox"] {
    accent-color: var(--coral-deep);
}

.quote-page .quote-form .room-item {
    border-color: var(--line) !important;
    border-radius: 14px !important;
    background: var(--cream) !important;
}

.quote-page .quote-form .room-item .room-title,
.quote-page .quote-form .room-item label {
    color: var(--ink) !important;
}

.quote-page .quote-form .next-step,
.quote-page .quote-form #submitButton {
    border: 1px solid var(--coral-deep) !important;
    border-radius: 999px !important;
    color: #fff !important;
    background: var(--coral-deep) !important;
    box-shadow: 0 8px 20px rgba(169, 71, 88, 0.22) !important;
}

.quote-page .quote-form .next-step:hover,
.quote-page .quote-form .next-step:focus-visible,
.quote-page .quote-form #submitButton:hover,
.quote-page .quote-form #submitButton:focus-visible {
    background: #a94758 !important;
    box-shadow: 0 12px 26px rgba(169, 71, 88, 0.3) !important;
    transform: translateY(-2px);
}

.quote-page .quote-form .prev-step {
    border: 1px solid var(--line) !important;
    border-radius: 999px !important;
    color: var(--ink) !important;
    background: transparent !important;
}

.quote-page .quote-form .prev-step:hover,
.quote-page .quote-form .prev-step:focus-visible {
    border-color: var(--teal) !important;
    color: var(--teal-dark) !important;
    background: rgba(117, 211, 199, 0.12) !important;
}

.quote-page .quote-form .border-red-500 {
    border-color: var(--coral-deep) !important;
}

.quote-page .quote-form .error-message {
    color: var(--coral-deep) !important;
}

.quote-page #statusMessage,
.quote-page #notification {
    border: 1px solid var(--line);
    border-radius: 14px !important;
    color: var(--ink) !important;
    background: var(--mist) !important;
}

.quote-page .date-range-group {
    position: relative;
    z-index: 2;
    grid-column: 1 / -1;
    min-width: 0;
}

.quote-page .date-range-group input[type="hidden"] {
    display: none !important;
}

.quote-page .date-range-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 78px;
    gap: 14px;
    padding: 13px 17px;
    border: 1px solid rgba(39, 79, 88, 0.18);
    border-radius: 16px;
    outline: 0;
    color: var(--ink);
    background: linear-gradient(120deg, #fff 0%, #fffaf7 100%);
    font-family: var(--sans);
    text-align: left;
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.quote-page .date-range-trigger:hover,
.quote-page .date-range-group.is-open .date-range-trigger {
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 8px 24px rgba(39, 79, 88, 0.1);
    transform: translateY(-1px);
}

.quote-page .date-range-trigger:focus-visible,
.quote-page .date-range-nav:focus-visible,
.quote-page .date-range-close:focus-visible,
.quote-page .date-range-day:focus-visible,
.quote-page .date-range-clear:focus-visible,
.quote-page .date-range-apply:focus-visible {
    outline: 3px solid rgba(241, 155, 156, 0.58);
    outline-offset: 3px;
}

.quote-page .date-range-trigger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    color: var(--coral-deep);
    background: var(--sun);
    font-size: 18px;
}

.quote-page .date-range-trigger-copy {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.quote-page .date-range-trigger-caption {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
}

.quote-page .date-range-trigger-value {
    overflow: hidden;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quote-page .date-range-trigger:not(.has-value) .date-range-trigger-value {
    color: var(--muted);
    font-weight: 500;
}

.quote-page .date-range-trigger-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--teal-dark);
    font-size: 18px;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.quote-page .date-range-trigger:hover .date-range-trigger-arrow,
.quote-page .date-range-group.is-open .date-range-trigger-arrow {
    color: #fff;
    background: var(--teal);
    transform: rotate(45deg);
}

.quote-page .date-range-hint {
    margin: 8px 2px 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.quote-page .date-range-popover {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 30;
    width: min(440px, calc(100vw - 48px));
    padding: 20px;
    border: 1px solid rgba(39, 79, 88, 0.16);
    border-radius: 22px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 24px 58px rgba(39, 79, 88, 0.2);
    animation: date-range-popover-in 180ms ease-out both;
}

.quote-page .date-range-popover[hidden] {
    display: none !important;
}

.quote-page .date-range-popover-top,
.quote-page .date-range-month-navigation,
.quote-page .date-range-popover-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quote-page .date-range-popover-kicker {
    margin: 0;
    color: var(--coral-deep);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.quote-page .date-range-selection-status {
    min-height: 20px;
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.quote-page .date-range-close,
.quote-page .date-range-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    font: inherit;
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.quote-page .date-range-close:hover,
.quote-page .date-range-nav:hover:not(:disabled) {
    border-color: var(--teal);
    color: #fff;
    background: var(--teal);
}

.quote-page .date-range-close {
    width: 32px;
    height: 32px;
    border: 0;
    color: var(--muted);
    font-size: 24px;
    line-height: 1;
}

.quote-page .date-range-month-navigation {
    gap: 12px;
    margin: 16px 0 12px;
}

.quote-page .date-range-month-title {
    flex: 1;
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    text-align: center;
}

.quote-page .date-range-nav:disabled {
    opacity: 0.32;
    cursor: not-allowed;
}

.quote-page .date-range-weekdays,
.quote-page .date-range-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.quote-page .date-range-weekdays {
    margin-bottom: 6px;
}

.quote-page .date-range-weekdays span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.quote-page .date-range-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    aspect-ratio: 1;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    font: 600 14px/1 var(--sans);
    cursor: pointer;
    transition: color 140ms ease, background-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.quote-page .date-range-day:not(:disabled):hover {
    color: #fff;
    background: var(--teal);
    transform: scale(1.04);
}

.quote-page .date-range-day.is-in-range {
    border-radius: 8px;
    color: var(--teal-dark);
    background: rgba(117, 211, 199, 0.22);
}

.quote-page .date-range-day.is-start,
.quote-page .date-range-day.is-end {
    position: relative;
    z-index: 1;
    color: #fff;
    background: var(--coral-deep);
    box-shadow: 0 5px 12px rgba(189, 88, 102, 0.25);
}

.quote-page .date-range-day.is-end {
    background: var(--teal-dark);
    box-shadow: 0 5px 12px rgba(47, 103, 109, 0.25);
}

.quote-page .date-range-day.is-today:not(.is-start):not(.is-end) {
    box-shadow: inset 0 0 0 2px var(--coral-bright);
}

.quote-page .date-range-day.is-disabled,
.quote-page .date-range-day:disabled {
    color: rgba(97, 116, 119, 0.34);
    background: transparent;
    cursor: not-allowed;
}

.quote-page .date-range-day-empty {
    pointer-events: none;
}

.quote-page .date-range-popover-footer {
    gap: 12px;
    margin-top: 17px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
}

.quote-page .date-range-clear,
.quote-page .date-range-apply {
    min-height: 42px;
    padding: 9px 15px;
    border-radius: 999px;
    font: 700 13px/1.2 var(--sans);
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.quote-page .date-range-clear {
    border: 1px solid var(--line);
    color: var(--muted);
    background: transparent;
}

.quote-page .date-range-clear:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
    background: rgba(117, 211, 199, 0.1);
}

.quote-page .date-range-apply {
    border: 1px solid var(--coral-deep);
    color: #fff;
    background: var(--coral-deep);
}

.quote-page .date-range-apply:hover:not(:disabled) {
    border-color: #a94758;
    background: #a94758;
}

.quote-page .date-range-apply:disabled {
    opacity: 0.42;
    cursor: not-allowed;
}

@keyframes date-range-popover-in {
    from {
        opacity: 0;
        transform: translateY(-5px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.quote-page footer.site-footer {
    background: var(--ink) !important;
    background-image: none !important;
}

.not-found-page {
    display: block;
    margin: 0;
    padding: 0;
    background: var(--ink);
    font-family: var(--sans);
}

body.not-found-page {
    background: var(--ink);
}

.not-found-page .not-found-main {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding: 154px 0 92px;
    color: #fff;
    background: var(--ink);
}

.not-found-page .not-found-main::after {
    position: absolute;
    right: -180px;
    bottom: -300px;
    width: 640px;
    height: 640px;
    border: 1px solid rgba(117, 211, 199, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(117, 211, 199, 0.045), 0 0 0 180px rgba(117, 211, 199, 0.025);
    content: "";
    pointer-events: none;
}

.not-found-page .not-found-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    align-items: center;
    gap: clamp(44px, 8vw, 110px);
}

.not-found-page .not-found-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 24px;
    color: var(--sun);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.not-found-page .not-found-kicker::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral-bright);
    box-shadow: 0 0 0 5px rgba(241, 155, 156, 0.16);
    content: "";
}

.not-found-page .not-found-code {
    margin: 0;
    color: var(--coral-bright);
    font-family: var(--serif);
    font-size: clamp(7rem, 20vw, 13rem);
    font-weight: 600;
    letter-spacing: -0.1em;
    line-height: 0.76;
}

.not-found-page .not-found-title {
    max-width: 600px;
    margin: 34px 0 0;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.9rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.not-found-page .not-found-message {
    max-width: 520px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.7;
}

.not-found-page .not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.not-found-page .not-found-actions .button {
    min-height: 48px;
}

.not-found-page .not-found-card {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px 24px 110px 24px;
    background:
        linear-gradient(145deg, rgba(39, 79, 88, 0.12), rgba(23, 45, 51, 0.78)),
        url("/images/hero-travel.jpg") center/cover no-repeat;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.25);
}

.not-found-page .not-found-card::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 36%, rgba(23, 45, 51, 0.82) 100%);
    content: "";
}

.not-found-page .not-found-card::after {
    position: absolute;
    right: -118px;
    bottom: -158px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(241, 155, 156, 0.45);
    border-radius: 50%;
    content: "";
}

.not-found-page .not-found-card-copy {
    position: absolute;
    z-index: 1;
    right: 28px;
    bottom: 28px;
    left: 28px;
}

.not-found-page .not-found-card-label {
    display: block;
    margin-bottom: 10px;
    color: var(--sun);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.not-found-page .not-found-card-copy strong {
    display: block;
    max-width: 260px;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1;
}

.not-found-page .not-found-card-copy small {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.5;
}

.not-found-page .not-found-card-mark {
    position: absolute;
    z-index: 1;
    top: 26px;
    right: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
}

.not-found-page .not-found-footer {
    color: rgba(255, 255, 255, 0.42);
    background: var(--ink);
}

.not-found-page .not-found-footer .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 820px) {
    .quote-page .quote-hero {
        min-height: 560px;
        padding-top: 138px;
    }

    .quote-page .quote-form-card {
        border-radius: 18px;
    }

    .quote-page .quote-form {
        padding: 24px 18px !important;
    }

    .not-found-page .not-found-main {
        padding-top: 126px;
    }

    .not-found-page .not-found-layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .not-found-page .not-found-card {
        min-height: 360px;
    }
}

@media (max-width: 560px) {
    .quote-page .quote-form .phone-input-row {
        grid-template-columns: 1fr;
    }

    .quote-page .quote-hero {
        min-height: 510px;
        padding: 124px 0 66px;
    }

    .quote-page .quote-hero h1 {
        font-size: clamp(2.85rem, 15vw, 4.7rem);
    }

    .quote-page .quote-steps {
        padding-right: 12px !important;
        padding-left: 12px !important;
    }

    .quote-page .quote-steps .step-number {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.2rem !important;
    }

    .quote-page .quote-steps > .relative > .absolute {
        top: 22px !important;
    }

    .quote-page .quote-steps h3 {
        font-size: 10px;
    }

    .quote-page .quote-steps p {
        display: none;
    }

    .quote-page .quote-form .flex.justify-between {
        align-items: stretch;
        flex-direction: column-reverse;
        gap: 12px;
    }

    .quote-page .quote-form .flex.justify-between button {
        width: 100%;
    }

    .quote-page .date-range-popover {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: none;
        margin-top: 10px;
    }

    .quote-page .date-range-trigger {
        min-height: 72px;
        padding: 11px 13px;
    }

    .quote-page .date-range-trigger-value {
        font-size: 14px;
    }

    .quote-page .date-range-popover-footer {
        align-items: stretch;
    }

    .quote-page .date-range-clear,
    .quote-page .date-range-apply {
        flex: 1;
    }

    .not-found-page .not-found-main {
        padding: 112px 0 68px;
    }

    .not-found-page .not-found-code {
        font-size: 7.8rem;
    }

    .not-found-page .not-found-title {
        margin-top: 28px;
    }

    .not-found-page .not-found-card {
        min-height: 300px;
        border-radius: 18px 18px 74px 18px;
    }

    .not-found-page .not-found-actions,
    .not-found-page .not-found-actions .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .quote-page .date-range-trigger,
    .quote-page .date-range-trigger-arrow,
    .quote-page .date-range-day,
    .quote-page .date-range-popover,
    .quote-page .date-range-nav,
    .quote-page .date-range-close,
    .quote-page .date-range-clear,
    .quote-page .date-range-apply {
        transition: none;
        animation: none;
    }

    .quote-page .quote-form input,
    .quote-page .quote-form select,
    .quote-page .quote-form textarea,
    .quote-page .quote-form button {
        transition: none;
    }
}

@media (max-width: 430px) {
    .quote-page,
    .not-found-page {
        overflow-x: clip;
    }

    .quote-page .quote-hero {
        min-height: 478px;
        padding: 108px 0 52px;
    }

    .quote-page .quote-hero h1 {
        max-width: 100%;
        font-size: clamp(2.65rem, 14vw, 4rem);
        overflow-wrap: anywhere;
    }

    .quote-page .quote-form-section {
        padding: 56px 0 72px;
    }

    .quote-page .quote-form-card {
        border-radius: 16px;
    }

    .quote-page .quote-form {
        padding: 20px 14px !important;
    }

    .quote-page .quote-form input:not([type="checkbox"]),
    .quote-page .quote-form select,
    .quote-page .quote-form textarea,
    .quote-page .quote-form button,
    .quote-page .date-range-trigger,
    .quote-page .date-range-day,
    .quote-page .date-range-close,
    .quote-page .date-range-nav,
    .quote-page .date-range-clear,
    .quote-page .date-range-apply {
        min-height: 48px;
    }

    .quote-page .quote-form .form-step > h3,
    .quote-page .quote-intro h2 {
        font-size: clamp(1.9rem, 10vw, 2.7rem);
        overflow-wrap: anywhere;
    }

    .quote-page .quote-form .room-item {
        padding: 14px !important;
    }

    .not-found-page .not-found-main {
        padding: 104px 0 58px;
    }

    .not-found-page .not-found-code {
        font-size: clamp(5.8rem, 28vw, 8rem);
    }

    .not-found-page .not-found-card-mark {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }

    .not-found-page .not-found-actions .button {
        min-height: 44px;
    }
}
