/* =========================================================
   TOUR PACKAGE BOOKING — Shyam Sarthi Travels
   File: tour-package-booking.css
   Designed to match the existing Book Now navy/gold theme
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --tpb-navy-deep: #04101f;
    --tpb-navy: #0a2147;
    --tpb-navy-light: #12315f;

    --tpb-gold: #e3a63e;
    --tpb-gold-hover: #f0b750;
    --tpb-gold-pale: #f6dca3;

    --tpb-white: #ffffff;
    --tpb-mist: #eef2f8;

    --tpb-text: #17243b;
    --tpb-text-soft: #55617a;
    --tpb-text-dark-bg: #c3ccdb;

    --tpb-border: rgba(10, 33, 71, 0.14);
    --tpb-dark-border: rgba(255, 255, 255, 0.10);

    --tpb-radius: 16px;
    --tpb-radius-small: 10px;

    --tpb-shadow:
        0 18px 55px rgba(4, 16, 31, 0.10);

    --tpb-font-display:
        'Big Shoulders Display',
        'Arial Narrow',
        sans-serif;

    --tpb-font-body:
        'Inter',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;

    --tpb-font-mono:
        'IBM Plex Mono',
        'Courier New',
        monospace;
}


/* =========================================================
   PAGE BASE
========================================================= */

.tpb-page {
    margin: 0;
    padding: 0;

    background: var(--tpb-mist);
    color: var(--tpb-text);

    font-family: var(--tpb-font-body);
}

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


/* =========================================================
   HERO
========================================================= */

.tpb-hero {
    position: relative;
    overflow: hidden;

    padding: 145px 0 85px;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(227, 166, 62, 0.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #04101f 0%,
            #071a35 58%,
            #0a2147 100%
        );

    color: #fff;
}

.tpb-hero::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -100px;
    top: 30px;

    border:
        1px dashed rgba(227, 166, 62, 0.22);

    border-radius: 50%;

    pointer-events: none;
}

.tpb-hero::after {
    content: "";

    position: absolute;

    width: 10px;
    height: 10px;

    right: 175px;
    top: 155px;

    background: var(--tpb-gold);
    border-radius: 50%;

    box-shadow:
        0 0 0 8px rgba(227, 166, 62, 0.10),
        0 0 35px rgba(227, 166, 62, 0.35);

    pointer-events: none;
}

.tpb-hero-inner {
    position: relative;
    z-index: 2;

    max-width: 780px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.tpb-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin: 0 0 28px;

    font-family: var(--tpb-font-mono);
    font-size: 0.78rem;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.06em;

    color: #8e9bb3;
}

.tpb-breadcrumb a {
    color: var(--tpb-gold-pale);
    text-decoration: none;
}

.tpb-breadcrumb a:hover {
    color: #fff;
}

.tpb-eyebrow {
    display: inline-block;

    margin-bottom: 13px;

    font-family: var(--tpb-font-mono);
    font-size: 0.76rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.13em;

    color: var(--tpb-gold);
}

.tpb-hero h1 {
    margin: 0 0 20px;

    font-family: var(--tpb-font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;

    line-height: 0.95;
    letter-spacing: -0.01em;

    text-transform: uppercase;

    color: #fff;
}

.tpb-hero p {
    max-width: 670px;

    margin: 0;

    font-size: 1.03rem;
    line-height: 1.8;

    color: var(--tpb-text-dark-bg);
}


/* =========================================================
   MAIN FORM AREA
========================================================= */

.tpb-form-section {
    position: relative;

    padding: 72px 0 90px;

    background: var(--tpb-mist);
}

.tpb-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    gap: 30px;

    align-items: start;
}


/* =========================================================
   FORM CARD
========================================================= */

.tpb-form-card {
    overflow: hidden;

    background: #fff;

    border:
        1px solid var(--tpb-border);

    border-radius: var(--tpb-radius);

    box-shadow: var(--tpb-shadow);
}

.tpb-heading {
    padding: 38px 42px 32px;

    border-bottom:
        1px solid var(--tpb-border);

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fafd 100%
        );
}

.tpb-heading .tpb-eyebrow {
    margin-bottom: 9px;
}

.tpb-heading h2 {
    margin: 0 0 10px;

    font-family: var(--tpb-font-display);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;

    line-height: 1.05;

    text-transform: uppercase;

    color: var(--tpb-navy);
}

.tpb-heading p {
    max-width: 650px;

    margin: 0;

    font-size: 0.95rem;
    line-height: 1.7;

    color: var(--tpb-text-soft);
}


/* =========================================================
   FORM
========================================================= */

.tpb-form {
    padding: 0 42px 42px;
}


/* =========================================================
   FORM SECTIONS
========================================================= */

.tpb-form-group {
    padding: 38px 0;

    border-bottom:
        1px solid var(--tpb-border);
}

.tpb-group-heading {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 27px;
}

.tpb-group-heading > span {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--tpb-navy);

    font-family: var(--tpb-font-mono);
    font-size: 0.78rem;
    font-weight: 600;

    color: var(--tpb-gold);
}

.tpb-group-heading small {
    display: block;

    margin-bottom: 3px;

    font-family: var(--tpb-font-mono);
    font-size: 0.68rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.12em;

    color: var(--tpb-gold);
}

.tpb-group-heading h3 {
    margin: 0;

    font-family: var(--tpb-font-display);
    font-size: 1.45rem;
    font-weight: 700;

    line-height: 1.1;

    text-transform: uppercase;

    color: var(--tpb-navy);
}


/* =========================================================
   SELECTED PACKAGE
========================================================= */

.tpb-selected-package {
    position: relative;
    overflow: hidden;

    padding: 24px;

    border:
        1px solid rgba(227, 166, 62, 0.45);

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            rgba(227, 166, 62, 0.075),
            rgba(10, 33, 71, 0.025)
        );
}

.tpb-selected-package::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    right: -55px;
    bottom: -55px;

    border-radius: 50%;

    border:
        1px solid rgba(227, 166, 62, 0.20);

    pointer-events: none;
}

.tpb-selected-package-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}

.tpb-selected-label {
    display: block;

    margin-bottom: 7px;

    font-family: var(--tpb-font-mono);
    font-size: 0.64rem;
    font-weight: 600;

    letter-spacing: 0.10em;
    text-transform: uppercase;

    color: var(--tpb-gold);
}

.tpb-selected-package h4 {
    margin: 0;

    font-family: var(--tpb-font-display);
    font-size: 1.65rem;
    font-weight: 800;

    line-height: 1.08;

    text-transform: uppercase;

    color: var(--tpb-navy);
}

.tpb-package-code {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding: 7px 10px;

    border-radius: 7px;

    background: var(--tpb-navy);

    font-family: var(--tpb-font-mono);
    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 0.04em;

    color: var(--tpb-gold);
}

.tpb-package-meta {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 21px;
    padding-top: 18px;

    border-top:
        1px dashed rgba(10, 33, 71, 0.15);
}

.tpb-package-meta > div {
    min-width: 0;
}

.tpb-package-meta span {
    display: block;

    margin-bottom: 4px;

    font-family: var(--tpb-font-mono);
    font-size: 0.61rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.07em;

    color: var(--tpb-text-soft);
}

.tpb-package-meta strong {
    display: block;

    font-size: 0.86rem;
    font-weight: 600;

    line-height: 1.4;

    color: var(--tpb-navy);
}


/* =========================================================
   STANDARD FIELDS
========================================================= */

.tpb-field {
    margin-bottom: 22px;
}

.tpb-field:last-child {
    margin-bottom: 0;
}

.tpb-field > label,
.tpb-section-label {
    display: block;

    margin: 0 0 8px;

    font-size: 0.83rem;
    font-weight: 600;

    line-height: 1.4;

    color: var(--tpb-navy);
}

.tpb-field input,
.tpb-field select,
.tpb-field textarea {
    display: block;

    width: 100%;

    margin: 0;

    border: 1px solid #ccd4e0;
    border-radius: 10px;

    background: #fff;

    font-family: var(--tpb-font-body);
    font-size: 0.94rem;
    font-weight: 400;

    color: var(--tpb-text);

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.tpb-field input,
.tpb-field select {
    height: 52px;

    padding: 0 15px;
}

.tpb-field textarea {
    min-height: 125px;

    padding: 14px 15px;

    line-height: 1.6;

    resize: vertical;
}

.tpb-field input::placeholder,
.tpb-field textarea::placeholder {
    color: #8c97aa;
    opacity: 1;
}

.tpb-field input:hover,
.tpb-field select:hover,
.tpb-field textarea:hover {
    border-color: #aeb9ca;
}

.tpb-field input:focus,
.tpb-field select:focus,
.tpb-field textarea:focus {
    border-color: var(--tpb-gold);

    box-shadow:
        0 0 0 3px rgba(227, 166, 62, 0.13);
}

.tpb-field select,
.tpb-field input[type="date"],
.tpb-field input[type="number"] {
    cursor: pointer;
}


/* =========================================================
   TWO / THREE COLUMN FIELDS
========================================================= */

.tpb-two-columns {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin-bottom: 22px;
}

.tpb-three-columns {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    margin-bottom: 22px;
}

.tpb-two-columns .tpb-field,
.tpb-three-columns .tpb-field {
    margin-bottom: 0;
}


/* =========================================================
   VEHICLE OPTIONS
========================================================= */

.tpb-section-label {
    margin-bottom: 13px;
}

.tpb-vehicle-options {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}

.tpb-vehicle-options label {
    position: relative;

    display: block;

    cursor: pointer;
}

.tpb-vehicle-options input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.tpb-vehicle-options label > span {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 116px;

    padding: 19px 17px;

    border:
        1px solid var(--tpb-border);

    border-radius: 12px;

    background: #f8fafc;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.tpb-vehicle-options label:hover > span {
    border-color:
        rgba(227, 166, 62, 0.65);

    transform: translateY(-2px);
}

.tpb-vehicle-options strong {
    display: block;

    margin-bottom: 7px;

    padding-right: 42px;

    font-family: var(--tpb-font-display);
    font-size: 1.17rem;
    font-weight: 700;

    line-height: 1.1;

    text-transform: uppercase;

    color: var(--tpb-navy);
}

.tpb-vehicle-options small {
    font-size: 0.76rem;

    line-height: 1.45;

    color: var(--tpb-text-soft);
}

.tpb-vehicle-options input:checked + span {
    border-color: var(--tpb-navy);

    background:
        linear-gradient(
            145deg,
            #071a35,
            var(--tpb-navy)
        );

    box-shadow:
        0 9px 24px rgba(4, 16, 31, 0.13);
}

.tpb-vehicle-options input:checked + span::after {
    content: "SELECTED";

    position: absolute;

    right: 10px;
    top: 10px;

    font-family: var(--tpb-font-mono);
    font-size: 0.50rem;
    font-weight: 600;

    letter-spacing: 0.04em;

    color: var(--tpb-gold);
}

.tpb-vehicle-options input:checked + span strong {
    color: #fff;
}

.tpb-vehicle-options input:checked + span small {
    color: #c3ccdb;
}

.tpb-vehicle-options input:focus-visible + span {
    outline:
        2px solid var(--tpb-gold);

    outline-offset: 2px;
}


/* =========================================================
   HOTEL OPTIONS
========================================================= */

.tpb-hotel-title {
    margin-top: 30px;
}

.tpb-hotel-options {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 9px;
}

.tpb-hotel-options label {
    position: relative;

    display: block;

    cursor: pointer;
}

.tpb-hotel-options input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.tpb-hotel-options label > span {
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 8px;

    border:
        1px solid var(--tpb-border);

    border-radius: 10px;

    background: #f8fafc;

    font-family: var(--tpb-font-mono);
    font-size: 0.68rem;
    font-weight: 600;

    line-height: 1.3;

    text-align: center;
    text-transform: uppercase;

    color: var(--tpb-text-soft);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.tpb-hotel-options label:hover > span {
    border-color:
        rgba(227, 166, 62, 0.65);

    color: var(--tpb-navy);
}

.tpb-hotel-options input:checked + span {
    background: var(--tpb-navy);
    border-color: var(--tpb-navy);

    color: #fff;

    box-shadow:
        inset 0 -3px 0 var(--tpb-gold);
}

.tpb-hotel-options input:focus-visible + span {
    outline:
        2px solid var(--tpb-gold);

    outline-offset: 2px;
}


/* =========================================================
   MOBILE NUMBER
========================================================= */

.tpb-mobile-field {
    display: flex;

    overflow: hidden;

    height: 52px;

    border: 1px solid #ccd4e0;
    border-radius: 10px;

    background: #fff;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.tpb-mobile-field:hover {
    border-color: #aeb9ca;
}

.tpb-mobile-field:focus-within {
    border-color: var(--tpb-gold);

    box-shadow:
        0 0 0 3px rgba(227, 166, 62, 0.13);
}

.tpb-mobile-field > span {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 13px;

    border-right:
        1px solid #ccd4e0;

    background: #f4f6f9;

    font-family: var(--tpb-font-mono);
    font-size: 0.78rem;
    font-weight: 600;

    color: var(--tpb-navy);
}

.tpb-mobile-field input {
    min-width: 0;

    height: 50px;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;
}

.tpb-field-error {
    display: block;

    min-height: 0;

    margin-top: 6px;

    font-size: 0.72rem;
    line-height: 1.4;

    color: #b33c3c;
}


/* =========================================================
   SUBMIT
========================================================= */

.tpb-submit-area {
    padding-top: 36px;
}

.tpb-submit-button {
    width: 100%;

    min-height: 57px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 0;
    border-radius: 10px;

    padding: 14px 25px;

    background: var(--tpb-gold);

    font-family: var(--tpb-font-mono);
    font-size: 0.86rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.04em;

    color: #071426;

    cursor: pointer;

    box-shadow:
        0 9px 24px rgba(227, 166, 62, 0.20);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.tpb-submit-button span {
    font-size: 1.15rem;

    transition:
        transform 0.2s ease;
}

.tpb-submit-button:hover {
    background: var(--tpb-gold-hover);

    transform: translateY(-2px);

    box-shadow:
        0 13px 28px rgba(227, 166, 62, 0.27);
}

.tpb-submit-button:hover span {
    transform: translateX(4px);
}

.tpb-submit-button:focus-visible {
    outline:
        3px solid rgba(227, 166, 62, 0.38);

    outline-offset: 3px;
}

.tpb-submit-area p {
    max-width: 590px;

    margin: 13px auto 0;

    font-size: 0.76rem;
    line-height: 1.55;

    text-align: center;

    color: var(--tpb-text-soft);
}


/* =========================================================
   SIDEBAR
========================================================= */

.tpb-sidebar {
    display: flex;
    flex-direction: column;

    gap: 20px;

    position: sticky;
    top: 100px;
}

.tpb-sidebar-card {
    position: relative;
    overflow: hidden;

    padding: 27px 25px;

    border-radius: var(--tpb-radius);

    background:
        linear-gradient(
            145deg,
            #06162b 0%,
            var(--tpb-navy) 100%
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 15px 38px rgba(4, 16, 31, 0.12);

    color: #fff;
}

.tpb-sidebar-card::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -45px;
    top: -45px;

    border-radius: 50%;

    border:
        1px solid rgba(227, 166, 62, 0.20);

    pointer-events: none;
}

.tpb-sidebar-card > span {
    display: block;

    margin-bottom: 10px;

    font-family: var(--tpb-font-mono);
    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 0.12em;

    color: var(--tpb-gold);

    text-transform: uppercase;
}

.tpb-sidebar-card h2 {
    margin: 0 0 21px;

    font-family: var(--tpb-font-display);
    font-size: 1.55rem;
    font-weight: 700;

    line-height: 1.1;

    text-transform: uppercase;

    color: #fff;
}


/* How it works */

.tpb-sidebar-card ol {
    list-style: none;

    padding: 0;
    margin: 0;

    counter-reset: tpb-step;
}

.tpb-sidebar-card ol li {
    position: relative;

    padding:
        0
        0
        21px
        43px;

    margin: 0;

    counter-increment: tpb-step;
}

.tpb-sidebar-card ol li:last-child {
    padding-bottom: 0;
}

.tpb-sidebar-card ol li::before {
    content:
        counter(tpb-step, decimal-leading-zero);

    position: absolute;

    left: 0;
    top: 0;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background:
        rgba(227, 166, 62, 0.11);

    border:
        1px solid rgba(227, 166, 62, 0.26);

    font-family: var(--tpb-font-mono);
    font-size: 0.62rem;
    font-weight: 600;

    color: var(--tpb-gold);
}

.tpb-sidebar-card ol li:not(:last-child)::after {
    content: "";

    position: absolute;

    left: 13px;
    top: 33px;

    width: 1px;
    height: calc(100% - 33px);

    background:
        rgba(255, 255, 255, 0.12);
}

.tpb-sidebar-card ol strong {
    display: block;

    margin-bottom: 4px;

    font-size: 0.82rem;
    font-weight: 600;

    color: #fff;
}

.tpb-sidebar-card ol p {
    margin: 0;

    font-size: 0.75rem;
    line-height: 1.55;

    color: #aeb9ca;
}


/* Travel support */

.tpb-sidebar-card ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.tpb-sidebar-card ul li {
    position: relative;

    margin: 0;

    padding:
        11px
        0
        11px
        24px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    font-size: 0.79rem;
    line-height: 1.45;

    color: #c3ccdb;
}

.tpb-sidebar-card ul li:first-child {
    padding-top: 0;
}

.tpb-sidebar-card ul li:last-child {
    border-bottom: 0;

    padding-bottom: 0;
}

.tpb-sidebar-card ul li::before {
    content: "✓";

    position: absolute;

    left: 0;

    font-family: var(--tpb-font-mono);
    font-weight: 600;

    color: var(--tpb-gold);
}

.tpb-sidebar-card ul li:first-child::before {
    top: 0;
}


/* =========================================================
   VALIDATION
========================================================= */

.tpb-field input:invalid:not(:placeholder-shown):not(:focus),
.tpb-field textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #d36a6a;
}

.tpb-field select:invalid:not(:focus) {
    color: #7c8799;
}

.tpb-field select option {
    color: var(--tpb-text);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .tpb-layout {
        grid-template-columns: 1fr;
    }

    .tpb-sidebar {
        position: static;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 760px) {

    .tpb-hero {
        padding: 120px 0 65px;
    }

    .tpb-form-section {
        padding: 45px 0 65px;
    }

    .tpb-heading {
        padding: 30px 25px 25px;
    }

    .tpb-form {
        padding:
            0
            25px
            30px;
    }

    .tpb-two-columns,
    .tpb-three-columns {
        grid-template-columns: 1fr;

        gap: 21px;
    }

    .tpb-vehicle-options {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .tpb-hotel-options {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .tpb-sidebar {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .tpb-hero {
        padding:
            108px
            0
            54px;
    }

    .tpb-hero::before {
        width: 250px;
        height: 250px;

        right: -120px;
        top: 40px;
    }

    .tpb-hero::after {
        right: 80px;
        top: 125px;
    }

    .tpb-breadcrumb {
        margin-bottom: 22px;

        font-size: 0.68rem;
    }

    .tpb-hero h1 {
        font-size:
            clamp(2.65rem, 15vw, 3.6rem);
    }

    .tpb-hero p {
        font-size: 0.91rem;

        line-height: 1.7;
    }

    .tpb-form-section {
        padding:
            28px
            0
            52px;
    }

    .tpb-form-card {
        border-radius: 13px;
    }

    .tpb-heading {
        padding:
            25px
            18px
            22px;
    }

    .tpb-heading h2 {
        font-size: 1.85rem;
    }

    .tpb-heading p {
        font-size: 0.86rem;
    }

    .tpb-form {
        padding:
            0
            18px
            25px;
    }

    .tpb-form-group {
        padding: 30px 0;
    }

    .tpb-group-heading {
        gap: 12px;

        margin-bottom: 23px;
    }

    .tpb-group-heading > span {
        width: 39px;
        height: 39px;

        flex-basis: 39px;
    }

    .tpb-group-heading h3 {
        font-size: 1.28rem;
    }

    .tpb-selected-package {
        padding: 19px 16px;
    }

    .tpb-selected-package-top {
        display: block;
    }

    .tpb-selected-package h4 {
        font-size: 1.38rem;
    }

    .tpb-package-code {
        margin-top: 12px;
    }

    .tpb-package-meta {
        grid-template-columns: 1fr;

        gap: 11px;
    }

    .tpb-field {
        margin-bottom: 19px;
    }

    .tpb-field input,
    .tpb-field select {
        height: 50px;

        font-size: 16px;
    }

    .tpb-field textarea {
        font-size: 16px;
    }

    .tpb-mobile-field {
        height: 50px;
    }

    .tpb-mobile-field input {
        height: 48px;
    }

    .tpb-vehicle-options {
        grid-template-columns: 1fr;

        gap: 9px;
    }

    .tpb-vehicle-options label > span {
        min-height: auto;

        padding: 16px;
    }

    .tpb-hotel-options {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .tpb-submit-button {
        min-height: 54px;

        font-size: 0.78rem;
    }

    .tpb-sidebar-card {
        padding: 24px 21px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .tpb-heading,
    .tpb-form {
        padding-left: 15px;
        padding-right: 15px;
    }

    .tpb-hotel-options {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .tpb-page *,
    .tpb-page *::before,
    .tpb-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

}
