@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #fff;
    --fg: #1c1c24;
    --card: #fff;
    --muted: #777582;
    --primary: #6d2798;
    --primary2: #a923ef;
    --primary-light: #f4ecfb;
    --accent: #f1e8ff;
    --border: #e8e1ef;
    --charcoal: #2d2d38;
    --warm: #fbf7f0;
    --gold: #d9a83a;
    --hero: linear-gradient(160deg, #2d163d, #5c2b78, #3f2c54);
    --gradient: linear-gradient(135deg, var(--primary), var(--primary2));
    --shadow: 0 8px 32px -8px rgba(109, 39, 152, .18);
    --shadow-card: 0 6px 24px -10px rgba(109, 39, 152, .16);
    --shadow-hover: 0 22px 48px -18px rgba(109, 39, 152, .32);
    --display: 'Playfair Display', Georgia, serif;
    --body: 'DM Sans', system-ui, sans-serif;
    --radius: 14px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

p {
    line-height: 1.75
}

h1,
h2,
h3,
h4 {
    font-family: var(--display);
    letter-spacing: -.025em;
    line-height: 1.1;
    margin: 0 0 1rem
}

h1 {
    font-size: clamp(2.65rem, 4vw, 4rem);
    font-weight: 800
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800
}

h3 {
    font-size: 1.3rem
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem
}

.section-pad {
    padding: clamp(4rem, 8vw, 6rem) 1rem
}

.narrow {
    max-width: 820px
}

.center {
    text-align: center
}

.text-left {
    text-align: left
}

.mt-8 {
    margin-top: 2rem
}

.mt-10 {
    margin-top: 2.5rem
}

.mt-12 {
    margin-top: 3rem
}

.mb-16 {
    margin-bottom: 4rem
}

.bg-subtle {
    background: linear-gradient(180deg, #fbf7ff, #fff)
}

.skip-link {
    position: absolute;
    left: -999px
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    background: #fff;
    z-index: 9999;
    padding: .75rem 1rem;
    border-radius: .5rem
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.icon {
    width: 1.3rem;
    height: 1.3rem
}

.icon-sm {
    width: 1rem;
    height: 1rem
}

.icon-xs {
    width: .85rem;
    height: .85rem
}

.icon-menu {
    width: 1.6rem;
    height: 1.6rem
}

.topbar {
    background: var(--hero);
    color: rgba(255, 255, 255, .9);
    font-size: .88rem
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: .55rem;
    padding-bottom: .55rem
}

.topbar a,
.topbar span,
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: .55rem
}

.topbar-left,
.topbar-right {
    gap: 1.5rem
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s, background .3s
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(36, 22, 48, .08)
}

.nav-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.brand,
.footer-brand-row {
    display: flex;
    align-items: center;
    gap: .7rem
}

.brand-mark {
    width: 160px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(109, 39, 152, .18))
}

.brand-text strong,
.footer-brand-row strong {
    font-family: var(--display);
    font-size: 1.25rem;
    display: block;
    line-height: 1;
    font-weight: 800
}

.brand-text small,
.footer-brand-row small {
    display: block;
    font-size: .78rem;
    color: var(--muted);
    margin-top: .2rem
}

.desktop-nav {
    display: flex;
    gap: .2rem;
    align-items: center
}

.nav-item {
    position: relative
}

.nav-link {
    display: flex;
    gap: .25rem;
    align-items: center;
    padding: .65rem .85rem;
    border-radius: .65rem;
    font-weight: 600;
    font-size: .94rem;
    transition: .25s
}

.nav-link:hover,
.nav-link.is-active {
    background: var(--primary-light);
    color: var(--primary)
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: .35rem;
    min-width: 225px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .22s
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: none
}

.dropdown:before {
    content: "";
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: .9rem;
    position: absolute;
    inset: .35rem 0 0 0;
    z-index: -1
}

.dropdown a {
    display: block;
    padding: .7rem 1rem;
    font-size: .92rem;
    color: var(--fg);
    transition: .2s
}

.dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem
}

.drive-link {
    font-weight: 700;
    color: var(--primary);
    font-size: .92rem
}

.drive-link:hover {
    text-decoration: underline
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--fg);
    padding: .5rem
}

.icon-close {
    display: none
}

.menu-toggle.is-open .icon-open {
    display: none
}

.menu-toggle.is-open .icon-close {
    display: block
}

.mobile-menu {
    display: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
    border-top: 1px solid var(--border);
    padding: 0 1rem
}

.mobile-menu.is-open {
    max-height: 760px;
    padding: 1rem
}

.mobile-menu a {
    display: block;
    padding: .75rem;
    border-radius: .6rem;
    font-weight: 600
}

.mobile-subnav {
    padding-left: 1rem
}

.mobile-subnav a {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 500
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: .78rem;
    padding: .92rem 1.45rem;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .22s, box-shadow .22s, background .22s, opacity .22s;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: var(--shadow)
}

.btn-light {
    background: #fff;
    color: var(--primary)
}

.btn-glass {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px)
}

.btn-ghost-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .06)
}

.btn-small {
    padding: .68rem 1.1rem;
    font-size: .9rem
}

.btn-full {
    width: 100%
}

.home-hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--hero);
    color: #fff
}

.hero-media,
.hero-media img,
.page-hero-media,
.page-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-media img {
    opacity: .42;
    transform: scale(1.04);
    animation: kenburns 18s ease-out forwards
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 42%, rgba(151, 61, 222, .25), rgba(36, 20, 49, .75) 58%, rgba(22, 17, 30, .88)), linear-gradient(90deg, rgba(25, 16, 32, .6), rgba(84, 31, 105, .3))
}

.hero-sheen {
    position: absolute;
    inset: -30%;
    background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, .13), transparent 58%);
    animation: sheen 7s ease-in-out infinite
}

.hero-inner {
    position: relative;
    width: 100%;
}

.centered-hero .hero-inner {
    display: flex;
    justify-content: center;
    text-align: center
}

.hero-content {
    max-width: 980px
}

.hero-kicker,
.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .64rem;
    font-weight: 900;
    color: #c987ff;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: .38rem .7rem;
    border-radius: 999px
}

.eyebrow {
    color: var(--primary);
    background: transparent;
    border: 0;
    padding: 0
}

.eyebrow.light {
    color: #d7a6ff
}

.hero-content p {
    max-width: 720px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, .86);
    font-size: 1.13rem
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem
}

.centered-actions {
    justify-content: center
}

.trust-bar {
    border-bottom: 1px solid var(--border);
    background: #fff
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-top: 1.55rem;
    padding-bottom: 1.55rem
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    font-weight: 700
}

.trust-item svg {
    color: var(--primary)
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 3rem
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem
}

.card-grid {
    display: grid;
    gap: 1.5rem
}

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

.card-grid.three {
    grid-template-columns: repeat(3, 1fr)
}

.card-grid.four {
    grid-template-columns: repeat(4, 1fr)
}

.service-card,
.area-card,
.testimonial-card,
.feature-card,
.blog-card,
.faq-card,
.side-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform .3s, box-shadow .3s, border-color .3s
}

.service-card:hover,
.area-card:hover,
.feature-card:hover,
.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(109, 39, 152, .28)
}

.service-card {
    overflow: hidden
}

.service-card figure {
    margin: 0;
    aspect-ratio: 4/3;
    overflow: hidden
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s
}

.service-card:hover img {
    transform: scale(1.08)
}

.card-body {
    padding: 1.5rem
}

.card-body h3,
.area-card h3,
.feature-card h3,
.blog-card h3 {
    font-size: 1.35rem
}

.card-body p,
.area-card p,
.feature-card p,
.blog-card p,
.testimonial-card p,
.faq-card p,
.side-card p,
.copy p {
    color: var(--muted)
}

.learn-more,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--primary);
    font-weight: 800
}

.learn-more svg,
.text-link svg,
.side-link svg {
    transition: transform .25s
}

.service-card:hover .learn-more svg,
.blog-card:hover .learn-more svg,
.text-link:hover svg {
    transform: translateX(4px)
}

.area-card a {
    display: block;
    padding: 1.5rem
}

.area-card.is-primary {
    background: var(--gradient);
    color: #fff;
    border: 0
}

.area-card.is-primary p {
    color: rgba(255, 255, 255, .82)
}

.area-card.is-primary .icon-box {
    background: rgba(255, 255, 255, .18);
    color: #fff
}

.area-card.is-primary span {
    color: #fff
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: .8rem;
    background: var(--primary-light);
    color: var(--primary);
    display: grid;
    place-items: center;
    margin-bottom: 1rem
}

.image-band {
    position: relative;
    overflow: hidden;
    color: #fff
}

.image-band>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.image-band-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 22, 61, .9)
}

.driver-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 38, .88)
}

.image-band-content {
    position: relative;
    max-width: 760px
}

.image-band h2,
.final-cta h2 {
    font-size: clamp(2.1rem, 4.5vw, 3.8rem)
}

.image-band p,
.final-cta p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.07rem
}

.tick-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem
}

.tick-list li {
    margin: .55rem 0;
    color: rgba(255, 255, 255, .82)
}

.tick-list li:before {
    content: "";
    display: inline-block;
    width: .42rem;
    height: .42rem;
    background: #d7a6ff;
    border-radius: 99px;
    margin-right: .65rem;
    vertical-align: middle
}

.final-cta {
    background: var(--gradient);
    color: #fff
}

.page-hero {
    position: relative;
    background: var(--hero);
    color: #fff;
    overflow: hidden
}

.page-hero.has-image .page-hero-media img {
    opacity: .28
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(148, 65, 206, .25), rgba(34, 18, 45, .8) 70%)
}

.page-hero-inner {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: .55rem;
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    margin-bottom: 1.5rem
}

.breadcrumbs a:hover {
    color: #fff
}

.page-hero-content {
    max-width: 850px;
    text-align: center;
    margin: 0 auto
}

.page-hero-content p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.12rem;
    max-width: 760px;
    margin: 0 auto 1.5rem
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem
}

.align-center {
    align-items: center
}

.copy h2 {
    margin-bottom: 1.2rem
}

.copy h3 {
    margin-top: 2.2rem
}

.copy a {
    color: var(--primary);
    font-weight: 800
}

.image-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 0
}

.center-title {
    text-align: center;
    margin-bottom: 3rem
}

.feature-card {
    padding: 1.55rem
}

.feature-card>svg {
    color: var(--primary);
    width: 2.1rem;
    height: 2.1rem;
    margin-bottom: 1rem
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
}

.mini-card {
    display: flex;
    gap: .85rem;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: .75rem
}

.mini-card svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: .1rem
}

.mini-card h3 {
    font-family: var(--body);
    font-size: .96rem;
    margin-bottom: .2rem
}

.mini-card p {
    font-size: .85rem;
    line-height: 1.5;
    margin: 0
}

.content-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 2rem
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.side-cta {
    background: var(--gradient);
    color: #fff;
    border-radius: var(--radius);
    padding: 1.55rem;
    box-shadow: var(--shadow)
}

.side-cta p {
    color: rgba(255, 255, 255, .82);
    font-size: .93rem
}

.side-card {
    padding: 1.55rem;
    box-shadow: none
}

.side-link {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: var(--primary);
    font-weight: 700;
    font-size: .94rem;
    margin: .65rem 0
}

.feature-line {
    display: flex;
    gap: .5rem;
    align-items: center;
    color: var(--fg) !important
}

.airport-grid,
.service-link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem
}

.service-link-grid.three {
    grid-template-columns: repeat(3, 1fr)
}

.airport-grid div,
.service-link-grid a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem;
    background: var(--primary-light);
    border-radius: .75rem;
    color: var(--fg);
    font-weight: 700;
    font-size: .92rem
}

.service-link-grid a {
    color: var(--primary);
    background: #fff;
    border: 1px solid var(--border)
}

.bullet-list {
    padding-left: 0;
    list-style: none
}

.bullet-list li {
    margin: .6rem 0;
    color: var(--muted)
}

.bullet-list li:before {
    content: "";
    display: inline-block;
    width: .45rem;
    height: .45rem;
    background: var(--primary);
    border-radius: 999px;
    margin-right: .7rem
}

.testimonial-card {
    padding: 1.5rem
}

.stars {
    display: flex;
    gap: .2rem;
    margin-bottom: .8rem
}

.icon-star {
    width: 1rem;
    height: 1rem;
    color: var(--gold);
    fill: var(--gold)
}

.testimonial-card strong {
    font-size: .94rem
}

.testimonial-card span {
    color: var(--muted);
    font-size: .84rem
}

.faq-card {
    padding: 1.5rem;
    box-shadow: none
}

.faq-list,
.faq-preview {
    display: grid;
    gap: 1rem
}

.blog-card {
    overflow: hidden
}

.blog-strip {
    height: .5rem;
    background: var(--gradient)
}

.post-meta {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .8rem;
    flex-wrap: wrap
}

.post-meta span {
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--primary)
}

.post-meta small {
    display: flex;
    align-items: center;
    gap: .25rem;
    color: var(--muted)
}

.booking-form,
.driver-form {
    display: grid;
    gap: 1rem
}

.form-grid {
    display: grid;
    gap: 1rem
}

.form-grid.two {
    grid-template-columns: repeat(2, 1fr)
}

input,
textarea {
    width: 100%;
    font-family: var(--body);
    padding: .95rem 1rem;
    border: 1px solid var(--border);
    border-radius: .75rem;
    background: #fff;
    color: var(--fg);
    font-size: .94rem;
    transition: border .2s, box-shadow .2s
}

textarea {
    resize: vertical
}

input:focus,
textarea:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(109, 39, 152, .13)
}

.contact-grid h2,
.contact-side h2 {
    font-size: 2rem
}

.contact-list {
    display: grid;
    gap: 1rem
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--primary-light);
    padding: 1rem;
    border-radius: .8rem
}

.contact-item svg {
    color: var(--primary);
    flex-shrink: 0
}

.contact-item span {
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 900
}

.contact-item p,
.contact-item a {
    margin: .15rem 0 0;
    color: var(--fg);
    font-weight: 700
}

.driver-page .section-heading h2 {
    margin-bottom: .8rem
}

.driver-form-wrap {
    max-width: 760px;
    margin: 0 auto
}

.driver-form {
    background: var(--gradient);
    color: #fff;
    border-radius: 1.1rem;
    padding: clamp(2rem, 4vw, 2.7rem);
    box-shadow: var(--shadow-hover)
}

.driver-form h2 {
    font-size: 2rem
}

.driver-form p {
    color: rgba(255, 255, 255, .82);
    margin-top: 0
}

.driver-form input,
.driver-form textarea {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    color: #fff
}

.driver-form input::placeholder,
.driver-form textarea::placeholder {
    color: rgba(255, 255, 255, .58)
}

.driver-form input:focus,
.driver-form textarea:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .6)
}

.form-success {
    padding: 2rem;
    text-align: center
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    display: grid;
    place-items: center;
    margin: 0 auto 1rem
}

.success-icon.light {
    background: rgba(255, 255, 255, .15);
    color: #fff
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: #2b2d37;
    color: rgba(255, 255, 255, .74);
    margin-bottom: 0
}

.footer-glow {
    position: absolute;
    inset: auto -10% -50% auto;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(129, 48, 187, .22), transparent 62%)
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 3rem
}

.footer-brand p {
    max-width: 300px
}

.footer-brand a,
.footer-col a {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: .65rem 0;
    color: rgba(255, 255, 255, .76);
    font-size: .95rem;
    transition: color .2s, transform .2s
}

.footer-brand a:hover,
.footer-col a:hover {
    color: #fff;
    transform: translateX(3px)
}

.footer-col h4 {
    font-size: 1.15rem;
    color: #fff
}

.footer-bottom {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1.6rem 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: .78rem
}

.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 120;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: .75rem;
    gap: .75rem
}

.mobile-sticky-cta a {
    flex: 1;
    text-align: center;
    padding: .95rem;
    border-radius: .8rem;
    font-weight: 800
}

.sticky-call {
    background: var(--charcoal);
    color: #fff;
    display: flex;
    justify-content: center;
    gap: .45rem;
    align-items: center
}

.sticky-book {
    background: var(--gradient);
    color: #fff
}

.not-found {
    min-height: 60vh;
    display: grid;
    place-items: center
}

.not-found h1 {
    color: var(--primary)
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1)
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.delay-1 {
    transition-delay: .08s
}

.delay-2 {
    transition-delay: .16s
}

.delay-3 {
    transition-delay: .24s
}

.delay-4 {
    transition-delay: .32s
}

.delay-5 {
    transition-delay: .4s
}

@keyframes kenburns {
    from {
        transform: scale(1.06)
    }

    to {
        transform: scale(1)
    }
}

@keyframes sheen {

    0%,
    55% {
        transform: translateX(-40%)
    }

    100% {
        transform: translateX(40%)
    }
}

@media (max-width:1100px) {

    .desktop-nav,
    .nav-actions {
        display: none
    }

    .menu-toggle,
    .mobile-menu {
        display: block
    }

    .topbar {
        display: none
    }

    .nav-inner {
        height: 74px
    }

    .mobile-sticky-cta {
        display: flex
    }

    .site-footer {
        margin-bottom: 72px
    }

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

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

    .content-sidebar,
    .two-col {
        grid-template-columns: 1fr
    }

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

@media (max-width:680px) {
    .section-pad {
        padding: 3.5rem 1rem
    }

    .brand-mark {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(109, 39, 152, .18))
}

    .home-hero {
        min-height: 78vh
    }

    .hero-content p {
        font-size: 1rem
    }

    .hero-actions .btn {
        width: 100%
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem
    }

    .trust-item {
        justify-content: flex-start;
        padding-left: 1rem
    }

    .card-grid.three,
    .card-grid.two,
    .card-grid.four,
    .mini-grid,
    .airport-grid,
    .service-link-grid,
    .service-link-grid.three,
    .form-grid.two {
        grid-template-columns: 1fr
    }

    .page-hero-inner {
        padding-top: 4rem;
        padding-bottom: 4rem
    }

    .breadcrumbs {
        font-size: .78rem;
        flex-wrap: wrap
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .contact-grid h2,
    .contact-side h2 {
        font-size: 1.7rem
    }

    .brand-text strong {
        font-size: .75rem
    }

    h1 {
        font-size: clamp(2.3rem, 6vw, 2.4rem)
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* Driver document upload update */

.driver-upload-panel {
    display: grid;
    gap: 0.85rem;
    margin: 1rem 0;
    padding: 1.1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.driver-upload-panel h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: #fff;
}

.driver-upload-panel p,
.upload-help {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

.file-upload-field {
    display: grid;
    gap: 0.45rem;
    padding: 0.85rem;
    border: 1px dashed rgba(255, 255, 255, 0.28);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.file-upload-field:hover {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.file-upload-field span {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
}

.file-upload-field input[type="file"] {
    padding: 0.68rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    font-size: 0.86rem;
    cursor: pointer;
    color: #fff;
}

.file-upload-field input[type="file"]::file-selector-button {
    border: 0;
    border-radius: 0.65rem;
    background: #fff;
    color: var(--primary);
    padding: 0.56rem 0.8rem;
    margin-right: 0.8rem;
    font-weight: 800;
    cursor: pointer;
}

.upload-help {
    display: block;
    font-size: 0.78rem;
}

@media (max-width: 560px) {
    .driver-upload-panel {
        padding: 0.9rem;
    }

    .file-upload-field {
        padding: 0.75rem;
    }

    .file-upload-field input[type="file"]::file-selector-button {
        display: block;
        margin: 0 0 0.5rem 0;
        width: 100%;
    }
}