/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1a3a5c;
    --primary-dark: #0d2137;
    --accent: #c41e2a;
    --accent-hover: #a81824;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gold: #f4a261;
    --success: #10b981;
    --whatsapp: #25D366;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 12px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: var(--gradient);
    overflow: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff10" d="M0,192L48,176C96,160,192,128,288,133.3C384,139,480,181,576,192C672,203,768,181,864,165.3C960,149,1056,139,1152,154.7C1248,171,1344,213,1392,234.7L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover no-repeat;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.6s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: slideUp 0.8s ease;
}

.gradient-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: slideUp 0.8s ease 0.4s both;
}

.trust-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.6s both;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge span {
    color: var(--success);
    font-weight: bold;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== AIRPORTS SECTION ===== */
.airports {
    background: var(--gray-50);
}

.airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.airport-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid var(--gray-100);
}

.airport-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.airport-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.airport-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.airport-desc {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 15px;
}

.airport-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.airport-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
}

.airport-routes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.airport-routes span {
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--gray-600);
}

/* ===== PRICING SECTION ===== */
.pricing-table {
    overflow-x: auto;
    margin-bottom: 24px;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-table th,
.pricing-table td {
    padding: 20px 24px;
    text-align: left;
}

.pricing-table thead {
    background: var(--primary);
    color: var(--white);
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: var(--gray-50);
}

.pricing-table .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.pricing-note {
    text-align: center;
    color: var(--gray-600);
    font-size: 15px;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 15px;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.destinations-grid span {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    transition: all 0.3s ease;
}

.destinations-grid span:hover {
    background: var(--accent);
    transform: scale(1.05);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    background: var(--gradient);
    color: var(--white);
}

.reviews .section-title {
    color: var(--white);
}

.reviews-summary {
    text-align: center;
    margin-bottom: 50px;
}

.rating-big {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.rating-stars {
    font-size: 2rem;
    margin: 10px 0;
}

.rating-count {
    opacity: 0.8;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.review-stars {
    margin-bottom: 16px;
}

.review-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review-card cite {
    font-size: 14px;
    opacity: 0.8;
    font-style: normal;
}

/* ===== BOOKING SECTION ===== */
.booking {
    background: var(--gray-50);
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.booking-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.booking-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.booking-card p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* ===== FAQ SECTION ===== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: var(--gray-50);
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.85;
    font-size: 15px;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links a {
    display: block;
    padding: 8px 0;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    padding: 8px 0;
    opacity: 0.85;
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.6;
    font-size: 14px;
}

.footer-bottom p:last-child {
    margin-top: 8px;
    font-size: 12px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

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

    .pricing-table th,
    .pricing-table td {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .airport-card,
    .service-card,
    .booking-card {
        padding: 30px 20px;
    }
}

/* ===== BLOG SECTION ===== */
.blog {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.blog-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.blog-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--gray-600);
}

/* ===== BLOG ARTICLE PAGES ===== */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: var(--gray-50);
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 14px;
}

.breadcrumb-list li::after {
    content: '›';
    margin-left: 8px;
    color: var(--gray-300);
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list a {
    color: var(--primary);
}

.breadcrumb-list a:hover {
    color: var(--accent);
}

.breadcrumb-list [aria-current="page"] {
    color: var(--gray-600);
}

/* Blog Hero */
.blog-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.blog-index-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 120px 0 60px;
    margin-top: 80px;
}

.blog-index-hero .section-title {
    color: var(--white);
}

.blog-meta-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 14px;
    opacity: 0.9;
}

.blog-tag.trending {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
}

.blog-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-intro {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.blog-sources {
    font-size: 13px;
    opacity: 0.8;
}

/* Blog Article Layout */
.blog-article {
    padding: 60px 0 100px;
}

.blog-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    align-items: start;
}

/* Table of Contents */
.blog-toc {
    position: sticky;
    top: 100px;
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
}

.blog-toc h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.blog-toc ul {
    list-style: none;
}

.blog-toc li {
    margin-bottom: 12px;
}

.blog-toc a {
    font-size: 14px;
    color: var(--gray-600);
    display: block;
    padding: 4px 0;
    border-left: 2px solid transparent;
    padding-left: 12px;
    transition: all 0.2s ease;
}

.blog-toc a:hover {
    color: var(--primary);
    border-left-color: var(--accent);
}

/* Blog Content */
.blog-content {
    max-width: 800px;
}

.blog-content section {
    padding: 0;
    margin-bottom: 60px;
}

.blog-content h2 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.blog-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.blog-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray-800);
}

.blog-content strong {
    color: var(--primary);
}

/* Info Boxes */
.info-box {
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin: 24px 0;
    border-left: 4px solid;
}

.info-box.warning {
    background: #fff8e1;
    border-color: #ffc107;
}

.info-box.danger {
    background: #ffebee;
    border-color: var(--accent);
}

.info-box p {
    margin: 0;
    font-size: 15px;
}

/* Steps List */
.steps-list {
    background: var(--gray-50);
    padding: 24px 24px 24px 48px;
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.steps-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    line-height: 1.6;
}

.steps-list li:last-child {
    border-bottom: none;
}

/* Alternatives Grid */
.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.alternative-card {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
}

.alternative-card.premium {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
}

.alternative-card.premium p {
    color: rgba(255, 255, 255, 0.9);
}

.alternative-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.alternative-card.premium h3 {
    color: var(--gold);
}

.alternative-card p {
    font-size: 14px;
    margin: 0;
}

/* Service Options */
.service-option {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin: 30px 0;
    border: 2px solid var(--gray-100);
    position: relative;
}

.service-option.eco {
    border-color: var(--success);
}

.service-option.premium {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.option-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--success);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
}

.service-option.premium .option-badge {
    background: var(--gold);
    color: var(--primary-dark);
}

.service-option h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.option-tagline {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0;
    font-size: 15px;
}

/* Bonus Box */
.bonus-box {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    padding: 24px;
    border-radius: var(--radius-md);
    margin: 30px 0;
    border: 1px solid #7dd3fc;
}

.bonus-box h4 {
    color: var(--primary);
    margin-bottom: 12px;
}

.bonus-box p {
    margin-bottom: 16px;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 12px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}

.comparison-table thead th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary);
}

.comparison-table .positive {
    background: #ecfdf5;
    color: #065f46;
    font-weight: 600;
}

.comparison-table .negative {
    background: #fef2f2;
    color: #991b1b;
}

.comparison-table .price-highlight {
    background: #fef3c7;
    color: var(--primary-dark);
    font-weight: 700;
}

/* Blog CTA Section */
.blog-cta-section {
    background: var(--gradient);
    color: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 60px;
}

.blog-cta-section h2 {
    color: var(--white);
    border: none;
    margin-bottom: 16px;
}

.blog-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

/* Blog Listing Page */
.blog-listing {
    padding: 60px 0 100px;
}

.blog-listing .blog-grid {
    margin-bottom: 60px;
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: var(--white);
    border: 2px solid var(--accent);
}

.blog-card-image {
    background: var(--gradient);
    min-height: 200px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: var(--radius-md);
    pointer-events: none;
}

.blog-card-image .blog-tag {
    position: relative;
    z-index: 2;
}

.blog-card.featured .blog-card-image {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    min-height: 100%;
}

.blog-card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.blog-card-content h2 a {
    color: var(--primary);
}

.blog-card-content h2 a:hover {
    color: var(--accent);
}

.blog-card-content h3 {
    font-size: 1.125rem;
}

.coming-soon {
    background: var(--gray-200);
    color: var(--gray-600);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.blog-cta {
    background: var(--gray-50);
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
}

.blog-cta h2 {
    color: var(--primary);
    margin-bottom: 12px;
}

.blog-cta p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-toc {
        position: static;
        margin-bottom: 40px;
    }

    .blog-toc ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .blog-toc li {
        margin: 0;
    }

    .blog-toc a {
        background: var(--gray-100);
        padding: 8px 16px;
        border-radius: var(--radius-full);
        border-left: none;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 0 40px;
    }

    .blog-meta-top {
        flex-wrap: wrap;
        gap: 12px;
    }

    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .blog-card.featured .blog-card-image {
        border-radius: var(--radius-md) var(--radius-md) 0 0;
        min-height: 150px;
    }

    .service-option {
        padding: 24px 20px;
    }

    .blog-cta-section {
        padding: 32px 24px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    position: relative;
    margin-left: 16px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.lang-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-switcher.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: background 0.2s ease;
}

.lang-option:hover {
    background: var(--gray-50);
}

.lang-option.active {
    background: var(--gray-100);
    font-weight: 600;
}

.lang-option span {
    font-size: 18px;
}

/* ===== RTL SUPPORT (Arabic) ===== */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .nav {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .hero-content {
    text-align: center;
}

html[dir="rtl"] .airport-features {
    text-align: right;
}

html[dir="rtl"] .pricing-table th,
html[dir="rtl"] .pricing-table td {
    text-align: right;
}

html[dir="rtl"] .faq-item summary {
    flex-direction: row-reverse;
}

html[dir="rtl"] .faq-item summary::after {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .footer-grid {
    direction: rtl;
}

html[dir="rtl"] .lang-switcher {
    margin-left: 0;
    margin-right: 16px;
}

html[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

html[dir="rtl"] .btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .badge {
    flex-direction: row-reverse;
}

html[dir="rtl"] .service-card,
html[dir="rtl"] .airport-card {
    text-align: right;
}

html[dir="rtl"] .review-card {
    text-align: right;
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        margin-right: 12px;
    }

    .lang-btn {
        padding: 6px 10px;
    }

    #current-lang-code {
        display: none;
    }

    html[dir="rtl"] .lang-switcher {
        margin-right: 0;
        margin-left: 12px;
    }
}

/* ===== FEATURED BLOG CARD (Homepage) ===== */
.featured-blog-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
}

.featured-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.blog-card-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-decoration: none;
    color: inherit;
}

.blog-card-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.blog-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-blog-card:hover .blog-card-image-wrapper img {
    transform: scale(1.05);
}

.blog-card-image-wrapper .blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.blog-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-body h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-body p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .blog-card-link {
        grid-template-columns: 1fr;
    }

    .blog-card-image-wrapper {
        min-height: 200px;
    }

    .blog-card-body {
        padding: 20px;
    }

    .blog-card-body h3 {
        font-size: 1.2rem;
    }
}

/* ===== BLOG HERO IMAGE (Article Page) ===== */
.blog-hero-image {
    margin: 24px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.blog-hero-image figcaption {
    text-align: center;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--gray-600);
    background: var(--gray-50);
    font-style: italic;
}

/* ===== SEARCH PANEL ===== */
.search-panel {
    background: rgba(10, 22, 44, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 24px 18px;
    margin-top: 28px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease 0.3s both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    overflow: visible;
    position: relative;
    z-index: 20;
}

.search-panel-header {
    text-align: center;
    margin-bottom: 14px;
}

.search-panel-icon {
    font-size: 1.1rem;
    display: none;
}

.search-panel-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.2px;
}

.search-panel-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 3px 0 0;
}

/* --- Search Form --- */
.search-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Connected field row – shared container */
.search-row {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: visible;
    position: relative;
}

.search-row-locations {
    align-items: stretch;
}

/* Details row: ALSO connected container */
.search-row-details {
    align-items: stretch;
}

/* Dividers inside details row */
.search-row-details .search-field+.search-field,
.search-row-details .search-field+.search-submit-field {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* Search button inside connected row */
.search-row-details .search-submit-field {
    flex: 0 0 auto;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0;
}

/* Give passengers field slightly less space */
.search-row-details .passengers-field {
    flex: 0.7;
    position: relative;
}

.search-field {
    flex: 1;
    position: relative;
    padding: 7px 12px 6px;
}

/* Divider between fields in same row */
.search-row-locations .swap-btn {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.search-field label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.field-icon {
    margin-right: 2px;
    font-size: 0.65rem;
}

.search-input {
    width: 100%;
    padding: 3px 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 13.5px;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.2s ease;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

.search-input:focus {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

/* Highlight field on focus */
.search-field:focus-within {
    background: rgba(255, 255, 255, 0.04);
}

/* datetime-local fix */
.search-input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Swap Button (desktop) */
.swap-btn {
    flex: 0 0 36px;
    width: 36px;
    height: auto;
    border: none;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.swap-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold);
    transform: none;
}

/* Fields in details row */
.search-row-details .search-input {
    padding: 3px 0;
}

/* Passengers Toggle */
.passengers-toggle {
    width: 100%;
    padding: 3px 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 13.5px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.passengers-toggle:hover {
    border-color: transparent;
}

/* Search Button */
.search-submit-field {
    flex: 0 0 auto;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 24px;
    background: linear-gradient(135deg, #c41e2a 0%, #d93b30 100%);
    border: none;
    border-radius: 0 9px 9px 0;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none;
    white-space: nowrap;
    letter-spacing: 0.2px;
    height: 100%;
}

.search-btn:hover {
    background: linear-gradient(135deg, #b01a25 0%, #c93428 100%);
    transform: none;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.15);
}

.search-btn:active {
    transform: translateY(0);
}

.search-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.search-btn.loading .search-btn-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.search-btn-icon {
    font-size: 1.1rem;
}

/* Trust Row */
.search-trust-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.2px;
}

.search-trust-row span {
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Autocomplete Dropdown */
.autocomplete-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #1a2744;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    max-height: 260px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.autocomplete-dropdown.active {
    display: block;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.autocomplete-item:hover,
.autocomplete-item.highlighted {
    background: rgba(244, 162, 97, 0.15);
}

.autocomplete-item .ac-icon {
    flex-shrink: 0;
    font-size: 18px;
    width: 24px;
    text-align: center;
    margin-top: 1px;
}

.autocomplete-item .ac-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.autocomplete-item .ac-main {
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-item .ac-secondary {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-item .ac-type-badge {
    display: inline-block;
    background: rgba(244, 162, 97, 0.25);
    color: var(--gold);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    margin-left: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Passengers Dropdown */
.pax-arrow {
    font-size: 0.55rem;
    transition: transform 0.3s;
    opacity: 0.5;
}

.passengers-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    width: 280px;
    background: #05090f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    z-index: 9999;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
    isolation: isolate;
}

.passengers-dropdown.active {
    display: block;
}

.pax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pax-row:last-of-type {
    border-bottom: none;
    padding-bottom: 4px;
}

.pax-info {
    display: flex;
    flex-direction: column;
}

.pax-label {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    display: block;
}

.pax-age {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
}

.pax-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pax-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    padding: 0;
    line-height: 1;
}

.pax-btn:hover:not(:disabled) {
    background: var(--gold);
    border-color: var(--gold);
    color: #0a0e27;
}

.pax-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.pax-count {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    min-width: 18px;
    text-align: center;
}

.pax-done-btn {
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    border: none;
    border-radius: 8px;
    background: var(--gold);
    color: #0a0e27;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.pax-done-btn:hover {
    background: #e8932e;
}

/* Search Button */
.search-submit-field {
    flex: 0 0 auto;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #c41e2a 0%, #e8432e 100%);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(196, 30, 42, 0.35);
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 42, 0.45);
}

.search-btn:active {
    transform: translateY(0);
}

.search-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.search-btn.loading .search-btn-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.search-btn-icon {
    font-size: 1.2rem;
}

/* Search Trust Row */
.search-trust-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.search-trust-row span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== GOOGLE REVIEWS WIDGET ===== */
.reviews-widget-wrapper {
    position: relative;
    max-width: 680px;
    margin: -2px auto 0;
    background: rgba(10, 22, 44, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 0 20px 16px;
    animation: fadeIn 1s ease 0.8s both;
    overflow: hidden;
    z-index: 19;
}

/* Subtle glow behind widget */
.reviews-widget-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(244, 162, 97, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Header row: Google badge + stars */
.reviews-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 4px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.reviews-widget-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.reviews-widget-badge svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.3));
}

.reviews-widget-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rw-star {
    color: #FFC107;
    font-size: 14px;
    text-shadow: 0 0 6px rgba(255, 193, 7, 0.4);
    animation: starPulse 3s ease-in-out infinite;
}

.rw-star:nth-child(2) { animation-delay: 0.15s; }
.rw-star:nth-child(3) { animation-delay: 0.3s; }
.rw-star:nth-child(4) { animation-delay: 0.45s; }
.rw-star:nth-child(5) { animation-delay: 0.6s; }

@keyframes starPulse {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.rw-rating {
    font-size: 13px;
    font-weight: 800;
    color: #FFC107;
    margin-left: 6px;
    letter-spacing: -0.3px;
}

/* Widget body – Elfsight container */
.reviews-widget-body {
    position: relative;
    z-index: 1;
    min-height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

/* Override Elfsight default backgrounds to blend with glassmorphism */
.reviews-widget-body [class*="elfsight"] {
    background: transparent !important;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-widget-wrapper {
        max-width: 100%;
        margin-top: -2px;
        border-radius: 0 0 12px 12px;
        padding: 0 14px 12px;
    }

    .reviews-widget-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 10px 2px 8px;
    }

    .reviews-widget-stars {
        align-self: flex-start;
    }

    .rw-star {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .reviews-widget-wrapper {
        padding: 0 10px 10px;
    }

    .reviews-widget-badge span {
        font-size: 11px;
    }
}

/* ===== RESULTS SECTION ===== */
.results-section {
    background: #f4f6fb;
    padding: 60px 0 80px;
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
}

.results-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.results-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Filters */
.results-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: #fff;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Loading Skeleton */
.results-loading {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.skeleton-card {
    height: 320px;
    border-radius: var(--radius-md);
    background: linear-gradient(110deg, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    to {
        background-position-x: -200%;
    }
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

/* ===== OFFER CARD ===== */
.offer-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

/* ===== PREMIUM DTD CARD ===== */
.offer-card--premium {
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #f59e0b, #d97706, #b45309, #f59e0b);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    position: relative;
    overflow: visible;
}

.offer-card--premium::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(217, 119, 6, 0.06), rgba(245, 158, 11, 0.12));
    z-index: -1;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offer-card--premium:hover {
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.2);
}

.offer-card--premium:hover::before {
    opacity: 1;
}

/* Premium Badge */
.badge-premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    animation: premium-shimmer 3s ease-in-out infinite;
}

@keyframes premium-shimmer {

    0%,
    100% {
        box-shadow: 0 0 6px rgba(245, 158, 11, 0.3);
    }

    50% {
        box-shadow: 0 0 16px rgba(245, 158, 11, 0.6);
    }
}

/* DTD Entity Badge */
.badge-dtd {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.1));
    color: #92400e;
    font-weight: 700;
}

/* DTD Destination Block */
.dtd-destination {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 20px;
    margin: 10px 20px 0;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-radius: 10px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.dtd-dest-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.dtd-dest-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dtd-dest-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #92400e;
    margin-bottom: 2px;
}

.dtd-dest-address {
    font-size: 13px;
    color: #78350f;
    line-height: 1.4;
    word-break: break-word;
}

/* DTD Detail Chip */
.offer-detail-chip.dtd-chip {
    background: #fef3c7;
    color: #92400e;
    font-weight: 600;
}

/* Premium Book Button */
.offer-book-btn--premium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.offer-book-btn--premium:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

/* Premium card timeline dot accent */
.offer-card--premium .timeline-dot.end {
    border-color: #f59e0b;
}

.offer-card--premium .timeline-line::before {
    background: linear-gradient(90deg, var(--primary), #f59e0b);
}

/* DTD responsive overrides */
@media (max-width: 768px) {
    .dtd-destination {
        margin: 8px 14px 0;
        padding: 10px 14px;
        gap: 10px;
    }

    .dtd-dest-address {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .dtd-destination {
        margin: 6px 12px 0;
        padding: 8px 12px;
    }

    .dtd-dest-icon {
        font-size: 1.2rem;
    }

    .dtd-dest-address {
        font-size: 11px;
    }
}

/* Badges Row */
.offer-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 14px 20px 0;
    align-items: center;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-best {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.badge-fastest {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

.badge-shuttle {
    background: rgba(244, 162, 97, 0.15);
    color: #b8721a;
}

.badge-vtc {
    background: rgba(26, 58, 92, 0.1);
    color: var(--primary);
}

.multi-vehicle-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    letter-spacing: 0.3px;
}

/* Card Header */
.offer-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 20px 0;
}

.offer-vehicle-img {
    width: 100px;
    height: 66px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f9fb;
    padding: 4px;
}

.offer-vehicle-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.offer-vehicle-desc {
    font-size: 12px;
    color: var(--gray-600);
}

.offer-entity-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-top: 4px;
}

/* Timeline */
.offer-timeline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    margin: 0 20px;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-top: 16px;
}

.timeline-point {
    text-align: center;
    flex: 0 0 auto;
}

.timeline-time {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
}

.timeline-label {
    font-size: 11px;
    color: var(--gray-600);
    display: block;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.timeline-line {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.timeline-line::before {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 2px;
}

.timeline-duration {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
    background: #fff;
    padding: 0 8px;
    white-space: nowrap;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: #fff;
    flex-shrink: 0;
}

.timeline-dot.end {
    border-color: var(--gold);
}

/* Details Row */
.offer-details {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px 20px;
    font-size: 13px;
    color: var(--gray-600);
}

.offer-detail-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gray-50);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
}

/* Seats Indicator */
.seats-indicator {
    padding: 0 20px 14px;
}

.seats-bar {
    height: 6px;
    border-radius: 3px;
    background: var(--gray-100);
    overflow: hidden;
    margin-top: 4px;
}

.seats-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.6s ease;
}

.seats-bar-fill.plenty {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.seats-bar-fill.limited {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.seats-bar-fill.almost-full {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.seats-text {
    font-size: 11px;
    color: var(--gray-600);
    display: flex;
    justify-content: space-between;
}

/* Price Block */
.offer-price-block {
    padding: 16px 20px 20px;
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--gray-100);
}

.price-main {
    display: flex;
    flex-direction: column;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.price-currency {
    font-size: 0.9rem;
    font-weight: 600;
}

.price-old {
    font-size: 0.9rem;
    color: var(--gray-300);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-per {
    font-size: 12px;
    color: var(--gray-600);
    margin-top: 2px;
}

.price-breakdown {
    font-size: 11px;
    color: var(--gray-600);
    margin-top: 4px;
}

.offer-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #c41e2a 0%, #e8432e 100%);
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(196, 30, 42, 0.25);
    white-space: nowrap;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.offer-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 42, 0.4);
    color: #fff;
}

/* Luggage Chips */
.offer-luggage {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 0 20px 10px;
}

.luggage-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.luggage-chip.extra {
    background: #fff3e0;
    color: #e65100;
}

/* Empty & Error States */
.results-empty,
.results-error {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon,
.error-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.results-empty h3,
.results-error h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.results-empty p,
.results-error p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* ===== SEARCH PANEL RESPONSIVE ===== */
@media (max-width: 768px) {
    .search-panel {
        padding: 20px 16px;
        margin-top: 20px;
        border-radius: var(--radius-md);
    }

    .search-row {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .search-row-locations {
        flex-direction: column;
        align-items: stretch;
        position: relative;
        padding-right: 0;
        gap: 0;
    }

    .search-row-locations .search-field {
        width: 100%;
    }

    .swap-btn {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-30%) rotate(90deg);
        margin-top: 0;
        z-index: 3;
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.25);
        background: #1a2744;
        border-radius: 50%;
    }

    .swap-btn::before,
    .swap-btn::after {
        display: none;
    }

    .swap-btn:hover {
        transform: translateY(-30%) rotate(270deg);
        background: rgba(255, 255, 255, 0.15);
    }

    .search-field {
        width: 100%;
    }

    .passengers-field {
        position: static;
    }

    .passengers-dropdown {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        margin-top: 6px;
        background: #05090f;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }

    .search-panel-title {
        font-size: 1.25rem;
    }

    .search-trust-row {
        gap: 10px;
        font-size: 11px;
    }

    .results-grid,
    .results-loading {
        grid-template-columns: 1fr;
    }

    .offer-timeline {
        flex-wrap: wrap;
        gap: 8px;
        padding: 14px 16px;
        margin: 0 12px;
    }

    .offer-price-block {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px;
    }

    .offer-book-btn {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        margin-bottom: 20px;
    }

    .offer-badges-row {
        padding: 10px 14px 0;
    }

    .offer-card-header {
        padding: 14px 14px 0;
        gap: 12px;
    }

    .offer-details {
        padding: 8px 14px;
    }

    .offer-luggage {
        padding: 0 14px 8px;
    }

    .seats-indicator {
        margin: 0 14px 8px;
    }

    .timeline-label {
        max-width: 80px;
        font-size: 10px;
    }

    .timeline-time {
        font-size: 1rem;
    }

    .autocomplete-dropdown {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .search-panel {
        padding: 16px 12px;
    }

    .search-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .offer-card-header {
        flex-direction: column;
        text-align: center;
        padding: 12px 12px 0;
    }

    .offer-vehicle-img {
        width: 120px;
        height: 80px;
    }

    .offer-badges-row {
        justify-content: center;
        padding: 8px 12px 0;
    }

    .offer-timeline {
        padding: 12px;
        margin: 0 8px;
        gap: 6px;
    }

    .timeline-label {
        max-width: 60px;
        font-size: 9px;
    }

    .offer-price-block {
        padding: 12px;
    }

    .price-value {
        font-size: 1.5rem;
    }

    .offer-details {
        padding: 6px 12px;
        flex-wrap: wrap;
    }

    .offer-luggage {
        padding: 0 12px 6px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .passengers-toggle {
        font-size: 14px;
    }
}

/* ===== CHECKOUT OVERLAY ===== */
.checkout-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.checkout-overlay.active {
    display: block;
    animation: checkoutFadeIn 0.4s ease;
}

@keyframes checkoutFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.checkout-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 9, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.checkout-container {
    position: relative;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px 60px;
    animation: checkoutSlideUp 0.5s ease;
}

@keyframes checkoutSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.checkout-close {
    position: absolute;
    top: 0;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.checkout-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg);
}

/* Progress Steps */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
    padding-top: 10px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all 0.3s;
}

.progress-step .step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, var(--gold), #e8932e);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 12px rgba(244, 162, 97, 0.4);
}

.progress-step .step-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.progress-step.active .step-label {
    color: #fff;
}

.progress-line {
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: all 0.3s;
}

.progress-line.active {
    background: linear-gradient(90deg, var(--gold), #e8932e);
}

/* Checkout Body - Two Columns */
.checkout-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

/* Checkout Card */
.checkout-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.checkout-card-header {
    padding: 28px 28px 0;
}

.checkout-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.checkout-subtitle {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Checkout Form */
.checkout-form {
    padding: 20px 28px 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.required {
    color: #ef4444;
}

.optional {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 12px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 13px 14px 13px 42px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--primary-dark);
    background: #fff;
    transition: all 0.3s;
    outline: none;
}

.input-wrapper input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.12);
}

.input-wrapper input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
    animation: shake 0.4s ease;
}

.input-wrapper input.valid {
    border-color: #10b981;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-6px);
    }

    40%,
    80% {
        transform: translateX(6px);
    }
}

.field-error {
    display: none;
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
    padding-left: 2px;
    font-weight: 500;
}

.field-error.visible {
    display: block;
    animation: fadeInError 0.3s ease;
}

@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* intl-tel-input overrides */
.checkout-form .iti {
    width: 100%;
}

.checkout-form .iti input[type="tel"] {
    width: 100%;
    padding: 13px 14px 13px 52px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--primary-dark);
    background: #fff;
    transition: all 0.3s;
    outline: none;
    box-sizing: border-box;
}

.checkout-form .iti input[type="tel"]:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.12);
}

.checkout-form .iti--error input[type="tel"] {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
    animation: shake 0.4s ease;
}

.checkout-form .iti--valid input[type="tel"] {
    border-color: #10b981;
}

.checkout-form .iti__selected-dial-code {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
}

.checkout-form .iti__country-container {
    border-radius: 12px 0 0 12px;
}

.checkout-form .iti__dropdown-content {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-200);
}

.checkout-form .iti__search-input {
    border-radius: 8px;
    border: 2px solid var(--gray-200);
    padding: 8px 12px;
    font-family: inherit;
}

.checkout-form .iti__search-input:focus {
    border-color: var(--gold);
    outline: none;
}

.checkout-form .iti__country {
    padding: 8px 12px;
}

.checkout-form .iti__country:hover,
.checkout-form .iti__country--highlight {
    background: rgba(244, 162, 97, 0.08);
}

/* Textarea */
.checkout-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: var(--primary-dark);
    resize: vertical;
    outline: none;
    transition: all 0.3s;
    min-height: 80px;
}

.checkout-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.12);
}

/* Submit Button */
.checkout-submit-btn {
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #c41e2a 0%, #e8432e 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(196, 30, 42, 0.3);
    margin-top: 8px;
}

.checkout-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(196, 30, 42, 0.4);
}

.checkout-submit-btn:active {
    transform: translateY(0);
}

.submit-icon {
    font-size: 18px;
}

.submit-arrow {
    font-size: 18px;
    transition: transform 0.3s;
}

.checkout-submit-btn:hover .submit-arrow {
    transform: translateX(4px);
}

/* Trust Badges */
.checkout-trust-badges {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 16px;
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
}

.checkout-trust-badges span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== RECAP CARD ===== */
.recap-card {
    position: sticky;
    top: 60px;
    background: rgba(255, 255, 255, 0.97);
}

.recap-vehicle {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.recap-vehicle img {
    width: 80px;
    height: 52px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--gray-50);
    padding: 4px;
}

.recap-vehicle-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.recap-vehicle-info .recap-type {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    background: rgba(244, 162, 97, 0.12);
    color: #b8721a;
}

.recap-route {
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.recap-route-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.recap-route-row:last-child {
    margin-bottom: 0;
}

.recap-route-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.recap-route-dot.end {
    border-color: var(--gold);
}

.recap-route-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, var(--primary), var(--gold));
    margin-left: 5px;
    margin-top: -4px;
    margin-bottom: -4px;
}

.recap-route-info {
    flex: 1;
    min-width: 0;
}

.recap-route-time {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.recap-route-name {
    font-size: 13px;
    color: var(--gray-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recap-route-meta {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray-600);
}

.recap-route-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.recap-section {
    padding: 14px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.recap-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.recap-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.recap-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    background: var(--gray-50);
    color: var(--primary-dark);
}

/* Price Summary */
.recap-price {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.recap-price-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recap-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-600);
}

.recap-price-row.total {
    border-top: 2px solid var(--gray-100);
    padding-top: 10px;
    margin-top: 6px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.recap-price-row .old-price {
    text-decoration: line-through;
    color: var(--gray-300);
    margin-right: 8px;
    font-weight: 400;
}

/* Help Section */
.recap-help {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 24px;
    background: var(--gray-50);
    border-radius: 0 0 20px 20px;
    font-size: 13px;
    color: var(--gray-600);
}

.recap-help-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.recap-help a {
    color: var(--primary);
    font-weight: 500;
}

.recap-help a:hover {
    color: var(--gold);
}

/* ===== CHECKOUT RESPONSIVE ===== */
@media (max-width: 900px) {
    .checkout-body {
        grid-template-columns: 1fr;
    }

    .checkout-container {
        margin: 20px auto;
    }

    .recap-card {
        position: static;
    }

    .checkout-progress {
        margin-bottom: 24px;
    }

    .progress-step .step-label {
        display: none;
    }
}

@media (max-width: 600px) {
    .checkout-container {
        margin: 10px auto;
        padding: 0 12px 40px;
    }

    .checkout-close {
        right: 16px;
        width: 38px;
        height: 38px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkout-form {
        padding: 16px 18px 22px;
    }

    .checkout-card-header {
        padding: 22px 18px 0;
    }

    .checkout-title {
        font-size: 1.15rem;
    }

    .recap-vehicle,
    .recap-route,
    .recap-section,
    .recap-price {
        padding-left: 18px;
        padding-right: 18px;
    }

    .recap-help {
        padding: 14px 18px;
    }

    .checkout-submit-btn {
        font-size: 15px;
        padding: 14px 20px;
    }

    .checkout-trust-badges {
        gap: 10px;
        font-size: 11px;
    }
}

/* ===== PROCESSING OVERLAY ===== */
.processing-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(5, 9, 20, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
}

.processing-overlay.active {
    display: flex;
    animation: processingFadeIn 0.4s ease;
}

@keyframes processingFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.processing-content {
    text-align: center;
    max-width: 360px;
    padding: 40px;
    animation: processingSlideUp 0.5s ease 0.1s both;
}

@keyframes processingSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.processing-spinner {
    width: 56px;
    height: 56px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--gold);
    border-right-color: var(--gold);
    border-radius: 50%;
    margin: 0 auto 24px;
    animation: processSpin 0.8s linear infinite;
}

@keyframes processSpin {
    to {
        transform: rotate(360deg);
    }
}

.processing-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.processing-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

.processing-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.processing-step {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.processing-step.active {
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    font-weight: 600;
}

/* Button spinner */
.btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: processSpin 0.6s linear infinite;
    vertical-align: middle;
}

.checkout-submit-btn.loading {
    opacity: 0.85;
    cursor: wait;
    pointer-events: none;
}

/* Processing Error State */
.processing-error-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    border: 3px solid #ef4444;
    color: #ef4444;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: processingSlideUp 0.3s ease;
}

.processing-retry-btn {
    margin-top: 24px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
}

.processing-retry-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

/* ===== DEALS & PROMOTIONS SECTION ===== */
.deals {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.deals::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 20% 50%, rgba(244, 162, 97, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(196, 30, 42, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.deals .section-title {
    color: #fff;
    position: relative;
}

.deals .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

/* Deals header badge */
.deals-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: #34d399;
    margin-bottom: 20px;
    position: relative;
}

.deals-live-dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

/* Filter Tabs */
.deals-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
}

.deals-filter-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    backdrop-filter: blur(4px);
}

.deals-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.deals-filter-btn.active {
    background: linear-gradient(135deg, var(--accent) 0%, #e74c3c 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(196, 30, 42, 0.4);
}

/* Deals Grid */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    position: relative;
}

/* Deal Card */
.deal-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: dealFadeIn 0.5s ease forwards;
}

.deal-card:nth-child(1) { animation-delay: 0.05s; }
.deal-card:nth-child(2) { animation-delay: 0.1s; }
.deal-card:nth-child(3) { animation-delay: 0.15s; }
.deal-card:nth-child(4) { animation-delay: 0.2s; }
.deal-card:nth-child(5) { animation-delay: 0.25s; }
.deal-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes dealFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.deal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 162, 97, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(244, 162, 97, 0.08);
}

.deal-card.flash-deal {
    border-color: rgba(239, 68, 68, 0.3);
}

.deal-card.flash-deal:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(239, 68, 68, 0.1);
}

/* Deal Card Header */
.deal-card-header {
    padding: 20px 24px 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.deal-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.deal-type-badge.trio {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.deal-type-badge.group {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.deal-type-badge.flash {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: flashBadge 2s infinite;
}

@keyframes flashBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

/* Discount Badge */
.deal-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 42px;
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.deal-discount.small {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.deal-discount.medium {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
}

.deal-discount.large {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    animation: discountPulse 3s infinite;
}

.deal-discount.mega {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #fff;
    animation: discountPulse 2s infinite;
}

@keyframes discountPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Deal Card Body */
.deal-card-body {
    padding: 0 24px 20px;
}

.deal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.deal-route {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.deal-route-from,
.deal-route-to {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.deal-route-arrow {
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

/* Deal Meta Row */
.deal-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.deal-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.deal-meta-item .meta-icon {
    font-size: 14px;
}

/* Deal Urgency */
.deal-urgency {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.deal-urgency.ending-soon {
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.deal-urgency.active-deal {
    background: rgba(16, 185, 129, 0.1);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.deal-urgency.future-deal {
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

/* Deal Card Footer */
.deal-card-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deal-code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.deal-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent) 0%, #e74c3c 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.deal-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 42, 0.5);
}

/* Deals Stats Banner */
.deals-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    flex-wrap: wrap;
}

.deals-stat {
    text-align: center;
}

.deals-stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.deals-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Deals CTA */
.deals-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
}

.deals-cta .btn-primary {
    font-size: 1.1rem;
    padding: 18px 40px;
}

/* No Results */
.deals-no-results {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
    grid-column: 1 / -1;
}

.deals-no-results .empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.deals-no-results h3 {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

/* Show More Button */
.deals-show-more {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    position: relative;
}

.deals-show-more-btn {
    padding: 12px 32px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    backdrop-filter: blur(4px);
}

.deals-show-more-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-1px);
}

/* Deals Responsive */
@media (max-width: 768px) {
    .deals {
        padding: 70px 0;
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .deals-filters {
        gap: 6px;
    }

    .deals-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .deals-stats {
        gap: 24px;
    }

    .deal-card-header {
        padding: 16px 18px 12px;
    }

    .deal-card-body {
        padding: 0 18px 16px;
    }

    .deal-card-footer {
        padding: 14px 18px;
    }
}

@media (max-width: 480px) {
    .deals-grid {
        grid-template-columns: 1fr;
    }

    .deal-route {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .deal-route-from,
    .deal-route-to {
        white-space: normal;
    }

    .deal-meta {
        gap: 10px;
    }
}