:root {
    --pt-black: #11120f;
    --pt-ink: #22231f;
    --pt-muted: #62645e;
    --pt-gold: #ffd200;
    --pt-gold-soft: #fff3ac;
    --pt-ivory: #f7f2e7;
    --pt-white: #ffffff;
    --pt-green: #148344;
    --pt-green-dark: #0f6b37;
    --pt-line: #ddd8cc;
    --pt-radius: 24px;
    --pt-shadow: 0 20px 60px rgba(22, 22, 18, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--pt-ink);
    background: var(--pt-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.pt-shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.pt-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(17, 18, 15, .1);
    background: rgba(255, 255, 255, .96);
}
.pt-header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.pt-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--pt-black); text-decoration: none; }
.pt-brand img { width: 58px; height: 58px; object-fit: contain; }
.pt-brand span { display: grid; line-height: 1.2; }
.pt-brand strong { font-size: 18px; }
.pt-brand small { margin-top: 5px; color: var(--pt-muted); font-size: 12px; }
.pt-header-actions { display: flex; align-items: center; gap: 20px; }
.pt-text-link { font-weight: 750; text-decoration: none; }
.pt-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border: 2px solid transparent;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: .01em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.pt-button:hover, .pt-button:focus-visible { transform: translateY(-2px); }
.pt-button:focus-visible, .pt-inline-link:focus-visible, .pt-quick-nav a:focus-visible, summary:focus-visible {
    outline: 3px solid #1677ff;
    outline-offset: 3px;
}
.pt-button-small { min-height: 44px; padding: 10px 17px; font-size: 14px; }
.pt-button-whatsapp { color: var(--pt-white); background: var(--pt-green); box-shadow: 0 10px 24px rgba(20, 131, 68, .2); }
.pt-button-whatsapp:hover, .pt-button-whatsapp:focus-visible { color: var(--pt-white); background: var(--pt-green-dark); }
.pt-button-call { color: var(--pt-black); border-color: var(--pt-black); background: var(--pt-white); }
.pt-button-call:hover, .pt-button-call:focus-visible { background: var(--pt-gold); }
.pt-button-request { color: var(--pt-black); border-color: var(--pt-gold); background: var(--pt-gold); box-shadow: 0 10px 24px rgba(158, 125, 0, .18); }
.pt-button-request:hover, .pt-button-request:focus-visible { border-color: #e8be00; background: #e8be00; }
.pt-button-fare { color: var(--pt-black); border-color: #807b6e; background: rgba(255,255,255,.72); }
.pt-button-fare:hover, .pt-button-fare:focus-visible { border-color: var(--pt-black); background: #fff; }
.pt-button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.pt-button-row-center { justify-content: center; }
.pt-primary-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.pt-primary-actions .pt-button { min-width: 0; padding-inline: 15px; }

.pt-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 70px;
    background:
        radial-gradient(circle at 89% 16%, rgba(255, 210, 0, .42) 0, rgba(255, 210, 0, 0) 31%),
        linear-gradient(135deg, #fffdf8 0%, var(--pt-ivory) 100%);
}
.pt-hero::after {
    position: absolute;
    right: -180px;
    bottom: -290px;
    width: 620px;
    height: 620px;
    border: 80px solid rgba(255, 210, 0, .35);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}
.pt-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr); align-items: center; gap: 62px; }
.pt-kicker { margin: 0 0 14px; color: #765f00; font-size: 13px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { color: var(--pt-black); font-weight: 900; line-height: 1.12; }
h1 { max-width: 760px; margin: 0; font-size: clamp(44px, 6vw, 76px); letter-spacing: -.055em; }
h2 { margin: 0 0 20px; font-size: clamp(31px, 4vw, 48px); letter-spacing: -.035em; }
h3 { margin: 0 0 16px; font-size: 21px; }
.pt-subheadline { margin: 17px 0 12px; color: var(--pt-black); font-size: clamp(23px, 3vw, 31px); font-weight: 800; line-height: 1.25; }
.pt-lead, .pt-section-intro { max-width: 780px; color: #4e504a; font-size: 19px; }
.pt-lead { margin: 0 0 28px; }
.pt-trust-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 26px 0 0; padding: 0; list-style: none; }
.pt-trust-list li { padding: 7px 11px; border: 1px solid #d7d1c3; border-radius: 999px; background: rgba(255,255,255,.76); font-size: 13px; font-weight: 750; }
.pt-hero-card { padding: 29px; border: 1px solid rgba(17,18,15,.12); border-radius: 30px; background: rgba(255,255,255,.94); box-shadow: var(--pt-shadow); }
.pt-hero-card-top { display: flex; align-items: center; gap: 17px; padding-bottom: 22px; border-bottom: 1px solid var(--pt-line); }
.pt-hero-card-top img { width: 74px; height: 74px; border-radius: 16px; object-fit: contain; }
.pt-hero-card-top div { display: grid; gap: 4px; }
.pt-hero-card-top span { color: var(--pt-muted); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.pt-hero-card-top strong { color: var(--pt-black); font-size: 18px; }
.pt-route-list { display: grid; gap: 19px; margin: 23px 0; padding: 0; list-style: none; }
.pt-route-list li { display: flex; align-items: flex-start; gap: 14px; }
.pt-route-list > li > span { display: grid; width: 36px; height: 36px; flex: 0 0 36px; place-items: center; border-radius: 50%; color: var(--pt-black); background: var(--pt-gold); font-size: 11px; font-weight: 900; }
.pt-route-list div { display: grid; line-height: 1.35; }
.pt-route-list strong { color: var(--pt-black); font-size: 16px; }
.pt-route-list small { margin-top: 3px; color: var(--pt-muted); font-size: 13px; }
.pt-card-note { margin: 0; padding: 13px 15px; border-radius: 12px; background: var(--pt-ivory); color: #4e504a; font-size: 13px; }

.pt-quick-nav { position: sticky; top: 0; z-index: 15; overflow-x: auto; border-top: 1px solid #262720; border-bottom: 1px solid #262720; background: var(--pt-black); scrollbar-width: thin; }
.pt-quick-nav .pt-shell { display: flex; align-items: center; justify-content: center; }
.pt-quick-nav a { flex: 0 0 auto; padding: 15px 17px; color: #fff; font-size: 13px; font-weight: 750; text-decoration: none; }
.pt-quick-nav a:hover { color: var(--pt-gold); }

.pt-section { padding: 88px 0; }
.pt-section p { color: var(--pt-muted); }
.pt-two-column { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr); align-items: center; gap: 70px; }
.pt-two-column-reverse { grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr); }
.pt-direction-card { padding: 30px; border: 1px solid var(--pt-line); border-radius: var(--pt-radius); background: var(--pt-ivory); box-shadow: 0 14px 40px rgba(21,21,18,.07); }
.pt-direction-card-gold { background: linear-gradient(145deg, var(--pt-gold-soft), #fffaf0); }
.pt-direction-card ul, .pt-checklist ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.pt-direction-card li, .pt-checklist li { position: relative; padding-left: 25px; }
.pt-direction-card li::before, .pt-checklist li::before { position: absolute; left: 0; color: #8b7200; content: "✓"; font-weight: 900; }
.pt-inline-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--pt-black); font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.pt-section-dark { color: #fff; background: var(--pt-black); }
.pt-section-dark h2, .pt-section-dark h3 { color: #fff; }
.pt-section-dark .pt-kicker { color: var(--pt-gold); }
.pt-section-dark p { color: #c8c9c3; }
.pt-card-grid { display: grid; gap: 20px; margin-top: 35px; }
.pt-card-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pt-service-card { padding: 30px; border: 1px solid #35362f; border-radius: var(--pt-radius); background: #1b1c18; }
.pt-service-card h2 { margin: 17px 0 13px; font-size: 26px; letter-spacing: -.02em; }
.pt-card-number { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; color: var(--pt-black); background: var(--pt-gold); font-size: 12px; font-weight: 900; }
.pt-section-soft { background: var(--pt-ivory); }
.pt-feature-row { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); align-items: center; gap: 60px; }
.pt-route-visual { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; padding: 36px 24px; border: 1px solid #dfd6ba; border-radius: var(--pt-radius); background: #fff; text-align: center; box-shadow: var(--pt-shadow); }
.pt-route-visual strong { color: var(--pt-black); font-size: 19px; }
.pt-route-visual > span { color: #a08300; font-size: 27px; }
.pt-route-visual small { grid-column: 1 / -1; color: var(--pt-muted); }
.pt-airport { color: #fff; background: linear-gradient(125deg, #191a16, #2a2b25); }
.pt-airport h2 { color: #fff; }
.pt-airport p { color: #d0d1cb; }
.pt-airport .pt-kicker { color: var(--pt-gold); }
.pt-airport-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); align-items: center; gap: 65px; }
.pt-inline-link-light { color: #fff; }
.pt-price-card { display: grid; padding: 37px 28px; border-radius: var(--pt-radius); color: var(--pt-black); background: var(--pt-gold); box-shadow: 0 20px 60px rgba(0,0,0,.28); text-align: center; }
.pt-price-card span { font-size: 14px; font-weight: 800; }
.pt-price-card strong { margin: 8px 0; font-size: clamp(36px, 5vw, 59px); line-height: 1; letter-spacing: -.045em; }
.pt-price-card small { font-size: 12px; }
.pt-international { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); align-items: center; gap: 70px; }
.pt-checklist { padding: 30px; border-left: 5px solid var(--pt-gold); border-radius: 0 var(--pt-radius) var(--pt-radius) 0; background: #fffaf0; }
.pt-section-heading { max-width: 760px; margin: 0 auto 30px; text-align: center; }
.pt-payment-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.pt-payment-list span { padding: 12px 17px; border: 1px solid var(--pt-line); border-radius: 999px; color: var(--pt-black); background: #fff; font-size: 14px; font-weight: 800; }
.pt-benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; margin: 31px 0 0; padding: 0; list-style: none; }
.pt-benefit-grid li { display: grid; gap: 6px; min-height: 130px; align-content: center; padding: 22px; border: 1px solid var(--pt-line); border-radius: 18px; background: #fff; }
.pt-benefit-grid strong { color: var(--pt-black); font-size: 17px; }
.pt-benefit-grid span { color: var(--pt-muted); font-size: 13px; line-height: 1.45; }
.pt-enquiry-section { border-top: 1px solid var(--pt-line); background: linear-gradient(180deg, #fffaf0 0%, #f7f2e7 100%); scroll-margin-top: 65px; }
.pt-enquiry-heading { max-width: 850px; }
.pt-enquiry-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr); align-items: start; gap: 28px; }
.pt-enquiry-form, .pt-enquiry-map-card { border: 1px solid var(--pt-line); border-radius: var(--pt-radius); background: #fff; box-shadow: 0 16px 45px rgba(22,22,18,.08); }
.pt-enquiry-form { position: relative; padding: 29px; }
.pt-maps-consent { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 15px 20px; margin-bottom: 25px; padding: 20px; border: 2px solid #d6ad00; border-radius: 17px; background: #fff8cf; }
.pt-maps-consent strong { display: block; color: var(--pt-black); font-size: 18px; }
.pt-maps-consent p { margin: 5px 0 0; color: #5c5641; font-size: 13px; line-height: 1.5; }
.pt-maps-consent > a { grid-column: 2; color: #4d420d; font-size: 12px; font-weight: 750; text-align: center; }
.pt-maps-consent.is-active { grid-template-columns: 1fr; border-color: #b9d5c5; background: #eef9f2; }
.pt-maps-consent.is-active > a, .pt-maps-consent.is-active > button { display: none; }
.pt-address-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; margin: 0 0 20px; padding: 0 0 21px; border: 0; border-bottom: 1px solid var(--pt-line); min-inline-size: 0; }
.pt-address-fields > legend { grid-column: 1 / -1; margin-bottom: 11px; padding: 0; color: var(--pt-black); font-size: 20px; font-weight: 900; }
.pt-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.pt-form-field { display: grid; align-content: start; gap: 7px; min-width: 0; }
.pt-form-field-wide { grid-column: 1 / -1; }
.pt-form-field label { color: var(--pt-black); font-size: 13px; font-weight: 850; }
.pt-form-field input, .pt-form-field select, .pt-form-field textarea, .pt-address-fields input {
    width: 100%; min-height: 49px; padding: 11px 13px; border: 1px solid #b9b6ad; border-radius: 11px;
    color: var(--pt-black); background: #fff; font: inherit; font-size: 15px;
}
.pt-form-field textarea { resize: vertical; }
.pt-form-field input:focus, .pt-form-field select:focus, .pt-form-field textarea:focus { border-color: #1677ff; outline: 2px solid rgba(22,119,255,.2); }
.pt-address-fields gmp-basic-place-autocomplete { width: 100%; min-height: 49px; border: 1px solid #b9b6ad; border-radius: 11px; background: #fff; color-scheme: light; }
.pt-field-status { min-height: 20px; margin: 0; color: #2d5e41 !important; font-size: 12px; font-weight: 700; }
.pt-place-details gmp-place-details-compact { width: 100%; max-width: 100%; border: 1px solid #d9d4c7; border-radius: 11px; background: #fff; color-scheme: light; }
.pt-consent-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; color: #4e504a; font-size: 13px; line-height: 1.45; }
.pt-consent-check input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; accent-color: var(--pt-green); }
.pt-consent-check a { font-weight: 800; }
.pt-form-note { margin: 14px 0; padding: 11px 13px; border-left: 4px solid var(--pt-gold); background: #fff8d8; font-size: 13px; }
.pt-submit-button { width: 100%; border: 0; cursor: pointer; }
.pt-submit-button:disabled { cursor: not-allowed; filter: grayscale(.65); opacity: .55; transform: none; }
.pt-enquiry-status { min-height: 25px; margin: 14px 0 0; color: #255b3a !important; font-weight: 800; }
.pt-enquiry-status.is-error, .pt-form-error { color: #a12020 !important; }
.pt-enquiry-status.is-success { padding: 14px; border: 1px solid #9ac5ab; border-radius: 11px; background: #eef9f2; }
.pt-honeypot { position: absolute !important; left: -99999px !important; width: 1px; height: 1px; overflow: hidden; }
.pt-enquiry-map-card { position: sticky; top: 72px; overflow: hidden; }
.pt-map-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; border-bottom: 1px solid var(--pt-line); }
.pt-map-header strong { color: var(--pt-black); font-size: 18px; }
.pt-map-header span { color: var(--pt-muted); font-size: 12px; font-weight: 800; }
.pt-enquiry-map { height: 440px; background: #e8e6df; }
.pt-route-summary { display: grid; gap: 5px; padding: 17px 20px 20px; }
.pt-route-summary strong { color: var(--pt-black); }
.pt-route-summary span { color: var(--pt-muted); font-size: 13px; }
.pt-faq { border-top: 1px solid var(--pt-line); }
.pt-faq-grid { display: grid; grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr); align-items: start; gap: 65px; }
.pt-faq-list { display: grid; gap: 10px; }
.pt-faq-list details { border: 1px solid var(--pt-line); border-radius: 15px; background: #fff; }
.pt-faq-list summary { padding: 18px 48px 18px 20px; color: var(--pt-black); cursor: pointer; font-weight: 800; line-height: 1.4; }
.pt-faq-list details[open] summary { border-bottom: 1px solid var(--pt-line); }
.pt-faq-list p { margin: 0; padding: 17px 20px 20px; }
.pt-final-cta { padding: 82px 0; color: #fff; background: var(--pt-black); text-align: center; }
.pt-final-cta h2 { color: #fff; }
.pt-final-cta .pt-kicker { color: var(--pt-gold); }
.pt-final-cta p:not(.pt-kicker) { color: #d0d1cb; }
.pt-footer { padding: 26px 0 90px; color: #c6c7c1; background: #0a0b09; font-size: 13px; }
.pt-footer .pt-shell { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px 24px; }
.pt-footer a { color: #fff; }
.pt-mobile-actions { display: none; }

@media (max-width: 900px) {
    .pt-hero-grid, .pt-two-column, .pt-two-column-reverse, .pt-feature-row, .pt-airport-grid, .pt-international, .pt-faq-grid, .pt-enquiry-layout { grid-template-columns: 1fr; gap: 38px; }
    .pt-hero { padding-top: 58px; }
    .pt-hero-card { max-width: 620px; }
    .pt-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pt-faq-grid > div:first-child { max-width: 680px; }
    .pt-enquiry-map-card { position: static; }
}

@media (max-width: 680px) {
    body { padding-bottom: 66px; font-size: 16px; }
    .pt-shell { width: min(100% - 28px, 1160px); }
    .pt-header-inner { min-height: 72px; }
    .pt-brand img { width: 50px; height: 50px; }
    .pt-brand small, .pt-header-actions { display: none; }
    .pt-hero { padding: 46px 0 42px; }
    .pt-hero-grid { gap: 31px; }
    h1 { font-size: clamp(39px, 12vw, 57px); }
    h2 { font-size: clamp(29px, 9vw, 39px); }
    .pt-subheadline { font-size: 22px; }
    .pt-lead { font-size: 17px; }
    .pt-primary-actions { grid-template-columns: 1fr; }
    .pt-button-row .pt-button { width: 100%; }
    .pt-trust-list { display: grid; grid-template-columns: 1fr 1fr; }
    .pt-trust-list li { display: grid; min-height: 52px; place-items: center; border-radius: 12px; text-align: center; }
    .pt-hero-card { padding: 22px; border-radius: 22px; }
    .pt-hero-card-top img { width: 60px; height: 60px; }
    .pt-quick-nav .pt-shell { width: max-content; min-width: 100%; justify-content: flex-start; padding: 0 8px; }
    .pt-section { padding: 65px 0; }
    .pt-card-grid-two, .pt-benefit-grid { grid-template-columns: 1fr; }
    .pt-benefit-grid li { min-height: 0; }
    .pt-route-visual { padding: 27px 15px; }
    .pt-airport .pt-button-row { align-items: stretch; }
    .pt-payment-list span { flex: 1 1 42%; text-align: center; }
    .pt-enquiry-form { padding: 19px; }
    .pt-maps-consent { grid-template-columns: 1fr; padding: 17px; }
    .pt-maps-consent > a { grid-column: 1; text-align: left; }
    .pt-address-fields, .pt-form-grid { grid-template-columns: 1fr; }
    .pt-form-field-wide { grid-column: 1; }
    .pt-enquiry-map { height: 340px; }
    .pt-mobile-actions {
        position: fixed;
        z-index: 100;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: .78fr 1.22fr;
        padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(0,0,0,.2);
        background: #fff;
        box-shadow: 0 -10px 30px rgba(0,0,0,.14);
    }
    .pt-mobile-actions a { display: grid; min-height: 48px; place-items: center; border-radius: 10px; color: var(--pt-black); font-size: 13px; font-weight: 900; text-decoration: none; }
    .pt-mobile-actions a:last-child { color: #fff; background: var(--pt-green); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .pt-button { transition: none; }
}
