/* ============================================= */
/* ATAV Homepage Prototype v2 — Stylesheet      */
/* hp- prefix for all classes                    */
/* ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1e2a40;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---- PROTOTYPE BANNER (non-sticky info bar) ---- */
.proto-banner {
    background: #ff6b00;
    color: #fff;
    text-align: center;
    padding: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 10000;
    position: relative;
}

/* ============================================= */
/* HEADER / NAVIGATION                           */
/* ============================================= */
.hp-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0;
    min-height: 68px;
}

.hp-nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hp-nav-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.hp-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hp-nav-links > li > a {
    color: #1e2a40;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.hp-nav-links > li > a:hover {
    background: rgba(26, 26, 46, 0.06);
    color: #D60000;
}

.hp-nav-dropdown {
    position: relative;
}

.hp-nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hp-nav-dropdown-trigger svg {
    width: 14px;
    height: 14px;
    color: #1e2a40;
    opacity: 0.5;
    transition: transform 0.2s;
}

.hp-nav-dropdown:hover .hp-nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.hp-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    min-width: 220px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(8px);
}

.hp-nav-dropdown:hover .hp-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hp-nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #1e2a40;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.15s;
}

.hp-nav-dropdown-menu a:hover {
    background: rgba(26, 26, 46, 0.06);
}

.hp-nav-dropdown-menu a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #D60000;
}

.hp-nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.hp-lang-switcher {
    position: relative;
}

.hp-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 26, 46, 0.04);
    border: 1px solid rgba(26, 26, 46, 0.12);
    border-radius: 8px;
    padding: 8px 12px;
    color: #1e2a40;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.hp-lang-btn:hover {
    background: rgba(26, 26, 46, 0.08);
}

.hp-lang-btn img {
    border-radius: 2px;
}

.hp-lang-btn svg {
    width: 14px;
    height: 14px;
    color: #1e2a40;
    opacity: 0.5;
    transition: transform 0.2s;
}

.hp-lang-switcher.open .hp-lang-btn svg {
    transform: rotate(180deg);
}

.hp-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    padding: 6px;
    min-width: 120px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 100;
}

.hp-lang-switcher.open .hp-lang-dropdown {
    opacity: 1;
    visibility: visible;
}

.hp-lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #1e2a40;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.15s;
}

.hp-lang-option:hover {
    background: rgba(26, 26, 46, 0.06);
}

.hp-lang-option.active {
    background: rgba(214, 0, 0, 0.08);
    color: #D60000;
}

.hp-lang-option img {
    border-radius: 2px;
}

.hp-nav-cta {
    display: inline-block;
    background: linear-gradient(135deg, #D60000 0%, #8b0000 50%, #5c0000 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 24px;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.hp-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(214, 0, 0, 0.35);
    color: #fff;
}

.hp-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hp-hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #1e2a40;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hp-hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hp-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hp-hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.hp-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e2a40 0%, #2d426c 50%, #3b5998 100%);
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.hp-mobile-menu.open {
    transform: translateX(0);
}

.hp-mobile-menu-inner {
    padding: 24px 24px 40px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.hp-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.hp-mobile-menu-header img {
    height: 34px;
    width: auto;
}

.hp-mobile-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.hp-mobile-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hp-mobile-close svg {
    width: 20px;
    height: 20px;
    color: #fff;
    stroke: #fff;
}

.hp-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.hp-mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-mobile-nav a {
    display: block;
    padding: 16px 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.2s;
}

.hp-mobile-nav a:hover {
    color: #ffd700;
}

.hp-mobile-lang {
    margin-top: 30px;
    margin-bottom: 24px;
}

.hp-mobile-lang p {
    color: #fff;
    opacity: 0.5;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hp-mobile-lang-flags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hp-mobile-lang-flags a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}

.hp-mobile-lang-flags a:hover,
.hp-mobile-lang-flags a.active {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

.hp-mobile-lang-flags img {
    border-radius: 2px;
}

.hp-mobile-cta {
    display: block;
    text-align: center;
    margin-top: auto;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.1rem;
}

/* ============================================= */
/* UTILITY CLASSES                                */
/* ============================================= */
.hp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hp-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hp-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.25;
}

.hp-section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.hp-btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #D60000 0%, #8b0000 50%, #5c0000 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.3px;
}

.hp-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 0, 0, 0.35);
    color: #fff;
}

.hp-btn-outline {
    display: inline-block;
    border: 2px solid #D60000;
    color: #D60000;
    background: transparent;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hp-btn-outline:hover {
    background: #D60000;
    color: #fff;
    transform: translateY(-2px);
}

.hp-btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.hp-btn-outline-light:hover {
    background: #fff;
    color: #1e2a40;
}

.hp-section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Horizontal Scroll Track (reused) */
/* ── Slider Component (reusable) ── */
.hp-slider {
    position: relative;
}

.hp-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 8px;
}

.hp-slider-track::-webkit-scrollbar {
    display: none;
}

.hp-slider-track > * {
    scroll-snap-align: start;
    flex-shrink: 0;
}

.hp-slider-track img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.hp-slider-track {
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}

.hp-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #1e2a40;
    background: #fff;
    color: #1e2a40;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hp-slider-arrow:hover {
    background: #1e2a40;
    color: #fff;
}

.hp-slider-prev { left: -16px; }
.hp-slider-next { right: -16px; }

.hp-slider-arrow-light {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.hp-slider-arrow-light:hover {
    background: #fff;
    color: #1e2a40;
}

/* ── Red accent text ── */
.hp-text-red { color: #D60000; }

/* ── Section footnote ── */
.hp-section-footnote {
    text-align: center;
    font-size: 0.88rem;
    color: #777;
    margin-top: 20px;
    font-style: italic;
}

/* ── Seamless Travel Features Strip ── */
.hp-seamless-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.hp-seamless-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    width: 110px;
}

.hp-seamless-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

.hp-seamless-item span {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1e2a40;
}

/* ── Blog excerpt ── */
.hp-blog-excerpt {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* ============================================= */
/* 1. HERO SECTION                               */
/* ============================================= */
.hp-hero {
    background: linear-gradient(135deg, #1e2a40 0%, #2d426c 50%, #3b5998 100%);
    color: #fff;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 0, 0, 0.07) 0%, transparent 50%);
    animation: hp-hero-rotate 25s linear infinite;
}

@keyframes hp-hero-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge */
.hp-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D60000, #ff4444);
    color: #fff;
    padding: 8px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: hp-badge-pulse 2s ease-in-out infinite;
}

@keyframes hp-badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(214, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(214, 0, 0, 0.3);
    }
}

/* Logo */
.hp-hero-logo {
    width: 180px;
    margin: 0 auto 30px;
}

.hp-hero-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

/* H1 */
.hp-hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
}

.hp-hero-red {
    color: #ff3333;
}

/* Subtitle */
.hp-hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Price highlight box */
.hp-hero-price-box {
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px 50px;
    display: inline-block;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.hp-hero-price-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff3333, #ff6b6b, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hp-hero-price-label {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 8px;
}

/* CTA Button */
.hp-hero-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #D60000, #ff2222);
    color: #fff;
    padding: 20px 56px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 25px rgba(214, 0, 0, 0.4);
}

.hp-hero-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(214, 0, 0, 0.5);
}

/* ============================================= */
/* 2. TRUST + STATS SECTION                      */
/* ============================================= */
.hp-trust {
    background: #fff;
    padding: 60px 0;
}

.hp-trust-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.hp-review-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 28px 24px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.hp-review-card:hover {
    transform: translateY(-8px);
}

/* Trustpilot card — green border */
.hp-review-card--trustpilot {
    border-color: #00b67a;
}
.hp-review-card--trustpilot:hover {
    box-shadow: 0 0 25px 0 rgba(0, 182, 122, 0.3);
}

/* Google card — rainbow gradient border (compatible with border-radius) */
.hp-review-card--google {
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(to right, #4285f4, #34a853, #fbbc05, #ea4335) border-box;
}
.hp-review-card--google:hover {
    box-shadow: 0 0 25px 0 rgba(66, 133, 244, 0.3);
}

/* TripAdvisor card — green border */
.hp-review-card--tripadvisor {
    border-color: #34e0a1;
}
.hp-review-card--tripadvisor:hover {
    box-shadow: 0 0 25px 0 rgba(52, 224, 161, 0.3);
}

/* Card header: logo + stars */
.hp-review-card__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hp-review-card__logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.hp-review-card__logo--large {
    height: 90px;
}

.hp-review-card__stars {
    height: 22px;
    width: auto;
    object-fit: contain;
}

/* Card body: rating + link */
.hp-review-card__body {
    text-align: center;
}

.hp-review-card__rating {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e2a40;
    margin: 0 0 6px 0;
}

.hp-review-card__link {
    font-size: 0.88rem;
    color: #D60000;
    text-decoration: underline;
}

/* Stats row */
.hp-trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hp-trust-stat {
    text-align: center;
}

.hp-trust-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #D60000;
    line-height: 1.2;
}

.hp-trust-stat-label {
    display: block;
    font-size: 0.85rem;
    color: #555;
    margin-top: 4px;
}

/* Trust banner */
.hp-trust-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #D60000;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: 50px;
    max-width: 420px;
    margin: 0 auto;
}

.hp-trust-banner svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke: #fff;
}

/* ============================================= */
/* 3. AIRPORT TRANSFERS SECTION                  */
/* ============================================= */
.hp-transfers {
    background: linear-gradient(135deg, #1e2a40 0%, #2d426c 50%, #3b5998 100%);
    color: #fff;
    padding: 80px 0;
}

.hp-transfers .hp-section-title {
    color: #fff;
}

.hp-transfers .hp-section-subtitle {
    color: #fff;
}

/* Transfer type cards (FROM / TO) */
.hp-transfer-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.hp-transfer-type-card {
    background: #fff;
    color: #1e2a40;
    border-radius: 20px;
    padding: 36px 32px;
}

.hp-transfer-type-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.hp-transfer-type-icon svg {
    width: 100%;
    height: 100%;
    color: #D60000;
    stroke: #D60000;
}

.hp-transfer-type-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1e2a40;
}

.hp-transfer-type-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

.hp-transfer-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hp-transfer-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #333;
    line-height: 1.5;
}

.hp-transfer-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #D60000;
    stroke: #D60000;
    margin-top: 2px;
}

/* Fleet heading */
.hp-fleet-heading {
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    color: #fff;
    margin-bottom: 8px;
}

.hp-fleet-subheading {
    text-align: center;
    color: #fff;
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 36px;
}

/* Vehicle grid */
.hp-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.hp-vehicle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    color: #1e2a40;
    border-radius: 20px;
    padding: 28px 20px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    border: 2px solid transparent;
}

.hp-vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.hp-vehicle-popular {
    border-color: #D60000;
}

/* Vehicle badge */
.hp-vehicle-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e2a40;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hp-badge-popular {
    background: #D60000;
}

.hp-vehicle-img {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hp-vehicle-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.hp-vehicle-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.hp-vehicle-model {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 12px;
}

.hp-vehicle-specs {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 14px;
}

.hp-vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #555;
}

.hp-vehicle-specs svg {
    width: 16px;
    height: 16px;
    color: #D60000;
    stroke: #D60000;
}

.hp-vehicle-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #D60000;
    margin-bottom: 10px;
}

.hp-vehicle-cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: #D60000;
    transition: opacity 0.2s;
}

.hp-vehicle-card:hover .hp-vehicle-cta {
    opacity: 0.7;
}

.hp-transfers-cta {
    text-align: center;
}

/* ============================================= */
/* 4. HOTELS SECTION                             */
/* ============================================= */
.hp-hotels {
    background: #fff;
    padding: 80px 0;
}

.hp-hotels .hp-section-title {
    color: #1e2a40;
}

.hp-hotels .hp-section-subtitle {
    color: #555;
}

.hp-hotel-card {
    width: 260px;
    flex-shrink: 0;
    background: #fff;
    border: 2px solid #1e2a40;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hp-hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.hp-hotel-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.hp-hotel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-hotel-info {
    padding: 20px;
}

.hp-hotel-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e2a40;
    margin-bottom: 6px;
}

.hp-hotel-desc {
    font-size: 0.82rem;
    color: #777;
    margin-bottom: 6px;
    line-height: 1.4;
}

.hp-hotel-price {
    font-size: 0.9rem;
    color: #D60000;
    font-weight: 700;
}

/* ============================================= */
/* 5. LONG DISTANCE SECTION                      */
/* ============================================= */
.hp-longdistance {
    background: linear-gradient(135deg, #1e2a40 0%, #2d426c 50%, #3b5998 100%);
    color: #fff;
    padding: 80px 0;
}

.hp-longdistance .hp-section-title {
    color: #fff;
}

.hp-longdistance .hp-section-subtitle {
    color: #fff;
}

.hp-route-card {
    width: 300px;
    background: #fff;
    color: #1e2a40;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hp-route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.hp-route-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.hp-route-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-route-card-info {
    padding: 24px;
}

.hp-route-card-info h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #1e2a40;
}

.hp-route-card-info p {
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 10px;
}

.hp-route-card-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: #D60000;
}

/* ============================================= */
/* 6. SERVICES TEASER SECTION                    */
/* ============================================= */
.hp-services-teaser {
    background: #fff;
    padding: 80px 0;
}

.hp-services-teaser .hp-section-title {
    color: #1e2a40;
}

.hp-services-teaser .hp-section-subtitle {
    color: #555;
}

.hp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hp-service-card {
    background: #fff;
    border: 2px solid #1e2a40;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hp-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.hp-service-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.hp-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-service-info {
    padding: 20px;
}

.hp-service-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e2a40;
    margin-bottom: 8px;
}

.hp-service-info p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

/* ============================================= */
/* 7. BLOG SECTION                               */
/* ============================================= */
.hp-blog {
    background: linear-gradient(135deg, #1e2a40 0%, #2d426c 50%, #3b5998 100%);
    color: #fff;
    padding: 80px 0;
}

.hp-blog .hp-section-title {
    color: #fff;
}

.hp-blog .hp-section-subtitle {
    color: #fff;
}

/* hp-blog-grid removed — blog now uses hp-slider */

.hp-blog-card {
    width: 320px;
    background: #fff;
    color: #1e2a40;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hp-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.hp-blog-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.hp-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-blog-info {
    padding: 24px;
}

.hp-blog-tag {
    display: inline-block;
    background: rgba(214, 0, 0, 0.1);
    color: #D60000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hp-blog-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e2a40;
    margin-bottom: 8px;
    line-height: 1.4;
}

.hp-blog-meta {
    font-size: 0.82rem;
    color: #888;
}

/* ============================================= */
/* 8. FAQ SECTION                                */
/* ============================================= */
.hp-faq {
    background: #fff;
    padding: 80px 0;
}

.hp-faq .hp-section-title {
    color: #1e2a40;
}

.hp-faq .hp-section-subtitle {
    color: #555;
}

.hp-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.hp-faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.hp-faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    text-align: left;
}

.hp-faq-question span {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e2a40;
}

.hp-faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #888;
    transition: transform 0.3s;
}

.hp-faq-item.open .hp-faq-question svg {
    transform: rotate(180deg);
    color: #D60000;
}

.hp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.hp-faq-item.open .hp-faq-answer {
    max-height: 300px;
}

.hp-faq-answer p {
    padding: 0 0 20px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* ============================================= */
/* 9. POPULAR ROUTES SECTION                     */
/* ============================================= */
.hp-routes {
    background: linear-gradient(135deg, #1e2a40 0%, #2d426c 50%, #3b5998 100%);
    color: #fff;
    padding: 60px 0;
}

.hp-routes-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.hp-routes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hp-route-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hp-route-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.hp-route-link svg {
    width: 14px;
    height: 14px;
    color: #ffd700;
    stroke: #ffd700;
}

/* ============================================= */
/* 10. FOOTER                                    */
/* ============================================= */
.hp-footer {
    background: #fff;
    color: #1e2a40;
    padding: 60px 0 0;
    border-top: 1px solid #e5e5e5;
}

.hp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.hp-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hp-footer-logo {
    margin-bottom: 12px;
}

.hp-footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.hp-footer-tagline {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.5;
}

.hp-footer-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hp-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, transform 0.2s;
    opacity: 0.85;
}

.hp-footer-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.hp-footer-social img {
    width: 28px;
    height: 28px;
    display: block;
}

.hp-footer-col {
    text-align: left;
}

.hp-footer h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e2a40;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hp-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hp-footer-links li {
    margin-bottom: 10px;
}

.hp-footer-links a {
    font-size: 0.88rem;
    color: #555;
    transition: color 0.2s;
}

.hp-footer-links a:hover {
    color: #D60000;
}

.hp-footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    color: #888;
}

.hp-footer-divider {
    margin: 0 10px;
    opacity: 0.4;
}

/* ============================================= */
/* RESPONSIVE — TABLET (max-width: 992px)        */
/* ============================================= */
@media (max-width: 992px) {
    .hp-section-title {
        font-size: 1.8rem;
    }

    .hp-hero {
        padding: 80px 20px 60px;
    }

    .hp-hero h1 {
        font-size: 2.4rem;
    }

    .hp-hero-price-number {
        font-size: 3rem;
    }

    .hp-hero-price-box {
        padding: 24px 36px;
    }

    .hp-hero-cta-btn {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .hp-trust-reviews {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Header: hide desktop nav, show hamburger */
    .hp-nav-links,
    .hp-nav-right {
        display: none;
    }

    .hp-hamburger {
        display: flex;
    }

    /* Transfer types */
    .hp-transfer-types {
        grid-template-columns: 1fr 1fr;
    }

    /* Vehicle grid: 2 columns */
    .hp-vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services: 2 columns */
    .hp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Slider arrows */
    .hp-slider-prev { left: -8px; }
    .hp-slider-next { right: -8px; }
    .hp-slider-arrow { width: 36px; height: 36px; font-size: 1.2rem; }

    /* Footer */
    .hp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hp-footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .hp-footer-col {
        text-align: center;
    }
}

/* ============================================= */
/* RESPONSIVE — MOBILE (max-width: 768px)        */
/* ============================================= */
@media (max-width: 768px) {
    .hp-section-title {
        font-size: 1.5rem;
    }

    .hp-hero {
        padding: 60px 20px 50px;
    }

    .hp-hero h1 {
        font-size: 1.8rem;
    }

    .hp-hero-logo {
        width: 140px;
    }

    .hp-hero-subtitle {
        font-size: 1rem;
    }

    .hp-hero-price-number {
        font-size: 2.5rem;
    }

    .hp-hero-price-box {
        padding: 20px 28px;
    }

    .hp-hero-cta-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .hp-trust-reviews {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Transfer types: stack */
    .hp-transfer-types {
        grid-template-columns: 1fr;
    }

    /* Vehicle grid: still 2 cols on mobile */
    .hp-vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Services: stack */
    .hp-services-grid {
        grid-template-columns: 1fr;
    }

    /* Slider cards narrower on mobile */
    .hp-hotel-card { width: 220px; }
    .hp-route-card { width: 260px; }
    .hp-blog-card { width: 280px; }
    .hp-slider-arrow { width: 32px; height: 32px; font-size: 1.1rem; }
    .hp-slider-prev { left: 4px; }
    .hp-slider-next { right: 4px; }

    /* Seamless features */
    .hp-seamless-features { gap: 16px; }
    .hp-seamless-item { width: 90px; }
    .hp-seamless-item img { width: 50px; height: 50px; }
    .hp-seamless-item span { font-size: 0.72rem; }

    /* Trust stats */
    .hp-trust-stats {
        gap: 30px;
    }

    .hp-trust-stat-number {
        font-size: 1.4rem;
    }

    /* Footer */
    .hp-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hp-footer-brand {
        align-items: center;
    }

    .hp-footer {
        padding: 40px 0 0;
    }
}

/* ============================================= */
/* RESPONSIVE — SMALL MOBILE (max-width: 480px)  */
/* ============================================= */
@media (max-width: 480px) {
    .hp-hero h1 {
        font-size: 1.5rem;
    }

    .hp-hero-subtitle {
        font-size: 0.88rem;
    }

    .hp-hero-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
    }

    .hp-hero-price-number {
        font-size: 2rem;
    }

    .hp-hero-price-box {
        padding: 18px 24px;
    }

    .hp-hero-cta-btn {
        padding: 12px 28px;
        font-size: 0.88rem;
    }

    /* Vehicle grid: 1 column */
    .hp-vehicle-grid {
        grid-template-columns: 1fr;
    }

    .hp-vehicle-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .hp-trust-reviews {
        flex-direction: column;
        align-items: center;
    }

    .hp-trust-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hp-btn-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .hp-btn-outline {
        padding: 12px 24px;
        font-size: 0.92rem;
    }

    .hp-faq-question span {
        font-size: 0.95rem;
    }

    .hp-routes-grid {
        flex-direction: column;
        align-items: center;
    }
}
