.pgcf-hub-booking {
    --pg-green: #25735f;
    --pg-green-dark: #185244;
    --pg-blue: #226a91;
    --pg-ink: #17322d;
    --pg-muted: #64736f;
    --pg-pale: #f1f8f5;
    --pg-line: #d8e7e1;
    max-width: 980px;
    margin: 42px auto;
    color: var(--pg-ink);
    font-family: inherit;
}

.pgcf-booking-card {
    margin: 0 0 28px;
    padding: clamp(24px, 5vw, 44px);
    border: 1px solid var(--pg-line);
    border-radius: 22px;
    background: linear-gradient(145deg, #fff 0%, #fbfefd 100%);
    box-shadow: 0 16px 42px rgba(23, 50, 45, .08);
}

.pgcf-booking-kicker {
    margin: 0 0 8px;
    color: var(--pg-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.pgcf-booking-card h2 {
    margin: 0 0 10px;
    color: var(--pg-ink);
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.15;
}

.pgcf-booking-intro {
    max-width: 720px;
    margin: 0 0 26px;
    color: var(--pg-muted);
    font-size: 17px;
    line-height: 1.65;
}

.pgcf-service-switch,
.pgcf-course-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 22px;
}

.pgcf-course-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pgcf-service-switch input,
.pgcf-course-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pgcf-service-switch span,
.pgcf-course-options span {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 2px solid var(--pg-line);
    border-radius: 12px;
    background: #fff;
    color: var(--pg-ink);
    font-weight: 750;
    text-align: center;
    cursor: pointer;
    transition: .16s ease;
}

.pgcf-course-options span {
    min-height: 118px;
    flex-direction: column;
    gap: 5px;
}

.pgcf-course-options em {
    color: var(--pg-blue);
    font-size: 23px;
    font-style: normal;
}

.pgcf-course-options small { color: var(--pg-muted); font-weight: 500; }

.pgcf-service-switch input:checked + span,
.pgcf-course-options input:checked + span {
    border-color: var(--pg-green);
    background: var(--pg-pale);
    box-shadow: inset 0 0 0 1px var(--pg-green);
}

.pgcf-price-note {
    margin-bottom: 24px;
    padding: 15px 18px;
    border-left: 4px solid var(--pg-blue);
    border-radius: 8px;
    background: #eef6fa;
    color: #244c61;
    line-height: 1.55;
}

.pgcf-booking-grid,
.pgcf-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.pgcf-booking-card label,
.pgcf-contact-step label {
    color: var(--pg-ink);
    font-weight: 650;
}

.pgcf-booking-card input[type="date"],
.pgcf-booking-card input[type="number"],
.pgcf-contact-step input[type="text"],
.pgcf-contact-step input[type="email"],
.pgcf-contact-step input[type="tel"] {
    width: 100%;
    min-height: 50px;
    box-sizing: border-box;
    margin-top: 7px;
    padding: 11px 13px;
    border: 1px solid #bfcec9;
    border-radius: 10px;
    background: #fff;
    color: var(--pg-ink);
    font: inherit;
}

.pgcf-derived-dates small {
    display: block;
    margin-top: 6px;
    color: var(--pg-muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.pgcf-derived-dates input:disabled {
    background: #f1f4f3;
    color: #8a9692;
    cursor: not-allowed;
}

.pgcf-booking-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.pgcf-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid var(--pg-line);
    border-radius: 11px;
    background: #fff;
}

.pgcf-check input { margin-top: 4px; }
.pgcf-check span { display: flex; flex-direction: column; gap: 3px; }
.pgcf-check small { color: var(--pg-muted); font-weight: 500; }
.pgcf-check.pgcf-is-disabled { opacity: .48; background: #f4f6f5; }

.pgcf-calculate-button,
.pgcf-beginner-button,
.pgcf-checkout-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 0;
    border-radius: 10px;
    background: var(--pg-green);
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: .16s ease;
}

.pgcf-calculate-button,
.pgcf-beginner-button { width: 100%; }
.pgcf-calculate-button:hover,
.pgcf-beginner-button:hover,
.pgcf-checkout-button:hover { background: var(--pg-green-dark); transform: translateY(-1px); }
.pgcf-calculate-button:disabled,
.pgcf-beginner-button:disabled,
.pgcf-checkout-button:disabled { opacity: .6; cursor: wait; transform: none; }

.pgcf-trip-result,
.pgcf-beginner-result { margin-top: 24px; }

.pgcf-quote {
    overflow: hidden;
    margin: 0 0 20px;
    border: 1px solid var(--pg-line);
    border-radius: 13px;
    background: #fff;
}

.pgcf-quote > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 15px;
    border-bottom: 1px solid #edf2f0;
}

.pgcf-quote > div:last-child { border-bottom: 0; }
.pgcf-quote-total { background: var(--pg-pale); font-size: 18px; }

.pgcf-contact-step {
    padding: 22px;
    border-radius: 14px;
    background: #f3f8fb;
    border: 1px solid #d8e8f1;
}

.pgcf-contact-step h3 { margin: 0 0 5px; font-size: 22px; }
.pgcf-contact-step > p { margin-top: 0; color: var(--pg-muted); }
.pgcf-consent { display: block; margin: 10px 0; font-size: 14px; font-weight: 500 !important; }
.pgcf-consent input { margin-right: 7px; }
.pgcf-checkout-button { margin-top: 12px; }

.pgcf-booking-error {
    margin: 12px 0;
    padding: 12px 14px;
    border: 1px solid #e4b8b3;
    border-radius: 9px;
    background: #fff2f0;
    color: #8e3028;
    font-weight: 650;
}

.pgcf-beginner-card { border-color: #ccdee9; background: linear-gradient(145deg, #fff 0%, #f5faff 100%); }
.pgcf-course-date { display: block; max-width: 420px; margin: 0 0 16px; }
.pgcf-course-deposit { color: var(--pg-blue); font-weight: 750; }

@media (max-width: 760px) {
    .pgcf-service-switch,
    .pgcf-course-options,
    .pgcf-booking-grid,
    .pgcf-contact-grid,
    .pgcf-booking-options { grid-template-columns: 1fr; }
    .pgcf-booking-card { border-radius: 16px; }
    .pgcf-checkout-button { width: 100%; }
}
