/*
 * Travelophila reusable destination/package page styles
 * File: travelophila-packages.css
 * Version: 1.0.0
 *
 * Designed for HTML using the tpp-* class prefix.
 * Safe to reuse for Nainital and future destination landing pages.
 */

.tpp-page,
.tpp-page * {
    box-sizing: border-box;
}

.tpp-page {
    --tpp-primary: #075985;
    --tpp-primary-dark: #082f49;
    --tpp-primary-soft: #eaf7fc;
    --tpp-accent: #f97316;
    --tpp-accent-dark: #c2410c;
    --tpp-accent-soft: #fff4e8;
    --tpp-green: #31715b;
    --tpp-ink: #172434;
    --tpp-muted: #5f6f7d;
    --tpp-line: #dce7ed;
    --tpp-surface: #f6fafc;
    --tpp-white: #ffffff;
    --tpp-shadow-sm: 0 8px 24px rgba(8, 47, 73, 0.07);
    --tpp-shadow-md: 0 18px 45px rgba(8, 47, 73, 0.11);
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    color: var(--tpp-ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.75;
}

.tpp-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

.tpp-page h2,
.tpp-page h3 {
    color: var(--tpp-primary-dark);
    font-family: inherit;
    font-weight: 800;
    line-height: 1.22;
}

.tpp-page h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 4vw, 43px);
    letter-spacing: -0.7px;
}

.tpp-page h3 {
    margin: 0 0 11px;
    font-size: 22px;
}

.tpp-page p {
    margin: 0 0 18px;
}

.tpp-page p:last-child {
    margin-bottom: 0;
}

.tpp-page a {
    color: var(--tpp-primary);
    text-underline-offset: 3px;
}

.tpp-kicker,
.tpp-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--tpp-accent-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.6px;
    line-height: 1.4;
    text-transform: uppercase;
}

.tpp-section {
    padding: 58px 0;
    border-bottom: 1px solid var(--tpp-line);
    scroll-margin-top: 110px;
}

.tpp-section:last-of-type {
    border-bottom: 0;
}

.tpp-section-heading {
    max-width: 860px;
    margin-bottom: 30px;
}

.tpp-section-heading > p {
    color: var(--tpp-muted);
    font-size: 18px;
}

.tpp-section-heading-centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

/* Hero */

.tpp-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(34px, 6vw, 72px);
    border: 1px solid #d4e6ee;
    border-radius: 28px;
    background:
        radial-gradient(circle at 92% 15%, rgba(249, 115, 22, 0.19), transparent 27%),
        radial-gradient(circle at 2% 100%, rgba(49, 113, 91, 0.14), transparent 32%),
        linear-gradient(135deg, #f9fdff 0%, #e8f6fb 100%);
    box-shadow: var(--tpp-shadow-md);
}

.tpp-hero::before,
.tpp-hero::after {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.tpp-hero::before {
    top: -125px;
    right: -95px;
    width: 310px;
    height: 310px;
    border: 48px solid rgba(7, 89, 133, 0.07);
}

.tpp-hero::after {
    right: 18%;
    bottom: -110px;
    width: 210px;
    height: 210px;
    border: 30px solid rgba(249, 115, 22, 0.08);
}

.tpp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.tpp-hero .tpp-kicker {
    color: var(--tpp-primary);
}

.tpp-hero h2 {
    max-width: 900px;
    margin-bottom: 20px;
    font-size: clamp(34px, 5.4vw, 61px);
    letter-spacing: -1.5px;
}

.tpp-lead {
    max-width: 880px;
    color: #30485a;
    font-size: clamp(18px, 2.1vw, 22px);
    line-height: 1.7;
}

.tpp-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.tpp-button {
    display: inline-flex;
    min-height: 50px;
    padding: 13px 22px;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.tpp-button:hover {
    transform: translateY(-2px);
}

.tpp-button-primary {
    background: var(--tpp-accent);
    color: var(--tpp-white) !important;
    box-shadow: 0 10px 22px rgba(194, 65, 12, 0.2);
}

.tpp-button-primary:hover {
    background: var(--tpp-accent-dark);
}

.tpp-button-secondary {
    border-color: var(--tpp-primary);
    background: var(--tpp-white);
    color: var(--tpp-primary-dark) !important;
}

.tpp-button-secondary:hover {
    background: var(--tpp-primary-soft);
}

.tpp-button-whatsapp {
    background: #1fa855;
    color: var(--tpp-white) !important;
    box-shadow: 0 10px 22px rgba(31, 168, 85, 0.18);
}

.tpp-button-whatsapp:hover {
    background: #168644;
}

.tpp-fact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-top: 42px;
    border: 1px solid rgba(8, 47, 73, 0.11);
    border-radius: 15px;
    background: rgba(8, 47, 73, 0.12);
    box-shadow: var(--tpp-shadow-sm);
}

.tpp-fact {
    min-height: 106px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
}

.tpp-fact-label {
    display: block;
    margin-bottom: 5px;
    color: var(--tpp-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.tpp-fact strong {
    display: block;
    color: var(--tpp-primary-dark);
    font-size: 16px;
    line-height: 1.45;
}

/* Jump navigation */

.tpp-jump-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin: 24px 0 0;
    padding: 14px;
    border: 1px solid var(--tpp-line);
    border-radius: 14px;
    background: var(--tpp-white);
    box-shadow: var(--tpp-shadow-sm);
}

.tpp-jump-nav a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--tpp-primary-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.tpp-jump-nav a:hover {
    background: var(--tpp-primary-soft);
    color: var(--tpp-primary);
}

/* Introduction */

.tpp-prose {
    color: #334655;
}

.tpp-prose-columns {
    column-count: 2;
    column-gap: 45px;
}

.tpp-prose-columns p {
    break-inside: avoid;
}

/* Package cards */

.tpp-packages-section {
    position: relative;
}

.tpp-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.tpp-package-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    padding: 27px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--tpp-line);
    border-radius: 18px;
    background: var(--tpp-white);
    box-shadow: var(--tpp-shadow-sm);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.tpp-package-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--tpp-primary), var(--tpp-accent));
    content: "";
}

.tpp-package-card:hover {
    transform: translateY(-5px);
    border-color: #bcd8e4;
    box-shadow: var(--tpp-shadow-md);
}

.tpp-package-card-top {
    display: flex;
    min-height: 32px;
    margin-bottom: 17px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.tpp-package-tag {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--tpp-accent-soft);
    color: var(--tpp-accent-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.4px;
    line-height: 1.35;
    text-transform: uppercase;
}

.tpp-package-duration {
    flex: 0 0 auto;
    color: var(--tpp-muted);
    font-size: 13px;
    font-weight: 800;
}

.tpp-package-card h3 {
    font-size: 23px;
}

.tpp-package-card > p {
    color: var(--tpp-muted);
}

.tpp-mini-list {
    margin: 2px 0 23px;
    padding: 0;
    list-style: none;
}

.tpp-mini-list li {
    position: relative;
    margin: 8px 0;
    padding-left: 23px;
    color: #405260;
    font-size: 15px;
    line-height: 1.55;
}

.tpp-mini-list li::before {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--tpp-accent);
    border-radius: 50%;
    content: "";
}

.tpp-text-link {
    display: inline-flex;
    margin-top: auto;
    align-items: center;
    gap: 7px;
    color: var(--tpp-primary) !important;
    font-weight: 900;
    text-decoration: none !important;
}

.tpp-text-link span {
    font-size: 21px;
    transition: transform 0.2s ease;
}

.tpp-text-link:hover span {
    transform: translateX(4px);
}

.tpp-small-note {
    max-width: 850px;
    margin: 24px auto 0 !important;
    color: var(--tpp-muted);
    font-size: 14px;
    text-align: center;
}

/* Features */

.tpp-feature-grid,
.tpp-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.tpp-feature-card,
.tpp-benefit {
    padding: 27px;
    border: 1px solid var(--tpp-line);
    border-radius: 16px;
    background: var(--tpp-white);
    box-shadow: var(--tpp-shadow-sm);
}

.tpp-feature-icon {
    display: inline-grid;
    width: 45px;
    height: 45px;
    margin-bottom: 17px;
    place-items: center;
    border-radius: 13px;
    background: var(--tpp-primary-dark);
    color: var(--tpp-white);
    font-size: 14px;
    font-weight: 900;
}

.tpp-feature-card p,
.tpp-benefit p {
    color: var(--tpp-muted);
}

.tpp-benefit {
    position: relative;
    padding-top: 31px;
}

.tpp-benefit::before {
    position: absolute;
    top: 0;
    left: 27px;
    width: 58px;
    height: 4px;
    border-radius: 0 0 5px 5px;
    background: var(--tpp-accent);
    content: "";
}

/* Seasons */

.tpp-season-section {
    position: relative;
}

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

.tpp-season-card {
    padding: 29px;
    border: 1px solid var(--tpp-line);
    border-radius: 18px;
    background: linear-gradient(145deg, var(--tpp-white), var(--tpp-surface));
    box-shadow: var(--tpp-shadow-sm);
}

.tpp-season-card:nth-child(2),
.tpp-season-card:nth-child(4) {
    background: linear-gradient(145deg, #f8fffc, #ecf8f2);
}

.tpp-season-months {
    display: inline-block;
    margin-bottom: 13px;
    padding: 6px 11px;
    border-radius: 8px;
    background: var(--tpp-primary-soft);
    color: var(--tpp-primary);
    font-size: 13px;
    font-weight: 900;
}

.tpp-season-card p {
    color: var(--tpp-muted);
}

/* Routes */

.tpp-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.tpp-route-card {
    padding: 28px;
    border: 1px solid var(--tpp-line);
    border-radius: 17px;
    background: var(--tpp-surface);
}

.tpp-route-label {
    display: block;
    margin-bottom: 11px;
    color: var(--tpp-accent-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tpp-route-card p {
    color: var(--tpp-muted);
}

/* Timeline */

.tpp-timeline {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tpp-timeline-item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 20px;
    margin: 0;
    padding: 23px;
    align-items: start;
    border: 1px solid var(--tpp-line);
    border-radius: 15px;
    background: var(--tpp-white);
    box-shadow: var(--tpp-shadow-sm);
}

.tpp-timeline-number {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    background: var(--tpp-accent);
    color: var(--tpp-white);
    font-weight: 900;
}

.tpp-timeline-item h3 {
    margin-top: 2px;
}

.tpp-timeline-item p {
    color: var(--tpp-muted);
}

/* Inclusions */

.tpp-two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 32px;
    align-items: start;
}

.tpp-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tpp-check-list li {
    position: relative;
    margin: 0;
    padding: 14px 15px 14px 47px;
    border: 1px solid var(--tpp-line);
    border-radius: 12px;
    background: var(--tpp-surface);
    line-height: 1.55;
}

.tpp-check-list li::before {
    position: absolute;
    top: 14px;
    left: 15px;
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    background: var(--tpp-green);
    color: var(--tpp-white);
    content: "✓";
    font-size: 13px;
    font-weight: 900;
}

.tpp-note-card {
    padding: 30px;
    border-left: 5px solid var(--tpp-accent);
    border-radius: 0 17px 17px 0;
    background: var(--tpp-primary-dark);
    color: #e9f5fb;
    box-shadow: var(--tpp-shadow-md);
}

.tpp-note-card h3 {
    color: var(--tpp-white);
}

.tpp-note-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #ffb985;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* Packing chips */

.tpp-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tpp-chip-list li {
    margin: 0;
    padding: 10px 15px;
    border: 1px solid #cfe1e9;
    border-radius: 999px;
    background: var(--tpp-primary-soft);
    color: var(--tpp-primary-dark);
    font-size: 15px;
    font-weight: 700;
}

/* FAQs */

.tpp-faq-list {
    border-top: 1px solid var(--tpp-line);
}

.tpp-faq-item {
    margin: 0;
    border-bottom: 1px solid var(--tpp-line);
    background: var(--tpp-white);
}

.tpp-faq-item summary {
    position: relative;
    padding: 21px 55px 21px 2px;
    color: var(--tpp-primary-dark);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.tpp-faq-item summary::-webkit-details-marker {
    display: none;
}

.tpp-faq-item summary::after {
    position: absolute;
    top: 13px;
    right: 4px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--tpp-primary-soft);
    color: var(--tpp-primary);
    content: "+";
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
}

.tpp-faq-item[open] summary::after {
    content: "−";
}

.tpp-faq-item[open] summary {
    color: var(--tpp-accent-dark);
}

.tpp-faq-answer {
    max-width: 940px;
    padding: 0 55px 22px 2px;
    color: var(--tpp-muted);
}

/* CTA */

.tpp-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin: 58px 0 20px;
    padding: clamp(36px, 6vw, 65px);
    border-radius: 25px;
    background:
        radial-gradient(circle at 90% 8%, rgba(249, 115, 22, 0.24), transparent 28%),
        linear-gradient(135deg, var(--tpp-primary-dark), #075985);
    color: #eaf7fc;
    text-align: center;
    box-shadow: var(--tpp-shadow-md);
}

.tpp-cta::before {
    position: absolute;
    z-index: -1;
    bottom: -120px;
    left: -75px;
    width: 270px;
    height: 270px;
    border: 40px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.tpp-cta .tpp-kicker {
    color: #ffb985;
}

.tpp-cta h2 {
    color: var(--tpp-white);
}

.tpp-cta > p {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.tpp-cta .tpp-button-row {
    justify-content: center;
}

.tpp-cta .tpp-button-secondary {
    border-color: rgba(255, 255, 255, 0.8);
    background: transparent;
    color: var(--tpp-white) !important;
}

.tpp-cta .tpp-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tpp-cta-contact {
    margin-top: 24px !important;
    color: #cde6f1;
    font-size: 14px;
}

.tpp-cta-contact a {
    color: var(--tpp-white);
    font-weight: 700;
}

.tpp-cta-contact span {
    display: inline-block;
    margin: 0 8px;
}

/* Nainital enquiry form */

.tpp-enquiry-section,
.tpp-enquiry-section * {
    box-sizing: border-box;
}

.tpp-enquiry-section {
    --tpp-form-navy: #082f49;
    --tpp-form-blue: #075985;
    --tpp-form-orange: #f97316;
    --tpp-form-orange-dark: #c2410c;
    --tpp-form-ink: #172434;
    --tpp-form-muted: #647584;
    --tpp-form-line: #d8e4ea;
    --tpp-form-surface: #f4f8fa;
    display: grid;
    width: 100%;
    max-width: 1160px;
    margin: 58px auto;
    grid-template-columns: minmax(270px, 0.38fr) minmax(0, 0.62fr);
    overflow: hidden;
    border: 1px solid var(--tpp-form-line);
    border-radius: 24px;
    background: #ffffff;
    color: var(--tpp-form-ink);
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 22px 55px rgba(8, 47, 73, 0.12);
    scroll-margin-top: 110px;
}

.tpp-enquiry-intro {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(32px, 5vw, 52px);
    background:
        radial-gradient(circle at 95% 4%, rgba(249, 115, 22, 0.25), transparent 27%),
        linear-gradient(150deg, var(--tpp-form-navy), var(--tpp-form-blue));
    color: #e7f4fa;
}

.tpp-enquiry-intro::after {
    position: absolute;
    z-index: -1;
    right: -80px;
    bottom: -105px;
    width: 250px;
    height: 250px;
    border: 38px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.tpp-enquiry-intro .tpp-eyebrow {
    color: #ffb985;
}

.tpp-enquiry-intro h2 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 43px);
    font-weight: 800;
    letter-spacing: -0.7px;
    line-height: 1.2;
}

.tpp-enquiry-intro > p {
    margin: 0 0 25px;
    color: #d6eaf3;
    font-size: 17px;
    line-height: 1.7;
}

.tpp-enquiry-points {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tpp-enquiry-points li {
    position: relative;
    margin: 0;
    padding-left: 32px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

.tpp-enquiry-points li::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--tpp-form-orange);
    color: #ffffff;
    content: "✓";
    font-size: 12px;
    font-weight: 900;
}

.tpp-enquiry-panel {
    min-width: 0;
    padding: clamp(28px, 5vw, 50px);
    background: #ffffff;
}

.tpp-form-notice {
    display: grid;
    gap: 3px;
    margin-bottom: 24px;
    padding: 15px 17px;
    border-radius: 11px;
    font-size: 14px;
    line-height: 1.5;
}

.tpp-form-notice strong {
    font-size: 15px;
}

.tpp-form-notice-success {
    border: 1px solid #a8dac0;
    background: #ecf9f2;
    color: #165c37;
}

.tpp-form-notice-error {
    border: 1px solid #f1b8b8;
    background: #fff1f1;
    color: #8a2424;
}

.tpp-enquiry-form {
    margin: 0;
}

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

.tpp-form-field {
    min-width: 0;
}

.tpp-form-field-full {
    grid-column: 1 / -1;
}

.tpp-form-field > label:not(.tpp-consent) {
    display: block;
    margin: 0 0 8px;
    color: var(--tpp-form-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

.tpp-form-field > label span[aria-hidden="true"] {
    color: #dc2626;
}

.tpp-form-field input:not([type="checkbox"]),
.tpp-form-field select,
.tpp-form-field textarea {
    display: block;
    width: 100%;
    margin: 0;
    border: 1px solid var(--tpp-form-line);
    border-radius: 10px;
    outline: 0;
    background: var(--tpp-form-surface);
    color: var(--tpp-form-ink);
    font: inherit;
    font-size: 15px;
    line-height: 1.45;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.tpp-form-field input:not([type="checkbox"]),
.tpp-form-field select {
    min-height: 54px;
    padding: 0 15px;
}

.tpp-form-field textarea {
    min-height: 130px;
    padding: 14px 15px;
    resize: vertical;
}

.tpp-form-field input::placeholder,
.tpp-form-field textarea::placeholder {
    color: #8c9aa5;
    opacity: 1;
}

.tpp-form-field input:focus,
.tpp-form-field select:focus,
.tpp-form-field textarea:focus {
    border-color: var(--tpp-form-blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(7, 89, 133, 0.12);
}

.tpp-form-field select {
    cursor: pointer;
}

.tpp-consent {
    display: grid;
    grid-template-columns: 21px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--tpp-form-muted);
    font-size: 13px;
    line-height: 1.55;
    cursor: pointer;
}

.tpp-consent input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--tpp-form-blue);
}

.tpp-consent a {
    color: var(--tpp-form-blue);
    font-weight: 700;
}

.tpp-form-submit {
    display: inline-flex;
    min-height: 55px;
    width: 100%;
    padding: 14px 22px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: var(--tpp-form-orange);
    color: #ffffff;
    font: inherit;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    cursor: pointer;
    box-shadow: 0 11px 24px rgba(194, 65, 12, 0.19);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.tpp-form-submit:hover {
    transform: translateY(-2px);
    background: var(--tpp-form-orange-dark);
    box-shadow: 0 14px 29px rgba(194, 65, 12, 0.24);
}

.tpp-form-submit:focus-visible {
    outline: 3px solid rgba(249, 115, 22, 0.4);
    outline-offset: 4px;
}

.tpp-form-assurance {
    margin: 10px 0 0;
    color: var(--tpp-form-muted);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.tpp-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Keyboard focus */

.tpp-page a:focus-visible,
.tpp-page summary:focus-visible {
    outline: 3px solid rgba(249, 115, 22, 0.6);
    outline-offset: 4px;
}

/* Tablet */

@media (max-width: 980px) {
    .tpp-page {
        width: min(100% - 32px, 1160px);
    }

    .tpp-fact-grid,
    .tpp-package-grid,
    .tpp-feature-grid,
    .tpp-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tpp-route-grid {
        grid-template-columns: 1fr;
    }

    .tpp-two-column {
        grid-template-columns: 1fr;
    }

    .tpp-note-card {
        border-top: 5px solid var(--tpp-accent);
        border-left: 0;
        border-radius: 0 0 17px 17px;
    }

    .tpp-enquiry-section {
        grid-template-columns: 1fr;
    }

    .tpp-enquiry-intro {
        padding: 35px;
    }

    .tpp-enquiry-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 15px;
    }
}

/* Mobile */

@media (max-width: 680px) {
    .tpp-page {
        width: min(100% - 24px, 1160px);
        font-size: 16px;
        line-height: 1.7;
    }

    .tpp-page h2 {
        font-size: clamp(27px, 9vw, 36px);
        letter-spacing: -0.4px;
    }

    .tpp-page h3 {
        font-size: 21px;
    }

    .tpp-hero {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .tpp-hero h2 {
        font-size: clamp(33px, 11vw, 45px);
        letter-spacing: -0.9px;
    }

    .tpp-lead {
        font-size: 18px;
    }

    .tpp-button-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .tpp-button {
        width: 100%;
    }

    .tpp-fact-grid,
    .tpp-package-grid,
    .tpp-feature-grid,
    .tpp-benefit-grid,
    .tpp-season-grid,
    .tpp-check-list {
        grid-template-columns: 1fr;
    }

    .tpp-fact {
        min-height: 0;
        padding: 17px 18px;
    }

    .tpp-jump-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .tpp-jump-nav a {
        flex: 0 0 auto;
    }

    .tpp-section {
        padding: 42px 0;
        scroll-margin-top: 90px;
    }

    .tpp-section-heading > p {
        font-size: 16px;
    }

    .tpp-prose-columns {
        column-count: 1;
    }

    .tpp-package-card,
    .tpp-feature-card,
    .tpp-benefit,
    .tpp-season-card,
    .tpp-route-card {
        padding: 23px 20px;
    }

    .tpp-timeline-item {
        grid-template-columns: 1fr;
        gap: 13px;
        padding: 20px;
    }

    .tpp-timeline-number {
        width: 46px;
        height: 46px;
    }

    .tpp-note-card {
        padding: 25px 21px;
    }

    .tpp-chip-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .tpp-chip-list li {
        border-radius: 11px;
    }

    .tpp-faq-item summary {
        padding: 19px 46px 19px 0;
        font-size: 17px;
    }

    .tpp-faq-item summary::after {
        right: 0;
        width: 32px;
        height: 32px;
        font-size: 22px;
    }

    .tpp-faq-answer {
        padding: 0 0 20px;
    }

    .tpp-cta {
        margin-top: 42px;
        padding: 34px 20px;
        border-radius: 18px;
    }

    .tpp-cta-contact span {
        display: block;
        height: 4px;
        overflow: hidden;
        color: transparent;
    }

    .tpp-enquiry-section {
        margin: 40px auto;
        border-radius: 18px;
        scroll-margin-top: 90px;
    }

    .tpp-enquiry-intro,
    .tpp-enquiry-panel {
        padding: 28px 20px;
    }

    .tpp-enquiry-intro h2 {
        font-size: 32px;
    }

    .tpp-enquiry-points,
    .tpp-form-grid {
        grid-template-columns: 1fr;
    }

    .tpp-form-field-full {
        grid-column: auto;
    }

    .tpp-form-grid {
        gap: 18px;
    }
}

/* Reduced-motion support */

@media (prefers-reduced-motion: reduce) {
    .tpp-page *,
    .tpp-page *::before,
    .tpp-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
