:root {
    --text: #17202a;
    --muted: #5f6b76;
    --background: #ffffff;
    --soft: #f3f6f8;
    --border: #dce3e8;
    --brand: #e8b000;
    --brand-dark: #c79400;
    --dark: #111820;
    --radius: 18px;
    --shadow: 0 15px 45px rgba(17, 24, 32, .10);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--background);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 32px), var(--max));
    margin-inline: auto;
}

.narrow {
    max-width: 850px;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    display: block;
    max-height: 54px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-navigation > a {
    text-decoration: none;
    font-weight: 650;
}

.main-navigation > a[aria-current="page"] {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.mobile-menu-button {
    display: none;
    border: 1px solid var(--border);
    background: white;
    border-radius: 10px;
    padding: 9px 13px;
    font: inherit;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: transform .15s ease, opacity .15s ease;
}

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

.button:disabled {
    cursor: wait;
    opacity: .65;
    transform: none;
}

.button-primary {
    background: var(--brand);
    color: #111;
}

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

.button-secondary {
    background: white;
    color: var(--dark);
}

.button-whatsapp {
    background: #20b55a;
    color: white;
}

.hero {
    min-height: 640px;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    background:
        url("/assets/images/beach_car.webp")
        center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(9, 17, 24, .88) 0%,
            rgba(9, 17, 24, .63) 55%,
            rgba(9, 17, 24, .20) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-block: 90px;
}

.hero h1,
.page-hero h1 {
    max-width: 820px;
    margin: 10px 0 20px;
    font-size: clamp(2.5rem, 6vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.hero-intro {
    max-width: 680px;
    margin: 0 0 28px;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.eyebrow {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    font-weight: 850;
}

.page-hero {
    padding: 95px 0;
    color: white;
    background: var(--dark);
}

.page-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    font-size: 1.15rem;
}

.section {
    padding: 84px 0;
}

.section-muted {
    background: var(--soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-heading h2,
.final-cta h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -.03em;
}

.section-heading p {
    color: var(--muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    min-height: 240px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 8px 28px rgba(17,24,32,.05);
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

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

.service-card a {
    font-weight: 800;
}

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

.steps article {
    padding: 28px;
    background: white;
    border-radius: var(--radius);
}

.steps span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand);
    font-weight: 900;
}

.steps h3 {
    margin-bottom: 6px;
}

.steps p {
    color: var(--muted);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.trust-grid div {
    padding: 22px;
    border-radius: 14px;
    background: var(--soft);
    font-weight: 750;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.quote-section {
    position: relative;
}

.enquiry-form {
    padding: clamp(22px, 4vw, 40px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.enquiry-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-weight: 750;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #c9d1d8;
    border-radius: 10px;
    background: white;
    color: var(--text);
    font: inherit;
}

.enquiry-form textarea {
    resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: 3px solid rgba(232,176,0,.25);
    border-color: var(--brand-dark);
}

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

.submit-button {
    margin-top: 22px;
}

.form-note {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .92rem;
}

.form-status {
    margin-top: 18px;
    padding: 0;
    font-weight: 750;
}

.form-status.success,
.form-status.error {
    padding: 14px 16px;
    border-radius: 10px;
}

.form-status.success {
    background: #e8f7ed;
}

.form-status.error {
    background: #fdecec;
}

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

.final-cta {
    text-align: center;
    background: var(--dark);
    color: white;
}

.site-footer {
    padding: 55px 0 20px;
    background: #090f15;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-grid p {
    max-width: 500px;
    color: #c7d0d7;
}

.footer-grid a {
    color: #e0e6ea;
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #aab5bd;
    font-size: .9rem;
}

.floating-whatsapp {
    position: fixed;
    z-index: 70;
    right: 20px;
    bottom: 20px;
    padding: 13px 18px;
    border-radius: 999px;
    background: #20b55a;
    color: white;
    box-shadow: 0 8px 30px rgba(0,0,0,.22);
    text-decoration: none;
    font-weight: 850;
}

@media (max-width: 900px) {
    .mobile-menu-button {
        display: inline-flex;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: white;
        box-shadow: var(--shadow);
    }

    .main-navigation.is-open {
        display: flex;
    }

    .main-navigation > a {
        padding: 10px;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps,
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 560px;
    }

    .hero-content {
        padding-block: 65px;
    }

    .section {
        padding: 62px 0;
    }

    .card-grid,
    .content-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }
}


/* ========================================================
   GETTAXI HOMEPAGE — VISUAL REBUILD
======================================================== */

.home-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    color: #fff;
    background: #111820;
}

.home-hero-media,
.home-hero-shade {
    position: absolute;
    inset: 0;
}

.home-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

.home-hero-shade {
    background:
        linear-gradient(
            90deg,
            rgba(7, 13, 19, .94) 0%,
            rgba(7, 13, 19, .82) 36%,
            rgba(7, 13, 19, .46) 67%,
            rgba(7, 13, 19, .13) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 13, 19, .42),
            transparent 45%
        );
}

.home-hero-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 92px;
    padding-bottom: 112px;
}

.home-hero-copy {
    max-width: 760px;
}

.home-eyebrow {
    color: #f3c324;
}

.home-hero h1 {
    margin: 14px 0 26px;
    max-width: 850px;
    font-size: clamp(3.4rem, 7vw, 6.8rem);
    line-height: .92;
    letter-spacing: -.065em;
    font-weight: 850;
}

.home-hero h1 span {
    display: block;
    color: #f3c324;
}

.home-hero-intro {
    max-width: 660px;
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: clamp(1.08rem, 1.8vw, 1.32rem);
    line-height: 1.62;
}

.home-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}

.home-primary-cta {
    min-height: 56px;
    padding-inline: 30px;
}

.home-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 750;
}

.home-whatsapp-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    color: #21c468;
    background: #21c468;
    box-shadow: 0 0 0 6px rgba(33,196,104,.15);
}

.home-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 56px;
    border-top: 1px solid rgba(255,255,255,.18);
}

.home-hero-points span {
    min-width: 175px;
    padding: 20px 32px 0 0;
    margin-right: 32px;
    color: rgba(255,255,255,.67);
    font-size: .83rem;
}

.home-hero-points strong {
    display: block;
    margin-bottom: 2px;
    color: white;
    font-size: .97rem;
}

.home-scroll-cue {
    position: absolute;
    z-index: 3;
    right: 30px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}


/* SERVICE STRIP */

.home-service-strip {
    position: relative;
    z-index: 5;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.home-service-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.home-mini-service {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 27px 28px;
    color: var(--text);
    text-decoration: none;
    border-right: 1px solid var(--border);
}

.home-mini-service:first-child {
    border-left: 1px solid var(--border);
}

.home-mini-service img {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.home-mini-service span {
    min-width: 0;
}

.home-mini-service strong,
.home-mini-service small {
    display: block;
}

.home-mini-service strong {
    font-size: .98rem;
}

.home-mini-service small {
    margin-top: 2px;
    color: var(--muted);
    font-size: .78rem;
}


/* QUOTE */

.home-quote-section {
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(232,176,0,.10),
            transparent 32%
        ),
        #f5f7f8;
}

.home-quote-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr);
    gap: 76px;
    align-items: start;
}

.home-quote-copy {
    padding-top: 24px;
}

.home-quote-copy h2,
.home-feature-copy h2,
.home-section-heading h2,
.home-process-heading h2,
.home-reassurance h2,
.home-final-cta h2 {
    margin: 10px 0 22px;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: .99;
    letter-spacing: -.052em;
}

.home-large-copy {
    max-width: 560px;
    color: var(--muted);
    font-size: 1.09rem;
}

.home-quote-benefits {
    margin-top: 48px;
}

.home-quote-benefits > div {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid #d7dde1;
}

.home-quote-benefits > div:last-child {
    border-bottom: 1px solid #d7dde1;
}

.home-quote-benefits span {
    color: #a67d00;
    font-size: .78rem;
    font-weight: 850;
}

.home-quote-benefits p {
    margin: 0;
    color: var(--muted);
}

.home-quote-benefits strong {
    display: block;
    margin-bottom: 2px;
    color: var(--text);
}

.home-form-shell {
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 30px 80px rgba(17,24,32,.12);
}

.home-form-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 19px 30px;
    background: #111820;
    color: white;
    font-size: .84rem;
}

.home-form-heading span {
    text-transform: uppercase;
    letter-spacing: .11em;
    font-weight: 800;
}

.home-form-heading strong {
    color: #f3c324;
}

.home-form-shell .enquiry-form {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}


/* AIRPORT FEATURE */

.home-feature {
    padding: 110px 0;
    background: #fff;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 82px;
    align-items: center;
}

.home-feature-image {
    position: relative;
    min-width: 0;
}

.home-feature-image > img {
    display: block;
    width: 100%;
    aspect-ratio: 1.12 / 1;
    object-fit: cover;
    border-radius: 4px 72px 4px 4px;
}

.home-feature-image::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -24px;
    bottom: -24px;
    width: 54%;
    height: 54%;
    background: #f3c324;
}

.home-feature-image-label {
    position: absolute;
    right: -20px;
    bottom: 28px;
    min-width: 180px;
    padding: 22px 25px;
    background: #111820;
    color: white;
}

.home-feature-image-label small,
.home-feature-image-label strong {
    display: block;
}

.home-feature-image-label small {
    color: #f3c324;
    font-size: .75rem;
    letter-spacing: .15em;
}

.home-feature-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.home-feature-list {
    margin: 30px 0;
    display: grid;
    gap: 0;
}

.home-feature-list div {
    display: flex;
    gap: 13px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
}

.home-feature-list span {
    color: #b78900;
}

.home-feature-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}

.home-text-link {
    font-weight: 800;
    text-decoration: none;
}


/* SERVICES */

.home-services {
    padding: 110px 0;
    background: #111820;
    color: white;
}

.home-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 80px;
    align-items: end;
    margin-bottom: 54px;
}

.home-section-heading h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.home-section-heading > p {
    margin: 0 0 6px;
    color: #aeb7bf;
}

.home-services .eyebrow {
    color: #f3c324;
}

.home-service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.15);
}

.home-service-card {
    position: relative;
    min-height: 390px;
    padding: 35px;
    background: #151e27;
}

.home-service-number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: rgba(255,255,255,.28);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.home-service-card img {
    width: 76px;
    height: 76px;
    margin: 10px 0 50px;
    object-fit: contain;
}

.home-service-card h3 {
    margin: 0 0 14px;
    font-size: 1.5rem;
}

.home-service-card p {
    min-height: 78px;
    color: #aeb7bf;
}

.home-service-card a {
    display: inline-block;
    margin-top: 20px;
    color: #f3c324;
    font-weight: 800;
    text-decoration: none;
}


/* PROCESS */

.home-process {
    padding: 110px 0;
    background: #fff;
}

.home-process-heading {
    max-width: 770px;
    margin-bottom: 58px;
}

.home-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px;
}

.home-process-top {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.home-process-top > span {
    flex: 0 0 auto;
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7dde1;
    border-radius: 50%;
    color: #8d6a00;
    font-size: .77rem;
    font-weight: 900;
}

.home-process-line {
    flex: 1;
    height: 1px;
    margin-left: 18px;
    background: #d7dde1;
}

.home-process-grid h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.home-process-grid p {
    max-width: 310px;
    color: var(--muted);
}


/* REASSURANCE */

.home-reassurance {
    padding: 95px 0;
    background: #f3f5f6;
}

.home-reassurance-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.home-reassurance h2 {
    margin-bottom: 0;
}

.home-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #d5dce0;
}

.home-reassurance-grid div {
    padding: 27px;
    background: #fff;
}

.home-reassurance-grid strong,
.home-reassurance-grid span {
    display: block;
}

.home-reassurance-grid strong {
    margin-bottom: 3px;
}

.home-reassurance-grid span {
    color: var(--muted);
    font-size: .87rem;
}


/* FINAL CTA */

.home-final-cta {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background: #e8b000;
    color: #111820;
}

.home-final-inner {
    position: relative;
    z-index: 2;
}

.home-final-cta h2 {
    max-width: 760px;
    margin-bottom: 14px;
    font-size: clamp(3rem, 7vw, 6.2rem);
}

.home-final-cta p:not(.eyebrow) {
    margin-bottom: 28px;
    font-size: 1.12rem;
}

.home-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-final-cta .button-primary {
    background: #111820;
    color: white;
}

.home-final-whatsapp {
    border: 1px solid rgba(17,24,32,.28);
    color: #111820;
    background: transparent;
}

.home-final-decoration {
    position: absolute;
    right: -45px;
    bottom: -82px;
    font-size: clamp(13rem, 29vw, 27rem);
    line-height: .75;
    font-weight: 950;
    letter-spacing: -.09em;
    color: rgba(255,255,255,.14);
    pointer-events: none;
}


/* HOME INTERACTIONS */

@media (hover: hover) and (pointer: fine) {

    .home-mini-service {
        transition:
            background-color .18s ease,
            transform .18s ease;
    }

    .home-mini-service:hover {
        background: #fafbfb;
    }

    .home-service-card {
        transition:
            background-color .2s ease,
            transform .2s ease;
    }

    .home-service-card:hover {
        z-index: 2;
        background: #1b2732;
        transform: translateY(-5px);
    }

    .home-text-link:hover,
    .home-service-card a:hover,
    .home-whatsapp-link:hover {
        text-decoration: underline;
        text-underline-offset: 4px;
    }
}


/* TABLET */

@media (max-width: 980px) {

    .home-hero {
        min-height: 660px;
    }

    .home-hero h1 {
        max-width: 690px;
    }

    .home-service-strip-grid {
        grid-template-columns: 1fr;
    }

    .home-mini-service {
        border-right: 1px solid var(--border);
        border-left: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .home-quote-layout,
    .home-feature-grid,
    .home-reassurance-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .home-section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-section-heading > p {
        max-width: 640px;
    }

    .home-service-cards {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        min-height: auto;
    }

    .home-service-card img {
        margin-bottom: 28px;
    }

    .home-service-card p {
        min-height: 0;
    }

    .home-process-grid {
        gap: 28px;
    }
}


/* MOBILE */

@media (max-width: 680px) {

    .home-hero {
        min-height: 620px;
    }

    .home-hero-media img {
        object-position: 64% center;
    }

    .home-hero-shade {
        background:
            linear-gradient(
                90deg,
                rgba(7,13,19,.93),
                rgba(7,13,19,.70)
            );
    }

    .home-hero-layout {
        padding-top: 67px;
        padding-bottom: 72px;
    }

    .home-hero h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .home-hero-intro {
        font-size: 1rem;
    }

    .home-hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .home-primary-cta {
        width: 100%;
    }

    .home-whatsapp-link {
        justify-content: center;
        min-height: 46px;
    }

    .home-hero-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 40px;
    }

    .home-hero-points span {
        min-width: 0;
        margin: 0;
        padding-right: 16px;
    }

    .home-scroll-cue {
        display: none;
    }

    .home-mini-service {
        padding: 20px;
    }

    .home-quote-section,
    .home-feature,
    .home-services,
    .home-process,
    .home-reassurance,
    .home-final-cta {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .home-quote-layout {
        display: block;
    }

    .home-quote-copy {
        margin-bottom: 42px;
        padding-top: 0;
    }

    .home-quote-copy h2,
    .home-feature-copy h2,
    .home-section-heading h2,
    .home-process-heading h2,
    .home-reassurance h2 {
        font-size: 2.55rem;
    }

    .home-form-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .home-feature-grid {
        gap: 50px;
    }

    .home-feature-image {
        margin-right: 14px;
    }

    .home-feature-image > img {
        border-radius: 3px 42px 3px 3px;
    }

    .home-feature-image-label {
        right: -14px;
        bottom: 18px;
        min-width: 155px;
        padding: 17px 19px;
    }

    .home-process-grid {
        grid-template-columns: 1fr;
    }

    .home-process-line {
        display: none;
    }

    .home-process-grid article {
        padding-bottom: 25px;
        border-bottom: 1px solid var(--border);
    }

    .home-reassurance-grid {
        grid-template-columns: 1fr;
    }

    .home-final-cta h2 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .home-final-actions {
        flex-direction: column;
    }

    .home-final-actions .button {
        width: 100%;
    }

    .home-final-decoration {
        right: -20px;
        bottom: -20px;
    }
}


/* ========================================================
   HEADER + HERO SPACING REFINEMENT
======================================================== */

/* Larger brand presence */
.site-header .brand img {
    max-height: 72px;
    width: auto;
}

.site-header .header-inner {
    min-height: 94px;
}

/* Keep mobile menu aligned with taller header */
@media (max-width: 900px) {
    .main-navigation {
        top: 94px;
    }
}

/* Give homepage hero a stronger content gutter */
.home-hero-layout {
    padding-left: clamp(28px, 5.5vw, 92px);
    padding-right: clamp(28px, 5.5vw, 92px);
}

/* Allow headline to breathe slightly more */
.home-hero-copy {
    max-width: 820px;
}

/* Avoid text feeling oversized/flush on medium screens */
@media (max-width: 1200px) {
    .home-hero h1 {
        font-size: clamp(3.2rem, 6.5vw, 5.9rem);
    }
}

/* Mobile: retain a clear but smaller gutter */
@media (max-width: 680px) {
    .site-header .brand img {
        max-height: 62px;
    }

    .site-header .header-inner {
        min-height: 82px;
    }

    .main-navigation {
        top: 82px;
    }

    .home-hero-layout {
        padding-left: 24px;
        padding-right: 24px;
    }
}


/* ========================================================
   HOMEPAGE HEADER + HERO REFINEMENT
   2026-08-31
======================================================== */

/* Stronger GetTaxi logo presence */
.site-header .header-inner {
    min-height: 100px;
}

.site-header .brand img {
    width: auto;
    height: auto;
    max-height: 78px;
    max-width: 190px;
}


/* Move hero content away from browser edge */
.home-hero-layout {
    padding-left: clamp(42px, 6.2vw, 108px);
    padding-right: clamp(32px, 5vw, 85px);
}


/* Slightly reduce headline dominance */
.home-hero-copy {
    max-width: 800px;
}

.home-hero h1 {
    max-width: 780px;
    font-size: clamp(3.2rem, 6.25vw, 6.1rem);
    line-height: .94;
}


/* Keep supporting copy aligned with headline */
.home-hero-intro {
    max-width: 620px;
}


/* Header nav position for taller header */
@media (max-width: 900px) {

    .main-navigation {
        top: 100px;
    }

}


/* Medium desktop / laptop */
@media (max-width: 1200px) {

    .home-hero-layout {
        padding-left: clamp(36px, 5vw, 70px);
        padding-right: 36px;
    }

    .home-hero h1 {
        font-size: clamp(3.1rem, 5.9vw, 5.25rem);
        max-width: 710px;
    }

}


/* Mobile */
@media (max-width: 680px) {

    .site-header .header-inner {
        min-height: 84px;
    }

    .site-header .brand img {
        max-height: 66px;
        max-width: 155px;
    }

    .main-navigation {
        top: 84px;
    }

    .home-hero-layout {
        padding-left: 26px;
        padding-right: 26px;
    }

    .home-hero h1 {
        max-width: 100%;
        font-size: clamp(2.85rem, 13vw, 4.25rem);
        line-height: .95;
    }

}


/* ========================================================
   TYPOGRAPHY + LOGO REFINEMENT
======================================================== */

/* Clearer site-wide font stack */
body {
    font-family:
        Arial,
        Helvetica,
        "Segoe UI",
        sans-serif;
}

/* Hero headline: cleaner, less compressed */
.home-hero h1 {
    max-width: 860px;
    font-family:
        Arial,
        Helvetica,
        "Segoe UI",
        sans-serif;
    font-size: clamp(3rem, 5.5vw, 5.45rem);
    line-height: 1.02;
    letter-spacing: -.035em;
    font-weight: 700;
}

/* Keep yellow line strong, but not ultra-heavy */
.home-hero h1 span {
    font-weight: 700;
}

/* Supporting text becomes more readable */
.home-hero-intro {
    font-size: clamp(1.08rem, 1.5vw, 1.25rem);
    line-height: 1.55;
    font-weight: 400;
}


/* Make logo genuinely larger through layout/CSS */
.site-header .header-inner {
    min-height: 118px;
}

.site-header .brand {
    flex: 0 0 auto;
    min-width: 230px;
}

.site-header .brand img {
    display: block;
    width: 220px;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
}


/* Keep navigation balanced beside larger logo */
.main-navigation {
    gap: 28px;
}

.main-navigation > a {
    font-size: 1rem;
}


/* Medium screens */
@media (max-width: 1100px) {

    .site-header .header-inner {
        min-height: 105px;
    }

    .site-header .brand {
        min-width: 190px;
    }

    .site-header .brand img {
        width: 185px;
    }

    .home-hero h1 {
        font-size: clamp(3rem, 5.2vw, 4.8rem);
    }

}


/* Tablet / mobile navigation offset */
@media (max-width: 900px) {

    .main-navigation {
        top: 105px;
    }

}


/* Mobile */
@media (max-width: 680px) {

    .site-header .header-inner {
        min-height: 92px;
    }

    .site-header .brand {
        min-width: 0;
    }

    .site-header .brand img {
        width: 165px;
    }

    .main-navigation {
        top: 92px;
    }

    .home-hero h1 {
        font-size: clamp(2.75rem, 12vw, 4rem);
        line-height: 1.01;
        letter-spacing: -.03em;
    }

}


/* ========================================================
   AIRPORT TRANSFERS PAGE
======================================================== */

.airport-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #111820;
    color: white;
}

.airport-hero-media,
.airport-hero-shade {
    position: absolute;
    inset: 0;
}

.airport-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.airport-hero-shade {
    background:
        linear-gradient(
            90deg,
            rgba(7,13,19,.94) 0%,
            rgba(7,13,19,.78) 45%,
            rgba(7,13,19,.28) 76%,
            rgba(7,13,19,.12) 100%
        );
}

.airport-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 95px;
    padding-bottom: 95px;
    padding-left: clamp(42px, 6vw, 104px);
    padding-right: 40px;
}

.airport-hero-copy {
    max-width: 760px;
}

.airport-hero .eyebrow {
    color: #f3c324;
}

.airport-hero h1 {
    margin: 14px 0 25px;
    font-family:
        Arial,
        Helvetica,
        "Segoe UI",
        sans-serif;
    font-size: clamp(3.2rem, 5.7vw, 5.5rem);
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: 700;
}

.airport-hero h1 span {
    display: block;
    color: #f3c324;
}

.airport-hero-copy > p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(255,255,255,.86);
    font-size: 1.16rem;
}

.airport-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    margin-top: 33px;
}

.airport-whatsapp {
    color: white;
    font-weight: 750;
    text-decoration: none;
}


/* DIRECTIONS */

.airport-directions {
    padding: 100px 0;
}

.airport-section-heading {
    max-width: 780px;
    margin-bottom: 48px;
}

.airport-section-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.airport-direction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.airport-direction-grid article {
    position: relative;
    min-height: 350px;
    padding: 38px;
    background: white;
}

.airport-direction-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.airport-card-number {
    position: absolute;
    top: 35px;
    right: 36px;
    color: #9ba5ad;
    font-size: .75rem;
    font-weight: 850;
}

.airport-direction-grid h3 {
    margin: 42px 0 12px;
    font-size: 1.6rem;
}

.airport-direction-grid p {
    max-width: 500px;
    color: var(--muted);
}

.airport-direction-grid a {
    display: inline-block;
    margin-top: 20px;
    font-weight: 800;
    text-decoration: none;
}


/* FEATURE */

.airport-feature {
    padding: 105px 0;
    background: #f3f5f6;
}

.airport-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 78px;
    align-items: center;
}

.airport-feature-image {
    position: relative;
}

.airport-feature-image > img {
    display: block;
    width: 100%;
    aspect-ratio: 1.1 / 1;
    object-fit: cover;
    border-radius: 4px 60px 4px 4px;
}

.airport-feature-image::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -22px;
    bottom: -22px;
    width: 45%;
    height: 45%;
    background: #e8b000;
}

.airport-image-badge {
    position: absolute;
    right: -18px;
    bottom: 28px;
    padding: 20px 24px;
    background: #111820;
    color: white;
}

.airport-image-badge small,
.airport-image-badge strong {
    display: block;
}

.airport-image-badge small {
    color: #f3c324;
    letter-spacing: .13em;
}

.airport-feature-copy h2 {
    margin: 8px 0 20px;
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.airport-feature-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.07rem;
}

.airport-info-list {
    margin-top: 35px;
}

.airport-info-list > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #d3dade;
}

.airport-info-list > div:last-child {
    border-bottom: 1px solid #d3dade;
}

.airport-info-list span {
    color: #946f00;
    font-size: .77rem;
    font-weight: 850;
}

.airport-info-list p {
    margin: 0;
    color: var(--muted);
}

.airport-info-list strong {
    display: block;
    color: var(--text);
}


/* QUOTE */

.airport-quote {
    padding: 105px 0;
    background: white;
}

.airport-quote-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    align-items: start;
}

.airport-quote-copy {
    padding-top: 20px;
}

.airport-quote-copy h2 {
    margin: 8px 0 20px;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.airport-quote-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.06rem;
}

.airport-direct-contact {
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.airport-direct-contact span,
.airport-direct-contact a {
    display: block;
}

.airport-direct-contact span {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: .85rem;
}

.airport-direct-contact a {
    font-weight: 800;
}

.airport-form-shell {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(17,24,32,.11);
}

.airport-form-header {
    padding: 20px 30px;
    background: #111820;
    color: white;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .78rem;
    font-weight: 850;
}

.airport-form-shell .enquiry-form {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}


/* PROCESS */

.airport-process {
    padding: 100px 0;
    background: #111820;
    color: white;
}

.airport-process .eyebrow {
    color: #f3c324;
}

.airport-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 45px;
    background: rgba(255,255,255,.15);
}

.airport-process-grid article {
    min-height: 270px;
    padding: 34px;
    background: #151e27;
}

.airport-process-grid span {
    color: #f3c324;
    font-size: .77rem;
    font-weight: 850;
}

.airport-process-grid h3 {
    margin-top: 55px;
    font-size: 1.4rem;
}

.airport-process-grid p {
    color: #aeb7bf;
}


/* FINAL CTA */

.airport-final {
    padding: 85px 0;
    background: #e8b000;
}

.airport-final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.airport-final h2 {
    max-width: 780px;
    margin: 5px 0 0;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.airport-final-button {
    flex: 0 0 auto;
    background: #111820;
    color: white;
}


/* MOBILE */

@media (max-width: 900px) {

    .airport-feature-grid,
    .airport-quote-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .airport-direction-grid {
        grid-template-columns: 1fr;
    }

    .airport-process-grid {
        grid-template-columns: 1fr;
    }

    .airport-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 680px) {

    .airport-hero {
        min-height: 580px;
    }

    .airport-hero-inner {
        padding:
            70px 26px;
    }

    .airport-hero h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .airport-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .airport-hero-actions .button {
        width: 100%;
    }

    .airport-whatsapp {
        min-height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .airport-directions,
    .airport-feature,
    .airport-quote,
    .airport-process,
    .airport-final {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .airport-section-heading h2,
    .airport-feature-copy h2,
    .airport-quote-copy h2,
    .airport-final h2 {
        font-size: 2.5rem;
    }

    .airport-direction-grid article {
        min-height: 0;
        padding: 28px;
    }

    .airport-feature-image {
        margin-right: 14px;
    }

    .airport-image-badge {
        right: -14px;
    }

    .airport-final-button {
        width: 100%;
    }

}


/* ========================================================
   PRIVATE / HOTEL TRANSFERS PAGE
======================================================== */

.private-hero {
    position: relative;
    min-height: 630px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #111820;
    color: white;
}

.private-hero-media,
.private-hero-shade {
    position: absolute;
    inset: 0;
}

.private-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

.private-hero-shade {
    background:
        linear-gradient(
            90deg,
            rgba(7,13,19,.95) 0%,
            rgba(7,13,19,.78) 43%,
            rgba(7,13,19,.30) 76%,
            rgba(7,13,19,.10) 100%
        );
}

.private-hero-inner {
    position: relative;
    z-index: 2;
    padding:
        95px 40px 95px clamp(42px, 6vw, 104px);
}

.private-hero-copy {
    max-width: 780px;
}

.private-hero .eyebrow {
    color: #f3c324;
}

.private-hero h1 {
    margin: 14px 0 25px;
    font-family: Arial, Helvetica, "Segoe UI", sans-serif;
    font-size: clamp(3.2rem, 5.7vw, 5.5rem);
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: 700;
}

.private-hero h1 span {
    display: block;
    color: #f3c324;
}

.private-hero-copy > p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(255,255,255,.86);
    font-size: 1.16rem;
}

.private-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    margin-top: 33px;
}

.private-whatsapp {
    color: white;
    font-weight: 750;
    text-decoration: none;
}


/* SERVICE TYPES */

.private-services {
    padding: 100px 0;
    background: white;
}

.private-heading {
    max-width: 780px;
    margin-bottom: 48px;
}

.private-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.private-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.private-service-grid article {
    position: relative;
    min-height: 350px;
    padding: 38px;
    background: white;
}

.private-service-grid img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.private-service-grid article > span {
    position: absolute;
    top: 35px;
    right: 36px;
    color: #9ba5ad;
    font-size: .75rem;
    font-weight: 850;
}

.private-service-grid h3 {
    margin: 42px 0 12px;
    font-size: 1.6rem;
}

.private-service-grid p {
    max-width: 500px;
    color: var(--muted);
}

.private-service-grid a {
    display: inline-block;
    margin-top: 20px;
    font-weight: 800;
    text-decoration: none;
}


/* FEATURE */

.private-feature {
    padding: 105px 0;
    overflow: hidden;
    background: #f3f5f6;
}

.private-feature-grid {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 80px;
    align-items: center;
}

.private-feature-copy h2 {
    margin: 8px 0 20px;
    font-size: clamp(2.5rem, 4.6vw, 4.2rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.private-feature-copy > p:not(.eyebrow) {
    max-width: 590px;
    color: var(--muted);
    font-size: 1.07rem;
}

.private-points {
    margin-top: 34px;
}

.private-points div {
    padding: 17px 0;
    border-top: 1px solid #d3dade;
}

.private-points div:last-child {
    border-bottom: 1px solid #d3dade;
}

.private-points strong,
.private-points span {
    display: block;
}

.private-points span {
    margin-top: 2px;
    color: var(--muted);
    font-size: .9rem;
}

.private-feature-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.private-feature-image::before {
    content: "";
    position: absolute;
    width: 80%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #e8b000;
}

.private-feature-image img {
    position: relative;
    z-index: 2;
    width: min(115%, 680px);
    max-width: none;
}


/* QUOTE */

.private-quote {
    padding: 105px 0;
    background: white;
}

.private-quote-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    align-items: start;
}

.private-quote-copy {
    padding-top: 20px;
}

.private-quote-copy h2 {
    margin: 8px 0 20px;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.private-quote-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.06rem;
}

.private-form-shell {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(17,24,32,.11);
}

.private-form-header {
    padding: 20px 30px;
    background: #111820;
    color: white;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .78rem;
    font-weight: 850;
}

.private-form-shell .enquiry-form {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}


/* PROCESS */

.private-process {
    padding: 100px 0;
    background: #111820;
    color: white;
}

.private-process .eyebrow {
    color: #f3c324;
}

.private-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 45px;
    background: rgba(255,255,255,.15);
}

.private-process-grid article {
    min-height: 270px;
    padding: 34px;
    background: #151e27;
}

.private-process-grid span {
    color: #f3c324;
    font-size: .77rem;
    font-weight: 850;
}

.private-process-grid h3 {
    margin-top: 55px;
    font-size: 1.4rem;
}

.private-process-grid p {
    color: #aeb7bf;
}


/* FINAL */

.private-final {
    padding: 85px 0;
    background: #e8b000;
}

.private-final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.private-final h2 {
    max-width: 780px;
    margin: 5px 0 0;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.private-final-button {
    flex: 0 0 auto;
    background: #111820;
    color: white;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .private-feature-grid,
    .private-quote-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .private-service-grid {
        grid-template-columns: 1fr;
    }

    .private-process-grid {
        grid-template-columns: 1fr;
    }

    .private-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 680px) {

    .private-hero {
        min-height: 580px;
    }

    .private-hero-inner {
        padding: 70px 26px;
    }

    .private-hero h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .private-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .private-hero-actions .button {
        width: 100%;
    }

    .private-whatsapp {
        min-height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .private-services,
    .private-feature,
    .private-quote,
    .private-process,
    .private-final {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .private-heading h2,
    .private-feature-copy h2,
    .private-quote-copy h2,
    .private-final h2 {
        font-size: 2.5rem;
    }

    .private-service-grid article {
        min-height: 0;
        padding: 28px;
    }

    .private-feature-image {
        min-height: 310px;
    }

    .private-feature-image img {
        width: 110%;
    }

    .private-final-button {
        width: 100%;
    }

}


/* ========================================================
   STATIC TOURS PAGE
======================================================== */

.tours-static-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111820;
    color: white;
}

.tours-static-hero-media,
.tours-static-hero-shade {
    position: absolute;
    inset: 0;
}

.tours-static-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tours-static-hero-shade {
    background:
        linear-gradient(
            90deg,
            rgba(7,13,19,.95),
            rgba(7,13,19,.76) 48%,
            rgba(7,13,19,.20)
        );
}

.tours-static-hero-inner {
    position: relative;
    z-index: 2;
    padding:
        95px 40px 95px clamp(42px, 6vw, 104px);
}

.tours-static-hero-copy {
    max-width: 780px;
}

.tours-static-hero .eyebrow {
    color: #f3c324;
}

.tours-static-hero h1 {
    margin: 14px 0 24px;
    font-family: Arial, Helvetica, "Segoe UI", sans-serif;
    font-size: clamp(3.2rem, 5.7vw, 5.5rem);
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: 700;
}

.tours-static-hero h1 span {
    display: block;
    color: #f3c324;
}

.tours-static-hero-copy > p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(255,255,255,.86);
    font-size: 1.16rem;
}

.tours-static-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 32px;
}

.tours-static-whatsapp {
    color: white;
    font-weight: 750;
    text-decoration: none;
}


/* INTRO */

.tours-static-intro {
    padding: 95px 0 55px;
}

.tours-static-intro-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 70px;
    align-items: end;
}

.tours-static-intro h2,
.tours-static-how h2,
.tours-static-quote h2,
.tours-static-final h2 {
    margin: 8px 0 0;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.tours-static-intro-layout > p {
    color: var(--muted);
}


/* CATALOGUE */

.tours-static-catalogue {
    padding: 20px 0 105px;
}

.tours-static-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.tour-static-card {
    display: flex;
    min-width: 0;
    min-height: 410px;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--border);
    background: white;
}

.tour-static-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tour-static-number {
    color: #9aa5ad;
    font-size: .76rem;
    font-weight: 850;
}

.tour-static-card-top img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.tour-static-category {
    margin: 35px 0 5px;
    color: #936e00;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .72rem;
    font-weight: 850;
}

.tour-static-card h2 {
    margin: 30px 0 13px;
    font-size: 1.55rem;
    line-height: 1.15;
}

.tour-static-category + h2 {
    margin-top: 6px;
}

.tour-static-description {
    flex: 1;
    color: var(--muted);
}

.tour-static-meta {
    padding: 14px 0;
    margin-top: 15px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tour-static-meta span,
.tour-static-meta strong {
    display: block;
}

.tour-static-meta span {
    color: var(--muted);
    font-size: .76rem;
}

.tour-static-enquire {
    display: inline-block;
    margin-top: 20px;
    font-weight: 800;
    text-decoration: none;
}


/* HOW */

.tours-static-how {
    padding: 100px 0;
    background: #111820;
    color: white;
}

.tours-static-how .eyebrow {
    color: #f3c324;
}

.tours-static-how-heading {
    max-width: 760px;
}

.tours-static-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 50px;
    background: rgba(255,255,255,.15);
}

.tours-static-how-grid article {
    min-height: 260px;
    padding: 34px;
    background: #151e27;
}

.tours-static-how-grid span {
    color: #f3c324;
    font-size: .76rem;
    font-weight: 850;
}

.tours-static-how-grid h3 {
    margin-top: 55px;
}

.tours-static-how-grid p {
    color: #aeb7bf;
}


/* QUOTE */

.tours-static-quote {
    padding: 105px 0;
}

.tours-static-quote-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    align-items: start;
}

.tours-static-quote-copy {
    padding-top: 20px;
}

.tours-static-quote-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.tours-static-form-shell {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(17,24,32,.11);
}

.tours-static-form-header {
    padding: 20px 30px;
    background: #111820;
    color: white;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .78rem;
    font-weight: 850;
}

.tours-static-form-shell .enquiry-form {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}


/* FINAL */

.tours-static-final {
    padding: 85px 0;
    background: #e8b000;
}

.tours-static-final-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.tours-static-final-button {
    flex: 0 0 auto;
    background: #111820;
    color: white;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .tours-static-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tours-static-intro-layout,
    .tours-static-quote-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}

@media (max-width: 760px) {

    .tours-static-how-grid {
        grid-template-columns: 1fr;
    }

    .tours-static-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 680px) {

    .tours-static-hero {
        min-height: 570px;
    }

    .tours-static-hero-inner {
        padding: 70px 26px;
    }

    .tours-static-hero h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .tours-static-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tours-static-actions .button {
        width: 100%;
    }

    .tours-static-whatsapp {
        min-height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tours-static-intro,
    .tours-static-catalogue,
    .tours-static-how,
    .tours-static-quote,
    .tours-static-final {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .tours-static-grid {
        grid-template-columns: 1fr;
    }

    .tour-static-card {
        min-height: 0;
    }

    .tours-static-final-button {
        width: 100%;
    }

}


/* ========================================================
   PHOTOGRAPHIC TOURS PAGE
======================================================== */

.tour-photo-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #111820;
    color: white;
}

.tour-photo-hero-bg,
.tour-photo-hero-overlay {
    position: absolute;
    inset: 0;
}

.tour-photo-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-photo-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7,13,19,.96) 0%,
            rgba(7,13,19,.76) 46%,
            rgba(7,13,19,.20) 82%
        ),
        linear-gradient(
            0deg,
            rgba(7,13,19,.28),
            transparent
        );
}

.tour-photo-hero-inner {
    position: relative;
    z-index: 2;
    padding:
        100px 40px 100px clamp(42px, 6vw, 104px);
}

.tour-photo-hero-inner > div {
    max-width: 800px;
}

.tour-photo-hero .eyebrow {
    color: #f3c324;
}

.tour-photo-hero h1 {
    margin: 13px 0 25px;
    font-family:
        Arial,
        Helvetica,
        "Segoe UI",
        sans-serif;
    font-size: clamp(3.2rem, 5.8vw, 5.6rem);
    line-height: .99;
    letter-spacing: -.045em;
    font-weight: 700;
}

.tour-photo-hero h1 span {
    display: block;
    color: #f3c324;
}

.tour-photo-hero-inner > div > p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(255,255,255,.86);
    font-size: 1.16rem;
}

.tour-photo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    margin-top: 34px;
}

.tour-photo-whatsapp {
    color: white;
    font-weight: 750;
    text-decoration: none;
}


/* INTRO */

.tour-photo-intro {
    padding: 105px 0 80px;
}

.tour-photo-intro-grid {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 75px;
    align-items: end;
}

.tour-photo-intro h2 {
    margin: 8px 0 0;
    max-width: 760px;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    line-height: .98;
    letter-spacing: -.048em;
}

.tour-photo-intro-grid > div:last-child {
    color: var(--muted);
}

.tour-photo-intro-note {
    padding-top: 15px;
    margin-top: 20px;
    border-top: 1px solid var(--border);
    color: #856400;
    font-weight: 750;
}


/* TOUR ROWS */

.tour-photo-list {
    background: white;
}

.tour-photo-item {
    padding: 95px 0;
    border-top: 1px solid var(--border);
}

.tour-photo-item:nth-child(even) {
    background: #f4f6f7;
}

.tour-photo-item-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 80px;
    align-items: center;
}

.tour-photo-item.is-reverse .tour-photo-gallery {
    order: 2;
}

.tour-photo-item.is-reverse .tour-photo-content {
    order: 1;
}


/* IMAGE GALLERY */

.tour-photo-gallery {
    min-width: 0;
}

.tour-photo-main {
    position: relative;
    overflow: hidden;
}

.tour-photo-main img {
    display: block;
    width: 100%;
    aspect-ratio: 1.28 / 1;
    object-fit: cover;
    border-radius: 3px 50px 3px 3px;
}

.tour-photo-number {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    min-width: 50px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    background: #111820;
    color: #f3c324;
    font-size: .75rem;
    font-weight: 900;
}

.tour-photo-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin-top: 9px;
}

.tour-photo-thumbs img {
    width: 100%;
    aspect-ratio: 1.65 / 1;
    object-fit: cover;
}


/* CONTENT */

.tour-photo-content {
    min-width: 0;
}

.tour-photo-content h2 {
    margin: 8px 0 23px;
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.tour-photo-duration {
    display: flex;
    align-items: baseline;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tour-photo-duration span {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .72rem;
    font-weight: 800;
}

.tour-photo-duration strong {
    font-size: .98rem;
}

.tour-photo-highlights {
    margin-top: 28px;
}

.tour-photo-highlights h3 {
    margin-bottom: 12px;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.tour-photo-highlights ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.tour-photo-highlights li {
    position: relative;
    padding:
        9px 0
        9px 25px;
    border-bottom: 1px solid #e3e7e9;
    color: var(--muted);
}

.tour-photo-highlights li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #987200;
    font-weight: 850;
}

.tour-photo-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.tour-photo-inline-whatsapp {
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}


/* PROCESS */

.tour-photo-process {
    padding: 105px 0;
    background: #111820;
    color: white;
}

.tour-photo-process .eyebrow {
    color: #f3c324;
}

.tour-photo-process-heading {
    max-width: 800px;
}

.tour-photo-process-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: .99;
    letter-spacing: -.045em;
}

.tour-photo-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 50px;
    background: rgba(255,255,255,.14);
}

.tour-photo-process-grid article {
    min-height: 270px;
    padding: 35px;
    background: #151e27;
}

.tour-photo-process-grid span {
    color: #f3c324;
    font-size: .76rem;
    font-weight: 850;
}

.tour-photo-process-grid h3 {
    margin-top: 55px;
    font-size: 1.35rem;
}

.tour-photo-process-grid p {
    color: #adb7bf;
}


/* ENQUIRY */

.tour-photo-enquiry {
    padding: 110px 0;
}

.tour-photo-enquiry-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    align-items: start;
}

.tour-photo-enquiry-copy {
    padding-top: 20px;
}

.tour-photo-enquiry-copy h2 {
    margin: 8px 0 22px;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.tour-photo-enquiry-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.tour-photo-form {
    overflow: hidden;
    border-radius: 22px;
    background: white;
    box-shadow: 0 25px 70px rgba(17,24,32,.11);
}

.tour-photo-form-title {
    padding: 20px 30px;
    background: #111820;
    color: white;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .78rem;
    font-weight: 850;
}

.tour-photo-form .enquiry-form {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}


/* FINAL */

.tour-photo-final {
    padding: 90px 0;
    background: #e8b000;
}

.tour-photo-final-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.tour-photo-final h2 {
    max-width: 800px;
    margin: 6px 0 0;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.tour-photo-final-button {
    flex: 0 0 auto;
    background: #111820;
    color: white;
}


/* TABLET */

@media (max-width: 1000px) {

    .tour-photo-intro-grid,
    .tour-photo-item-grid,
    .tour-photo-enquiry-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tour-photo-item.is-reverse .tour-photo-gallery,
    .tour-photo-item.is-reverse .tour-photo-content {
        order: initial;
    }

    .tour-photo-content {
        max-width: 720px;
    }

}


/* MOBILE */

@media (max-width: 760px) {

    .tour-photo-process-grid {
        grid-template-columns: 1fr;
    }

    .tour-photo-final-grid {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 680px) {

    .tour-photo-hero {
        min-height: 570px;
    }

    .tour-photo-hero-inner {
        padding: 70px 26px;
    }

    .tour-photo-hero h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .tour-photo-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tour-photo-hero-actions .button {
        width: 100%;
    }

    .tour-photo-whatsapp {
        min-height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tour-photo-intro,
    .tour-photo-item,
    .tour-photo-process,
    .tour-photo-enquiry,
    .tour-photo-final {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .tour-photo-intro h2,
    .tour-photo-process-heading h2,
    .tour-photo-enquiry-copy h2,
    .tour-photo-final h2 {
        font-size: 2.5rem;
    }

    .tour-photo-main img {
        border-radius: 3px 34px 3px 3px;
    }

    .tour-photo-thumbs {
        gap: 6px;
        margin-top: 6px;
    }

    .tour-photo-content h2 {
        font-size: 2.35rem;
    }

    .tour-photo-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tour-photo-actions .button {
        width: 100%;
    }

    .tour-photo-inline-whatsapp {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tour-photo-final-button {
        width: 100%;
    }

}


/* ========================================================
   CONTACT PAGE
======================================================== */

.contact-page-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111820;
    color: white;
}

.contact-page-hero-media,
.contact-page-hero-overlay {
    position: absolute;
    inset: 0;
}

.contact-page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7,13,19,.96),
            rgba(7,13,19,.74) 50%,
            rgba(7,13,19,.18)
        );
}

.contact-page-hero-inner {
    position: relative;
    z-index: 2;
    padding:
        95px 40px 95px clamp(42px, 6vw, 104px);
}

.contact-page-hero-copy {
    max-width: 780px;
}

.contact-page-hero .eyebrow {
    color: #f3c324;
}

.contact-page-hero h1 {
    margin: 12px 0 24px;
    font-size: clamp(3.2rem, 5.7vw, 5.5rem);
    line-height: .99;
    letter-spacing: -.045em;
}

.contact-page-hero h1 span {
    display: block;
    color: #f3c324;
}

.contact-page-hero-copy > p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(255,255,255,.86);
    font-size: 1.15rem;
}

.contact-page-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 32px;
}

.contact-page-whatsapp {
    color: white;
    font-weight: 800;
    text-decoration: none;
}


/* OPTIONS */

.contact-page-options {
    padding: 105px 0;
}

.contact-page-options-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.contact-page-options-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.contact-page-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.contact-page-option {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--border);
    color: inherit;
    text-decoration: none;
    transition:
        transform .18s ease,
        border-color .18s ease;
}

.contact-page-option:hover {
    transform: translateY(-3px);
    border-color: #111820;
}

.contact-page-option-number {
    color: #947000;
    font-size: .75rem;
    font-weight: 900;
}

.contact-page-option > div {
    margin-top: 65px;
    flex: 1;
}

.contact-page-option-label {
    margin-bottom: 5px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .7rem;
    font-weight: 850;
}

.contact-page-option h3 {
    margin: 0 0 12px;
    font-size: 1.65rem;
}

.contact-page-option p {
    color: var(--muted);
}

.contact-page-option strong {
    margin-top: 24px;
}


/* GUIDE */

.contact-page-guide {
    padding: 105px 0;
    background: #f4f6f7;
}

.contact-page-guide-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.contact-page-guide-copy h2 {
    margin: 8px 0 0;
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.contact-page-guide-list {
    border-top: 1px solid #cdd4d9;
}

.contact-page-guide-list > div {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #cdd4d9;
}

.contact-page-guide-list span {
    color: #947000;
    font-size: .75rem;
    font-weight: 900;
}

.contact-page-guide-list p {
    margin: 0;
    max-width: 500px;
    font-size: 1.1rem;
}


/* FORM */

.contact-page-enquiry {
    padding: 110px 0;
}

.contact-page-enquiry-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    align-items: start;
}

.contact-page-enquiry-copy {
    padding-top: 20px;
}

.contact-page-enquiry-copy h2 {
    margin: 8px 0 22px;
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.contact-page-enquiry-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.contact-page-form {
    overflow: hidden;
    border-radius: 22px;
    background: white;
    box-shadow: 0 25px 70px rgba(17,24,32,.11);
}

.contact-page-form-heading {
    padding: 20px 30px;
    background: #111820;
    color: white;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .78rem;
    font-weight: 850;
}

.contact-page-form .enquiry-form {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}


/* FINAL */

.contact-page-final {
    padding: 85px 0;
    background: #e8b000;
}

.contact-page-final-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.contact-page-final h2 {
    margin: 5px 0 0;
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.contact-page-final-button {
    flex: 0 0 auto;
    background: #111820;
    color: white;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .contact-page-options-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-option {
        min-height: 0;
    }

    .contact-page-option > div {
        margin-top: 35px;
    }

    .contact-page-guide-grid,
    .contact-page-enquiry-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width: 680px) {

    .contact-page-hero {
        min-height: 560px;
    }

    .contact-page-hero-inner {
        padding: 70px 26px;
    }

    .contact-page-hero h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .contact-page-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-page-hero-actions .button {
        width: 100%;
    }

    .contact-page-whatsapp {
        min-height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-page-options,
    .contact-page-guide,
    .contact-page-enquiry,
    .contact-page-final {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .contact-page-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-page-final-button {
        width: 100%;
    }

}


/* ========================================================
   GETTAXI STATIC TOUR CARDS
   Inspired by existing GetTaxi homepage tour layout
======================================================== */

.gt-tour-hero {
    padding: 85px 0 65px;
    background: #111820;
    color: white;
}

.gt-tour-hero-inner {
    max-width: 900px;
}

.gt-tour-hero .eyebrow {
    color: #f3c324;
}

.gt-tour-hero h1 {
    margin: 8px 0 16px;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.gt-tour-hero p:last-child {
    max-width: 650px;
    color: #b7c0c7;
    font-size: 1.1rem;
}


/* SECTION */

.gt-tour-section {
    padding: 90px 0 110px;
    background: #f6f7f8;
}

.gt-tour-heading {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: end;
    margin-bottom: 45px;
}

.gt-tour-heading h2 {
    margin: 5px 0 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.gt-tour-heading > p {
    margin: 0;
    color: var(--muted);
}


/* GRID */

.gt-tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* CARD */

.gt-tour-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 18px;
    border: 1px solid #e0e5e8;
    box-shadow:
        0 10px 30px rgba(17,24,32,.05);
}


/* SLIDER */

.gt-tour-slider {
    position: relative;
    overflow: hidden;
    background: #dfe4e6;
}

.gt-tour-slides {
    position: relative;
    aspect-ratio: 1.45 / 1;
}

.gt-tour-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.gt-tour-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.gt-tour-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gt-tour-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    background: rgba(17,24,32,.78);
    color: white;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.gt-tour-arrow-prev {
    left: 12px;
}

.gt-tour-arrow-next {
    right: 12px;
}

.gt-tour-dots {
    position: absolute;
    z-index: 5;
    bottom: 12px;
    left: 50%;
    display: flex;
    gap: 6px;
    transform: translateX(-50%);
}

.gt-tour-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    cursor: pointer;
}

.gt-tour-dots button.is-active {
    width: 20px;
    border-radius: 10px;
    background: white;
}


/* CONTENT */

.gt-tour-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.gt-tour-card-content h2 {
    margin: 0 0 13px;
    font-size: 1.45rem;
    line-height: 1.15;
}

.gt-tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-bottom: 17px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e7eaec;
    color: #5d6870;
    font-size: .88rem;
    font-weight: 700;
}

.gt-tour-highlights {
    flex: 1;
    padding: 0;
    margin: 0 0 24px;
    list-style: none;
}

.gt-tour-highlights li {
    position: relative;
    padding: 5px 0 5px 20px;
    color: #57636b;
    font-size: .91rem;
    line-height: 1.45;
}

.gt-tour-highlights li::before {
    content: "•";
    position: absolute;
    left: 3px;
    color: #d6a400;
    font-weight: 900;
}


/* CTA */

.gt-tour-enquire {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 9px;
    background: #e8b000;
    color: #111820;
    text-align: center;
    text-decoration: none;
    font-weight: 850;
    transition:
        transform .15s ease,
        background .15s ease;
}

.gt-tour-enquire:hover {
    transform: translateY(-1px);
    background: #f0ba00;
}


/* ENQUIRY */

.gt-tour-enquiry {
    padding: 105px 0;
}

.gt-tour-enquiry-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 75px;
    align-items: start;
}

.gt-tour-enquiry-grid > div:first-child {
    padding-top: 20px;
}

.gt-tour-enquiry h2 {
    margin: 7px 0 20px;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.gt-tour-enquiry-grid > div:first-child > p:last-child {
    color: var(--muted);
}

.gt-tour-form-shell {
    overflow: hidden;
    border-radius: 22px;
    box-shadow:
        0 24px 65px rgba(17,24,32,.11);
}

.gt-tour-form-heading {
    padding: 20px 30px;
    background: #111820;
    color: white;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .78rem;
    font-weight: 850;
}

.gt-tour-form-shell .enquiry-form {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}


/* TABLET */

@media (max-width: 1050px) {

    .gt-tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gt-tour-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gt-tour-enquiry-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}


/* MOBILE */

@media (max-width: 680px) {

    .gt-tour-hero {
        padding: 70px 0 55px;
    }

    .gt-tour-section,
    .gt-tour-enquiry {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .gt-tour-grid {
        grid-template-columns: 1fr;
    }

    .gt-tour-card-content {
        padding: 21px;
    }

    .gt-tour-slides {
        aspect-ratio: 1.35 / 1;
    }

}


/* ========================================================
   TOURS HERO IMAGE
======================================================== */

.gt-tour-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    background: #111820;
    color: white;
}

.gt-tour-hero-media,
.gt-tour-hero-overlay {
    position: absolute;
    inset: 0;
}

.gt-tour-hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gt-tour-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7,13,19,.94) 0%,
            rgba(7,13,19,.76) 48%,
            rgba(7,13,19,.28) 100%
        );
}

.gt-tour-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    padding:
        90px 40px 90px clamp(42px, 6vw, 104px);
}

.gt-tour-hero-inner > * {
    max-width: 820px;
}

.gt-tour-hero h1 {
    text-shadow:
        0 2px 20px rgba(0,0,0,.18);
}

@media (max-width: 680px) {

    .gt-tour-hero {
        min-height: 470px;
    }

    .gt-tour-hero-inner {
        padding:
            70px 26px;
    }

}


/* ========================================================
   FINAL HEADER OVERLAY
   2026-08-31
======================================================== */

/*
 * Header becomes part of the hero rather than a separate
 * white band.
 */
.site-header {
    position: absolute !important;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    background:
        linear-gradient(
            180deg,
            rgba(7, 13, 19, .84) 0%,
            rgba(7, 13, 19, .62) 70%,
            rgba(7, 13, 19, .38) 100%
        ) !important;

    border-bottom:
        1px solid rgba(255,255,255,.12) !important;

    box-shadow: none;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* Header container */

.site-header .header-inner {
    min-height: 82px !important;
    height: 82px;

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

    gap: 24px;
}


/* ========================================================
   LOGO — roughly half previous visual size
======================================================== */

.site-header .brand {
    min-width: 0 !important;
    flex: 0 0 auto;
}

.site-header .brand img {
    display: block;

    width: 112px !important;
    max-width: 112px !important;

    height: auto !important;
    max-height: 68px !important;

    object-fit: contain;
}


/* ========================================================
   NAVIGATION
======================================================== */

.site-header .main-navigation {
    display: flex;
    align-items: center;

    gap: 7px !important;

    margin-left: auto;
}


/*
 * Individual translucent menu buttons.
 */
.site-header .main-navigation > a:not(.button-whatsapp) {
    min-height: 40px;

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

    padding: 9px 13px;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 8px;

    background:
        rgba(255,255,255,.07);

    color: #fff;

    text-decoration: none;

    font-size: .91rem !important;
    font-weight: 700;

    white-space: nowrap;

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


.site-header .main-navigation > a:not(.button-whatsapp):hover {
    background:
        rgba(255,255,255,.16);

    border-color:
        rgba(255,255,255,.30);

    transform: translateY(-1px);
}


/* Active menu button */

.site-header .main-navigation > a[aria-current="page"]:not(.button-whatsapp) {
    background: rgba(232,176,0,.96);

    border-color: #e8b000;

    color: #111820;

    text-decoration: none;
}


/* ========================================================
   WHATSAPP
======================================================== */

.site-header .button-whatsapp {
    min-height: 40px;

    padding: 9px 17px;

    border-radius: 9px;

    background: #20b55a;

    color: #fff;

    font-size: .91rem;
    font-weight: 800;
}


/* ========================================================
   LANGUAGE CONTROLS
======================================================== */

.header-languages {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin-left: 2px;
}


.header-language {
    height: 40px;
    min-width: 48px;

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

    gap: 5px;

    padding: 5px 8px;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: 8px;

    background:
        rgba(255,255,255,.08);

    color: white;

    font: inherit;
    font-weight: 750;

    cursor: default;
}


.header-language span:first-child {
    font-size: 1.18rem;
    line-height: 1;
}


.header-language-code {
    font-size: .72rem;
}


.header-language.is-active {
    background: rgba(255,255,255,.18);

    border-color:
        rgba(255,255,255,.32);
}


/*
 * French is currently only a visual language indicator.
 * Keep it slightly quieter until an actual French version
 * exists.
 */
.header-language:not(.is-active) {
    opacity: .72;
}


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

/*
 * Header is absolute, so hero content needs enough top
 * breathing room to avoid sitting under the menu.
 */

.home-hero-layout {
    padding-top: 82px;
}

.airport-hero-inner,
.private-hero-inner,
.gt-tour-hero-inner,
.contact-page-hero-inner {
    padding-top:
        calc(82px + 70px) !important;
}


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

@media (max-width: 900px) {

    .site-header .header-inner {
        min-height: 72px !important;
        height: 72px;
    }

    .site-header .brand img {
        width: 92px !important;
        max-width: 92px !important;
        max-height: 58px !important;
    }


    /* Menu trigger */

    .mobile-menu-button {
        display: inline-flex;

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

        min-height: 40px;

        padding: 8px 13px;

        border:
            1px solid rgba(255,255,255,.22);

        border-radius: 8px;

        background:
            rgba(255,255,255,.09);

        color: white;
    }


    /* Dropdown */

    .site-header .main-navigation {
        position: absolute;

        top: 72px !important;
        left: 16px;
        right: 16px;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 6px !important;

        padding: 12px;

        border:
            1px solid rgba(255,255,255,.13);

        border-radius: 12px;

        background:
            rgba(7,13,19,.97);

        box-shadow:
            0 18px 50px rgba(0,0,0,.28);

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }


    .site-header .main-navigation.is-open {
        display: flex;
    }


    .site-header .main-navigation > a:not(.button-whatsapp),
    .site-header .button-whatsapp {
        width: 100%;

        justify-content: flex-start;

        min-height: 44px;
    }


    .header-languages {
        width: 100%;

        margin: 3px 0 0;

        padding-top: 10px;

        border-top:
            1px solid rgba(255,255,255,.12);
    }


    .header-language {
        min-width: 58px;
        height: 42px;
    }


    .home-hero-layout {
        padding-top: 72px;
    }


    .airport-hero-inner,
    .private-hero-inner,
    .gt-tour-hero-inner,
    .contact-page-hero-inner {
        padding-top:
            calc(72px + 55px) !important;
    }

}


@media (max-width: 480px) {

    .site-header .brand img {
        width: 84px !important;
        max-width: 84px !important;
    }

}


/* ========================================================
   FIXED HEADER + LOGO VISIBILITY
======================================================== */

.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
}


/* Give transparent logo a light backing surface */
.site-header .brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 5px 9px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.93);

    box-shadow:
        0 4px 16px rgba(0,0,0,.10);
}


.site-header .brand img {
    width: 112px !important;
    max-width: 112px !important;
    height: auto !important;
}


/*
 * Because header is now fixed, ensure every main hero starts
 * far enough below the fixed navigation while still visually
 * sitting underneath it.
 */

.home-hero,
.airport-hero,
.private-hero,
.gt-tour-hero,
.contact-page-hero {
    padding-top: 82px !important;
}


/* Homepage uses an internal layout wrapper as well */
.home-hero-layout {
    padding-top: 82px !important;
}


/* Avoid excessive double top padding on service pages */
.airport-hero-inner,
.private-hero-inner,
.gt-tour-hero-inner,
.contact-page-hero-inner {
    padding-top: 70px !important;
}


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

@media (max-width: 900px) {

    .site-header .brand {
        padding: 4px 7px;
        border-radius: 8px;
    }

    .site-header .brand img {
        width: 92px !important;
        max-width: 92px !important;
    }

    .home-hero,
    .airport-hero,
    .private-hero,
    .gt-tour-hero,
    .contact-page-hero {
        padding-top: 72px !important;
    }

    .home-hero-layout {
        padding-top: 72px !important;
    }

    .airport-hero-inner,
    .private-hero-inner,
    .gt-tour-hero-inner,
    .contact-page-hero-inner {
        padding-top: 55px !important;
    }

}


@media (max-width: 480px) {

    .site-header .brand img {
        width: 84px !important;
        max-width: 84px !important;
    }

}


/* ========================================================
   FORM HIDDEN FIELD FIX
======================================================== */

/*
 * Author CSS on .enquiry-form label uses display:flex,
 * which can override the browser's native [hidden] rule.
 *
 * Any form element marked hidden must genuinely disappear.
 */
.enquiry-form [hidden] {
    display: none !important;
}



/* ========================================================
   FOOTER BRANDING
======================================================== */

.footer-brand-block {
    align-items: flex-start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    padding: 7px 10px;

    border-radius: 9px;

    background: rgba(255,255,255,.96);

    text-decoration: none;
}

.footer-logo img {
    display: block;

    width: 125px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 640px) {

    .footer-logo img {
        width: 110px;
    }

}


/* ========================================================
   HEADER BLEND + LOGO INTEGRATION
======================================================== */

/*
 * Richer navy/teal overlay so the fixed header feels
 * connected to the GetTaxi branding and the hero below.
 */
.site-header {
    background:
        linear-gradient(
            100deg,
            rgba(5, 18, 29, .97) 0%,
            rgba(8, 31, 43, .94) 38%,
            rgba(13, 58, 69, .88) 72%,
            rgba(18, 87, 96, .76) 100%
        ) !important;

    border-bottom:
        1px solid rgba(81, 189, 199, .22) !important;

    box-shadow:
        0 6px 24px rgba(0, 0, 0, .12);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* ========================================================
   LOGO — REMOVE WHITE CARD
======================================================== */

.site-header .brand {
    padding: 5px 9px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 9px;

    /*
     * Very subtle glass gradient rather than white.
     */
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.13),
            rgba(255,255,255,.035)
        ) !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/*
 * Give the transparent logo just enough definition
 * against the dark gradient without modifying the image.
 */
.site-header .brand img {
    width: 108px !important;
    max-width: 108px !important;

    filter:
        brightness(1.12)
        saturate(.92)
        drop-shadow(0 1px 3px rgba(0,0,0,.18));
}


/* ========================================================
   NAV BUTTONS — BLEND INTO SAME HEADER
======================================================== */

.site-header .main-navigation > a:not(.button-whatsapp),
.header-language {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.105),
            rgba(255,255,255,.055)
        );

    border-color:
        rgba(255,255,255,.16);
}


.site-header .main-navigation > a:not(.button-whatsapp):hover,
.header-language:hover {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.19),
            rgba(255,255,255,.10)
        );

    border-color:
        rgba(255,255,255,.29);
}


/* Active navigation remains obvious */

.site-header .main-navigation > a[aria-current="page"]:not(.button-whatsapp) {
    background:
        linear-gradient(
            180deg,
            #f2bd00,
            #dda900
        );

    border-color: #f2bd00;

    color: #111820;
}


/* WhatsApp gets slightly softer treatment */

.site-header .button-whatsapp {
    background:
        linear-gradient(
            180deg,
            #22bd61,
            #18a951
        );

    border:
        1px solid rgba(255,255,255,.12);
}


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

@media (max-width: 900px) {

    .site-header {
        background:
            linear-gradient(
                105deg,
                rgba(5,18,29,.98),
                rgba(10,49,58,.96)
            ) !important;
    }

    .site-header .brand {
        padding: 4px 7px;
    }

    .site-header .brand img {
        width: 88px !important;
        max-width: 88px !important;
    }

}


@media (max-width: 480px) {

    .site-header .brand img {
        width: 82px !important;
        max-width: 82px !important;
    }

}


/* ========================================================
   FINAL HEADER LOGO INTEGRATION
======================================================== */

/*
 * Remove all card/glass styling around the logo.
 */
.site-header .brand {
    padding: 0 !important;
    margin: 0;

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

    background: transparent !important;

    box-shadow: none !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}


/*
 * Convert the existing transparent logo to a clean,
 * understated light mark so it belongs to the dark header.
 *
 * The source image itself is NOT changed.
 */
.site-header .brand img {
    width: 105px !important;
    max-width: 105px !important;

    height: auto !important;
    max-height: 58px !important;

    opacity: .88;

    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 1px 2px rgba(0,0,0,.18)) !important;
}


/*
 * Keep header gradient restrained.
 */
.site-header {
    background:
        linear-gradient(
            100deg,
            rgba(5,18,29,.97) 0%,
            rgba(7,29,40,.96) 48%,
            rgba(11,53,63,.91) 100%
        ) !important;
}


/* Slight visual separation without a hard border */
.site-header {
    border-bottom:
        1px solid rgba(255,255,255,.10) !important;
}


/* MOBILE */

@media (max-width: 900px) {

    .site-header .brand img {
        width: 90px !important;
        max-width: 90px !important;
        max-height: 52px !important;
    }

}


@media (max-width: 480px) {

    .site-header .brand img {
        width: 82px !important;
        max-width: 82px !important;
    }

}


/* ========================================================
   TURQUOISE BRAND ACCENT
======================================================== */

:root {
    --gettaxi-turquoise: #1599a8;
    --gettaxi-turquoise-soft: #3db6c1;
}


/* HEADER */

.site-header {
    background:
        linear-gradient(
            100deg,
            rgba(5,18,29,.98) 0%,
            rgba(7,31,43,.97) 48%,
            rgba(10,64,72,.94) 78%,
            rgba(18,114,122,.88) 100%
        ) !important;

    border-bottom:
        1px solid rgba(61,182,193,.28) !important;
}


/* NAV HOVER */

.site-header .main-navigation > a:not(.button-whatsapp):hover {
    background:
        linear-gradient(
            180deg,
            rgba(61,182,193,.22),
            rgba(61,182,193,.10)
        );

    border-color:
        rgba(61,182,193,.55);

    color: white;
}


/* LANGUAGE BUTTONS */

.header-language:hover,
.header-language.is-active {
    border-color:
        rgba(61,182,193,.48);
}


/* FOOTER */

.site-footer {
    position: relative;

    background:
        linear-gradient(
            110deg,
            #090f15 0%,
            #0b151c 62%,
            #0b2429 100%
        );
}


/* Turquoise brand line across footer */

.site-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            var(--gettaxi-turquoise) 20%,
            var(--gettaxi-turquoise-soft) 55%,
            transparent 100%
        );
}


/* Footer links */

.footer-grid a:hover {
    color: var(--gettaxi-turquoise-soft);
}


/* Footer logo plate: slightly cooler than plain white */

.footer-logo {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.96),
            rgba(220,245,247,.93)
        );
}


/* Small turquoise accent under brand name */

.footer-brand-block > strong {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-brand-block > strong::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 42px;
    height: 3px;

    border-radius: 999px;

    background:
        var(--gettaxi-turquoise);
}



/* ========================================================
   RESTORE GETTAXI LOGO BRAND COLOURS
======================================================== */

.site-header .brand img {
    width: 105px !important;
    max-width: 105px !important;

    height: auto !important;
    max-height: 58px !important;

    opacity: .96;

    /*
     * Keep original navy + turquoise logo colours.
     * Just brighten slightly for the dark header.
     */
    filter:
        brightness(1.10)
        saturate(1.18)
        contrast(1.05)
        drop-shadow(0 1px 2px rgba(0,0,0,.22)) !important;
}


@media (max-width: 900px) {

    .site-header .brand img {
        width: 90px !important;
        max-width: 90px !important;
    }

}


@media (max-width: 480px) {

    .site-header .brand img {
        width: 82px !important;
        max-width: 82px !important;
    }

}


/* ========================================================
   HEADER-SPECIFIC GETTAXI LOGO
======================================================== */

/*
 * Header now uses a purpose-made image for the dark navbar.
 * No CSS recolouring/filtering required.
 */

.site-header .brand {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.site-header .brand img {
    display: block;

    width: 110px !important;
    max-width: 110px !important;

    height: auto !important;
    max-height: 60px !important;

    opacity: 1 !important;

    filter: none !important;

    object-fit: contain;
}


/* MOBILE */

@media (max-width: 900px) {

    .site-header .brand img {
        width: 92px !important;
        max-width: 92px !important;
    }

}


@media (max-width: 480px) {

    .site-header .brand img {
        width: 84px !important;
        max-width: 84px !important;
    }

}


/* ========================================================
   FOOTER LOGO — MATCH HEADER
======================================================== */

.footer-logo {
    display: inline-flex;
    align-items: center;

    margin-bottom: 14px;

    padding: 0 !important;

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

    background: transparent !important;

    box-shadow: none !important;

    text-decoration: none;
}


.footer-logo img {
    display: block;

    width: 120px;
    max-width: 120px;

    height: auto;

    opacity: 1;

    filter: none !important;

    object-fit: contain;
}


@media (max-width: 640px) {

    .footer-logo img {
        width: 105px;
        max-width: 105px;
    }

}


/* ========================================================
   SEO / GEO INFORMATION SECTION
======================================================== */

.home-seo-guide {
    padding: 88px 0;
    background: #f7f9fa;
}

.home-seo-guide-inner {
    max-width: 1180px;
}

.home-seo-guide-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.home-seo-guide-heading h2 {
    margin-top: 8px;
}

.home-seo-guide-heading > p:last-child {
    max-width: 720px;
}

.home-seo-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.home-seo-guide-grid article {
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(17, 24, 32, 0.09);
    border-radius: 16px;
}

.home-seo-guide-grid h3 {
    margin: 0 0 12px;
    font-size: 1.1rem;
    line-height: 1.35;
}

.home-seo-guide-grid p {
    margin: 0;
    line-height: 1.7;
}

.home-seo-guide-grid a {
    display: inline-block;
    margin-top: 16px;
    font-weight: 700;
}

@media (max-width: 760px) {
    .home-seo-guide {
        padding: 64px 0;
    }

    .home-seo-guide-grid {
        grid-template-columns: 1fr;
    }

    .home-seo-guide-grid article {
        padding: 22px;
    }
}



/* ========================================================
   WHATSAPP PHONE ICON
======================================================== */

[data-track="whatsapp"]::before {
    content: "";
    display: inline-block;
    width: 1.05em;
    height: 1.05em;
    margin-right: 0.5em;
    vertical-align: -0.12em;
    background-color: currentColor;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.2 1.3.4 2.6.7 4 .7.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.3 21.6 2.4 13.7 2.4 3.4c0-.7.5-1.2 1.2-1.2h3.5c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.7 4 .1.4 0 .9-.3 1.2l-2.1 2.2z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.2 1.3.4 2.6.7 4 .7.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.3 21.6 2.4 13.7 2.4 3.4c0-.7.5-1.2 1.2-1.2h3.5c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.7 4 .1.4 0 .9-.3 1.2l-2.1 2.2z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}


/* Floating WhatsApp button can use a slightly larger icon */
.floating-whatsapp[data-track="whatsapp"]::before {
    width: 1.15em;
    height: 1.15em;
}



/* ========================================================
   PWA UPDATE NOTICE
======================================================== */

.pwa-update-notice {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 9999;

    transform: translateX(-50%);

    width: min(calc(100% - 32px), 520px);

    padding: 14px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    background: #111820;
    color: #ffffff;

    border-radius: 14px;

    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.pwa-update-notice[hidden] {
    display: none !important;
}

.pwa-update-notice span {
    font-size: 14px;
    line-height: 1.4;
}

.pwa-update-button {
    flex: 0 0 auto;

    border: 0;
    border-radius: 999px;

    padding: 10px 18px;

    background: #f5c400;
    color: #111820;

    font: inherit;
    font-weight: 700;

    cursor: pointer;
}

@media (max-width: 600px) {

    .pwa-update-notice {
        bottom: 88px;
    }

}


/* ========================================================
   GETTAXI LEGAL MODALS
======================================================== */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-legal-links button,
.legal-inline-link {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.form-legal-acceptance {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.form-legal-acceptance > input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
}

.legal-modal[hidden] {
    display: none !important;
}

.legal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 13, 20, 0.72);
}

.legal-modal-panel {
    position: relative;
    z-index: 1;

    width: min(760px, calc(100% - 28px));
    max-height: min(82vh, 850px);

    overflow-y: auto;

    margin: 7vh auto;
    padding: 28px;

    border-radius: 18px;

    background: #ffffff;
    color: #17212b;

    box-shadow:
        0 24px 70px
        rgba(0, 0, 0, 0.28);
}

.legal-modal-panel h2 {
    margin-top: 0;
    padding-right: 42px;
}

.legal-modal-panel h3 {
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 1rem;
}

.legal-modal-panel p {
    line-height: 1.65;
}

.legal-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 999px;

    background: #eef2f4;
    color: #17212b;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;
}

body.legal-modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {

    .legal-modal-panel {
        width: calc(100% - 20px);
        max-height: 90vh;
        margin: 5vh auto;
        padding: 22px 18px;
    }

}


/* ========================================================
   LEGAL ACCEPTANCE INLINE FIX
======================================================== */

.form-legal-acceptance {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 10px !important;
}

.form-legal-acceptance > input[type="checkbox"] {
    flex: 0 0 auto !important;
    width: 18px !important;
    height: 18px !important;
    margin: 3px 0 0 !important;
}

.form-legal-acceptance > span {
    flex: 1 1 auto;
    min-width: 0;
    display: inline;
}

