:root {
    --primary: #8e44ad; /* Purple from the image */
    --primary-rgb: 142, 68, 173;
    --primary-dark: #732d91;
    --secondary: #2c3e50;
    --accent: #f39c12;
    --text-main: #333;
    --text-light: #777;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header & Nav */
/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #1a1a1a, var(--secondary));
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.announcement-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.announcement-bar strong {
    color: #ffd700;
    font-weight: 800;
}

.announcement-link {
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.announcement-link:hover {
    background: #fff;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .announcement-content {
        flex-direction: row !important;
        gap: 5px !important;
        font-size: 0.72rem !important;
        white-space: nowrap;
        padding: 0 10px;
    }
    .announcement-link {
        display: none;
    }
}

header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0 8%;
    height: 80px; /* Fixed height to prevent growing/shrinking */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    gap: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.nav-container {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    list-style: none;
    margin-left: auto;
    margin-right: 2.2rem;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    padding: 0.35rem 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: rgba(44, 62, 80, 0.86);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

@media (max-width: 992px) {
    header {
        padding: 0 5%;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 15px;
    }

    .nav-container {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        z-index: 1001;
        padding: 2rem;
    }

    .nav-container.active {
        right: 0;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        display: none;
        z-index: 999;
        transition: var(--transition);
    }

    .menu-overlay.active {
        display: block;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        margin: 0 !important;
        padding: 0;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 1.2rem;
        text-align: center;
        line-height: 1.4;
    }

    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        display: block; /* Show sub-links on mobile by default or maybe toggle? User said hamburger menu, usually simple list is fine */
        text-align: center;
        border: none;
        background: transparent;
    }

    .dropdown-content a {
        text-align: center !important;
        padding: 10px !important;
    }
}

@media (max-width: 600px) {
    .logo-text {
        font-size: 1.2rem;
    }
    .logo-img {
        height: 38px;
    }
}

/* Dropdown Navigation */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 1002;
    border-radius: 12px;
    padding: 10px 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropbtn {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
}

.dropdown-content a {
    color: var(--secondary) !important;
    padding: 12px 20px !important;
    text-decoration: none;
    display: block !important;
    font-size: 0.75rem !important;
    transition: all 0.2s ease;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary) !important;
    padding-left: 25px !important;
}

.dropdown-content a::after {
    display: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: var(--primary);
}

.lang-switcher {
    display: flex;
    gap: 12px;
    align-items: center;
}

.lang-switcher a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.2);
    opacity: 0.8;
    text-decoration: none;
    font-size: 1.5rem;
}

.lang-switcher a:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    min-height: 48vh;
    background: linear-gradient(135deg, rgba(44,62,80,0.95), rgba(142,68,173,0.78));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 5rem 5% 9rem;
    position: relative;
    overflow: visible;
}

.hero::after { display: none; }

.hero h1 {
    font-size: clamp(2.7rem, 6vw, 4.5rem) !important;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff !important;
    -webkit-text-fill-color: white !important;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 1100px;
    line-height: 1.05;
    letter-spacing: 0 !important;
    text-transform: none !important;
    overflow-wrap: anywhere;
}

.hero > p {
    max-width: 780px;
    line-height: 1.45;
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: var(--bg-light);
}

.home-hero {
    min-height: 58vh !important;
    padding: 5rem 5% 8rem !important;
}

.hotels-hero {
    min-height: 48vh !important;
    padding: 5rem 5% 9rem !important;
}

.destinations-hero {
    min-height: 48vh;
    padding: 5rem 5% 9rem;
    background: linear-gradient(135deg, rgba(44,62,80,0.96), rgba(142,68,173,0.82)) !important;
    justify-content: center;
}

.destinations-hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
}

.destinations-hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem) !important;
    margin: 1rem 0 0.8rem !important;
}

.destinations-hero p {
    max-width: 760px;
    margin: 0 auto !important;
    font-size: 1.15rem !important;
    color: rgba(255,255,255,0.88);
}

.destinations-wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 170px;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.destinations-wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.destinations-wave-divider path {
    fill: var(--bg-light);
}

.destinations-list {
    padding: 3rem 5% 5rem;
    background: var(--bg-light);
}

.about-hero {
    min-height: 48vh;
    padding: 5rem 5% 9rem;
    background: linear-gradient(135deg, rgba(44,62,80,0.96), rgba(142,68,173,0.82)) !important;
}

.about-page {
    background: var(--bg-light);
}

.about-intro,
.about-services,
.about-promise {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 3rem;
    padding: 3rem 0 5rem;
    align-items: start;
}

.about-kicker {
    display: inline-flex;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-copy h2,
.about-section-heading h2,
.about-promise h2 {
    color: var(--secondary);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.about-copy p,
.about-section-heading p,
.about-promise p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    gap: 1rem;
}

.about-stats div,
.about-card,
.about-promise {
    background: white;
    border: 1px solid rgba(142, 68, 173, 0.12);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.04);
}

.about-stats div {
    padding: 1.4rem;
}

.about-stats strong {
    display: block;
    color: var(--primary);
    font-size: 1.7rem;
    line-height: 1;
}

.about-stats span {
    display: block;
    color: var(--text-light);
    margin-top: 0.35rem;
    font-weight: 700;
}

.about-services {
    padding-bottom: 5rem;
}

.about-section-heading {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.about-card {
    padding: 1.5rem;
}

.about-card i {
    color: var(--primary);
    font-size: 1.55rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--secondary);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.about-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.65;
}

.about-promise {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    margin-bottom: 5rem;
}

.about-cta {
    min-width: 220px;
    text-decoration: none;
}

/* Search Widget */
.search-widget {
    background: var(--glass);
    padding: 2rem;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    width: 90%;
    max-width: 1100px;
    margin-top: -50px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.search-field select, .search-field input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.search-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-end;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Popular Regions Matrix */
.regions-section {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.region-card {
    background: var(--white);
    color: var(--secondary);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: var(--transition);
}

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(142, 68, 173, 0.15);
    border-color: var(--primary);
}

.region-card:hover::before {
    transform: scaleY(1);
}

.region-info h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 4px;
}

.region-info p {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.region-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    transition: var(--transition);
}

.region-card:hover .region-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(15deg);
}

/* Landing Page Specifics */
.hero-advanced {
    overflow: hidden;
}

.route-hero {
    min-height: 48vh;
    padding: 3rem 5% 2rem;
}

.hero-advanced .landing-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: center;
}

.hero-text {
    min-width: 0;
}

.hero-kicker {
    display: inline-flex;
    background: rgba(255,255,255,0.18);
    padding: 6px 15px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-text h1 {
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    line-height: 1.06;
    margin: 1rem 0;
    color: #fff;
    max-width: 760px;
    overflow-wrap: anywhere;
}

.hero-text h1 i {
    font-size: 0.72em;
    opacity: 0.9;
    margin: 0 0.3rem;
}

.hero-text p {
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 650px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.hero-features div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    box-shadow: 0 14px 30px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.12);
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    color: rgba(255,255,255,0.92);
}

.hero-features div i {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 14px rgba(142, 68, 173, 0.65);
}

.landing-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    padding: 0 5%;
    align-items: start;
}

.booking-widget-advanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 2.2rem;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    position: relative;
    overflow: visible;
}

.booking-widget-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
    pointer-events: none;
}

.booking-widget-advanced h3 {
    margin-bottom: 1.35rem;
    font-size: 1.25rem;
    color: white;
    text-shadow: 0 8px 22px rgba(0,0,0,0.24);
}

.route-form-field {
    margin-bottom: 1rem;
}

.route-form-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
}

.route-form-field input,
.route-form-field select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font: inherit;
    font-weight: 700;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.route-form-field input:focus,
.route-form-field select:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(106, 27, 154, 0.3);
}

.route-form-field select option {
    color: var(--secondary);
}

.route-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.2rem;
}

.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary);
    margin-bottom: 2rem;
}

.price-display {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    background: var(--bg-light);
}

.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover { transform: translateY(-5px); }
.feature-box i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }

.reviews-section { padding: 5rem 5%; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.stars { color: #f1c40f; margin-bottom: 1rem; }

.guide-section {
    background: var(--white);
    padding: 5rem 5%;
    border-radius: 30px;
    margin: 2rem 5%;
    box-shadow: var(--shadow);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guide-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: #fdf7ff;
}

.guide-item i { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }

.faq-advanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 992px) {
    .landing-grid, .faq-advanced { grid-template-columns: 1fr; }

    .hero-advanced .landing-grid {
        padding: 3rem 0;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Floating WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: var(--shadow);
    z-index: 1000;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    color: var(--text-light);
}
/* Main Booking Widget */
.main-booking-widget {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 95%;
    max-width: 1100px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    margin-top: 0;
}

.widget-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 1.5rem;
    align-items: end;
}

@media (max-width: 1024px) {
    .widget-row { grid-template-columns: 1fr 1fr; }
    .main-booking-widget { padding: 1.5rem; }
}

@media (max-width: 600px) {
    .widget-row { grid-template-columns: 1fr; gap: 1rem; }
    .main-booking-widget { padding: 1.2rem; width: 100%; border-radius: 0; border-left: none; border-right: none; }
    .hero h1 { font-size: 2.2rem; padding: 0 10px; }
}

.input-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-item i.field-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 5;
}

.input-item input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 20px 15px 50px !important;
    border-radius: 12px;
    font-size: 1rem;
    color: white;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    backdrop-filter: blur(5px);
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}

.input-item input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-item input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(106, 27, 154, 0.3);
    transform: scale(1.01);
}

.input-item input:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Customizing Date Input Icon */
.input-item input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}



/* Custom Flatpickr Glassmorphism Theme */
.flatpickr-calendar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(106, 27, 154, 0.2) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
    border-radius: 15px !important;
}

.flatpickr-day.selected {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.flatpickr-months .flatpickr-month {
    color: var(--secondary) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700 !important;
}

.flatpickr-weekday {
    color: var(--primary) !important;
    font-weight: 600 !important;
}

.hero-book-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 60px;
    width: 100%;
    min-width: 0;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 10px 20px rgba(106, 27, 154, 0.3);
    animation: btnPulse 2s infinite;
}

.hero-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

@keyframes btnPulse {
    0% { transform: scale(1); box-shadow: 0 10px 20px rgba(106, 27, 154, 0.3); }
    50% { transform: scale(1.03); box-shadow: 0 15px 30px rgba(106, 27, 154, 0.5); }
    100% { transform: scale(1); box-shadow: 0 10px 20px rgba(106, 27, 154, 0.3); }
}

.hero-book-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.route-book-btn {
    width: 100%;
    margin-top: 0.5rem;
    min-height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    text-transform: uppercase;
    letter-spacing: 0;
}

/* Premium Glow & Animation for Booking Button */
.premium-glow-btn {
    box-shadow: 0 0 15px rgba(142, 68, 173, 0.4);
}

.premium-glow-btn:hover {
    box-shadow: 0 0 30px rgba(142, 68, 173, 0.7);
    transform: translateY(-5px) scale(1.05);
}

.discount-badge {
    font-size: 0.8rem;
    background: #ffeb3b;
    color: #000;
    padding: 5px 20px;
    border-radius: 8px;
    margin-top: 4px;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.6);
    text-transform: uppercase;
    display: inline-block;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 992px) {
    .widget-row { grid-template-columns: 1fr 1fr; }
    header {
        padding: 1rem 5%;
        gap: 1rem;
    }

    .logo {
        font-size: 1.25rem;
        letter-spacing: 0;
    }

    .nav-links {
        gap: 1rem;
    }

    .lang-switcher {
        gap: 6px;
        flex-shrink: 0;
    }
}

@media (max-width: 600px) {
    .widget-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero {
        min-height: 44vh !important;
        padding: 4rem 5% 7rem !important;
        justify-content: center !important;
        gap: 0;
    }

    .home-hero {
        min-height: auto !important;
        padding: 3.75rem 5% 6.5rem !important;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.8rem) !important;
        line-height: 1.08 !important;
        margin-bottom: 0.8rem !important;
        padding: 0 !important;
    }

    .hero > p {
        font-size: 1rem !important;
        line-height: 1.45 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 0.25rem;
    }

    .main-booking-widget {
        width: 100%;
        padding: 1rem;
        border-radius: 18px;
        box-shadow: 0 18px 35px rgba(0,0,0,0.35);
    }

    .input-item {
        gap: 6px;
    }

    .input-item input {
        min-height: 52px;
        font-size: 0.95rem;
    }

    .hero-book-btn {
        min-height: 58px;
        height: auto;
        padding: 13px 16px;
        font-size: 0.95rem;
        animation: none;
    }

    .discount-badge {
        font-size: 0.68rem;
        padding: 2px 10px;
    }

    .custom-shape-divider-bottom svg {
        height: 58px;
    }

    .destinations-hero {
        min-height: 44vh !important;
        padding: 4rem 5% 7rem;
    }

    .destinations-hero p {
        font-size: 1rem !important;
        line-height: 1.5;
    }

    .destinations-wave-divider {
        height: 105px;
    }

    .destinations-list {
        padding-top: 2rem;
    }

    .about-hero {
        min-height: 44vh !important;
        padding: 4rem 5% 7rem;
    }

    .about-intro,
    .about-promise {
        grid-template-columns: 1fr;
    }

    .about-intro {
        padding: 2rem 0 4rem;
        gap: 2rem;
    }

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

    .about-promise {
        padding: 1.4rem;
    }

    .about-cta {
        width: 100%;
    }

    .nav-links { display: none; }
    .search-widget { grid-template-columns: 1fr; margin-top: 20px; }

    .hero-advanced {
        min-height: 44vh;
        padding: 4rem 5% !important;
    }

    .hero-advanced .landing-grid {
        gap: 2rem;
        padding: 0;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.08;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-features {
        gap: 0.6rem;
    }

    .hero-features div {
        white-space: normal;
        font-size: 0.85rem;
        padding: 9px 12px;
    }

    .booking-widget-advanced {
        padding: 1.25rem;
        border-radius: 18px;
    }

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

@media (max-width: 420px) {
    header {
        padding: 0.9rem 4%;
    }

    .logo {
        font-size: 1.05rem;
    }

    .lang-switcher a {
        font-size: 1.15rem !important;
        margin-left: 4px !important;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .main-booking-widget {
        padding: 0.9rem;
    }
}

/* Ultra-Minimal Pre-book Comparison */
.comparison-minimal-grid {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Ensuring boxes start at the same place and have same height */
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comp-col {
    flex: 1;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.comp-col:hover {
    transform: translateY(-5px);
    border-color: rgba(142, 68, 173, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.comp-col:last-child {
    border-color: rgba(46, 204, 113, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #f7fff9 100%);
}

.comp-col:last-child:hover {
    border-color: rgba(46, 204, 113, 0.3);
}

.comp-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.danger-text { color: #e74c3c; opacity: 0.8; }
.success-text { color: #2ecc71; }

.comp-list {
    list-style: none;
    padding: 0;
}

.comp-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.comp-list.pro li {
    color: var(--secondary);
    font-weight: 600;
}

.comp-list li i { font-size: 0.8rem; }
.comp-list:not(.pro) li i { color: #e74c3c; }
.comp-list.pro li i { color: #2ecc71; }

.comp-divider {
    width: 1px;
    height: 150px;
    background: #eee;
}

.minimal-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: underline;
    text-underline-offset: 5px;
    transition: all 0.3s ease;
}

.minimal-cta-link:hover {
    color: var(--secondary);
    gap: 15px;
}

@media (max-width: 800px) {
    .comparison-minimal-grid { flex-direction: column; gap: 3rem; }
    .comp-divider { display: none; }
}

/* Section Divider V2 - High Visibility Version */
/* Minimal Straight Line Divider */
.minimal-line-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    width: 80%;
    max-width: 1000px;
    margin: 4rem auto;
    opacity: 0.2;
}

/* Testimonials Marquee Styles with Premium Fade */
.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 50px; /* 50px side padding as requested */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: #fdfdfd;
    width: 350px;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(142, 68, 173, 0.12); /* Subtle purple border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    flex-shrink: 0;
}

.card-top {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    align-items: center;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 800;
}

.user-info h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 1rem;
    height: 30px; /* Force same height */
}

.verified {
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.stars {
    color: #f1c40f;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    height: 100%;
    margin-top: 2px; /* Fine tuning for font baseline */
}

.rating-box strong {
    font-size: 1.5rem;
    display: block;
    color: var(--secondary);
}

.rating-box span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Ultra-Minimal Comparison Table */
.comparison-container {
    overflow-x: auto;
    background: transparent;
    padding: 1rem;
    border-radius: 0;
    box-shadow: none;
    max-width: 900px; /* Centered and narrow */
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem; /* Smaller font */
}

.comparison-table th, .comparison-table td {
    padding: 1rem 0.5rem; /* Reduced padding */
    border-bottom: 1px solid #f5f5f5;
    color: var(--text-light);
}

.comparison-table th {
    font-size: 0.85rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.comparison-table .highlight {
    background: transparent;
    color: var(--primary);
    border-radius: 0;
    text-align: right;
    font-weight: 900;
}

.comparison-table .check {
    color: #27ae60;
    font-weight: 800;
}

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

.comparison-mobile-list {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.comp-mobile-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fdfdfd;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.comp-mobile-item span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.comp-mobile-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    margin-right: 5px;
}

.comp-mobile-item strong {
    color: #27ae60;
    font-size: 0.9rem;
    font-weight: 800;
    text-align: right;
}

@media (max-width: 768px) {
    .comparison-table { display: none; }
    .comparison-mobile-list { display: flex; }
}

/* Ultra-Minimal Feature Cards */
.features-grid-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card-min {
    text-align: left;
    padding: 1.5rem; /* Re-adding some padding for the border */
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    border: 1px solid rgba(142, 68, 173, 0.15); /* Suble purple border */
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
}

.feature-card-min:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.05);
}

.feature-card-min i {
    font-size: 1.4rem; /* Smaller, subtler icons */
    color: var(--primary);
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-card-min h3 {
    font-size: 1.05rem; /* Clean heading */
    margin-bottom: 5px;
    color: var(--secondary);
    font-weight: 700;
}

.feature-card-min p {
    color: var(--text-light);
    font-size: 0.85rem; /* Compact description */
    line-height: 1.5;
}

.feature-card-min:hover {
    transform: translateX(5px); /* Slide effect instead of bounce */
}

@media (max-width: 900px) {
    .features-grid-minimal { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .features-grid-minimal { grid-template-columns: 1fr; }
    .comparison-table th, .comparison-table td { padding: 1rem; font-size: 0.8rem; }
}

/* Pro Route Cards - 4 Column Compact Version */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.route-card-pro {
    background: white;
    padding: 1.2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(142, 68, 173, 0.15); /* Purple tone border */
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    text-align: center;
}

.route-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(142, 68, 173, 0.1);
    border-color: var(--primary);
}

.route-codes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.route-codes i {
    font-size: 0.9rem;
    color: var(--secondary);
    opacity: 0.3;
}

.route-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px dashed #eee;
    padding-top: 10px;
}

.route-details .city {
    font-size: 0.9rem;
    font-weight: 700;
}

.route-details .label {
    font-size: 0.7rem;
    color: var(--text-light);
}

.route-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

.price-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

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

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

/* Pro Footer Styles */
.pro-footer {
    background: #4a148c; /* Dark Lilac / Deep Purple */
    color: white;
    padding: 5rem 0 2rem;
    font-family: 'Outfit', sans-serif;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.brand-desc {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #ffeb3b;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #ffeb3b;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.contact-info i {
    color: #ffeb3b;
}

.payment-methods {
    margin-top: 2rem;
    font-size: 2rem;
    display: flex;
    gap: 15px;
    opacity: 0.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.footer-badges span {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-badges i {
    color: #ffeb3b;
}

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

@media (max-width: 600px) {
    .footer-main-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
}

/* Category & Show More Styles */
.category-block { margin-bottom: 4rem; }
.category-header { 
    border-bottom: 2px solid var(--primary); 
    display: inline-block; 
    margin-bottom: 2rem; 
    padding-bottom: 0.5rem; 
    font-size: 1.8rem; 
    color: var(--secondary); 
}
.show-more-btn { 
    display: inline-block; 
    margin-top: 2rem; 
    padding: 10px 25px; 
    background: var(--bg-light); 
    color: var(--primary); 
    border-radius: 30px; 
    font-weight: 700; 
    text-decoration: none; 
    border: 1px solid var(--primary); 
    transition: all 0.3s ease;
}
.show-more-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}
.hidden-items { display: none; }

/* Essential Facts - Ultra Minimal */
.essential-facts-minimal {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-main);
    text-align: left;
}

.facts-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.facts-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
}

.updated-date {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.7;
}

.facts-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.fact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f5f5f5;
}

.fact-item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.fact-item strong {
    font-size: 1rem;
    color: var(--secondary);
}

.trust-strip-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px dashed #eee;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.trust-item i {
    color: var(--primary);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .facts-header { flex-direction: column; gap: 10px; }
    .trust-strip-minimal { gap: 1rem; }
}

/* Tours Page Styles */
.tours-hero {
    background: linear-gradient(135deg, rgba(44,62,80,0.96), rgba(142,68,173,0.82));
    padding: 4rem 5% 3rem;
    text-align: center;
    color: white;
}

.tours-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 1.5rem 5%;
    background: #fff;
    overflow-x: auto;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #eee;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    background: #f8f9fa;
    border: 1px solid #eee;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: var(--transition);
    color: var(--secondary);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.2);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 3rem 5%;
}

.tour-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.tour-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 35px rgba(142, 68, 173, 0.15); 
    border-color: var(--primary); 
}

.tour-icon-header {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    color: white;
}

.tour-icon-header i { font-size: 3.5rem; opacity: 0.9; }

.tour-content {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-cat {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.tour-title {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
}

.tour-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.tour-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-price { font-size: 1.3rem; font-weight: 800; color: var(--secondary); }
.tour-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-light); }

.book-tour-btn {
    background: var(--primary);
    color: white;
    padding: 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    transition: var(--transition);
}

@media (max-width: 1200px) { .tours-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { 
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .tours-filters { justify-content: flex-start; }
}
@media (max-width: 600px) { .tours-grid { grid-template-columns: 1fr; } }

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 75px;
    height: 75px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 42px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    animation: wp-pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-badge {
    position: absolute;
    right: 85px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    animation: badge-entry 0.6s ease forwards, badge-pulse 2s ease-in-out infinite;
    animation-delay: 2s, 2.6s;
}

@keyframes badge-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
    100% { transform: scale(1); }
}

@keyframes badge-entry {
    0% { opacity: 0; transform: translateX(20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.floating-whatsapp:hover .whatsapp-badge {
    opacity: 1;
    transform: translateX(0);
}

.online-status {
    width: 10px;
    height: 10px;
    background: #25d366;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.online-status::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #25d366;
    border-radius: 50%;
    animation: status-pulse 1.5s infinite;
}

@keyframes wp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes status-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 30px;
        right: 30px;
        width: 70px;
        height: 70px;
        font-size: 38px;
    }
    .whatsapp-badge {
        display: flex;
        right: 80px;
        bottom: 18px;
        font-size: 11px;
        padding: 6px 12px;
        opacity: 1;
        transform: translateX(0);
        animation: badge-entry 0.6s ease forwards, badge-pulse 2s ease-in-out infinite;
        animation-delay: 1.2s, 1.8s;
    }
}

/* Custom Autocomplete Suggestions */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-top: 5px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    z-index: 10000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    border: 1px solid rgba(0,0,0,0.05);
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--secondary);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 25px;
}

/* Scrollbar for suggestions */
.autocomplete-suggestions::-webkit-scrollbar {
    width: 6px;
}
.autocomplete-suggestions::-webkit-scrollbar-track {
    background: transparent;
}
.autocomplete-suggestions::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

/* Inline WhatsApp Link in suggestions */
.wp-inline-link {
    color: #ffffff !important;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: #25d366;
    border-radius: 6px;
    transition: all 0.2s ease;
    animation: wp-striking-pulse 1.8s infinite ease-in-out;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    margin: 0 3px;
}

.wp-inline-link:hover {
    background: #128c7e;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

@keyframes wp-striking-pulse {
    0% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.08); filter: brightness(1.2); box-shadow: 0 0 15px rgba(37, 211, 102, 0.6); }
    100% { transform: scale(1); filter: brightness(1); }
}

/* --- Senior Premium Design System --- */

/* Hero Advanced Styling */
.hero-advanced {
    position: relative;
    padding: 8rem 0 12rem;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--secondary) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 35%),
                linear-gradient(135deg, rgba(44,62,80,0.4), rgba(142,68,173,0.25));
    opacity: 0.3;
    mix-blend-mode: overlay;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin: 1.5rem 0;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-kicker {
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Search Box */
.search-box-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.transfer-form-modern .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 80px;
    gap: 15px;
    align-items: flex-end;
}

.transfer-form-modern label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
}

.transfer-form-modern input {
    width: 100%;
    background: rgba(255,255,255,0.9);
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

.btn-search-modern {
    background: var(--primary);
    color: #fff;
    border: none;
    width: 80px;
    height: 55px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.btn-search-modern:hover {
    background: var(--accent);
    transform: scale(1.05);
}

/* Trust Marquee */
.trust-marquee-container {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 15px 0;
}

.trust-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}

.marquee-item {
    margin-right: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.marquee-item i { color: var(--primary); }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Routes Grid Premium */
.routes-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

.route-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.route-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.route-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.route-price-tag {
    position: absolute;
    bottom: 15px; right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
}

.route-info { padding: 20px; }
.route-info h3 { font-size: 1.2rem; margin-bottom: 5px; color: var(--secondary); }
.route-info span { font-size: 0.85rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; }

/* Why Us Premium */
.why-us-premium {
    padding: 8rem 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-list {
    list-style: none;
    margin-top: 2rem;
}

.why-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--secondary);
}

.why-list li i { color: var(--primary); }

.why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card-glass {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card-glass:hover {
    background: var(--primary);
    color: #fff;
}

.feature-card-glass i { font-size: 2rem; margin-bottom: 1rem; color: var(--primary); transition: inherit; }
.feature-card-glass:hover i { color: #fff; }

/* Comparison Table */
.comp-wrapper { overflow-x: auto; margin-top: 3rem; }
.comp-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 20px; overflow: hidden; }
.comp-table th, .comp-table td { padding: 20px; text-align: left; border-bottom: 1px solid rgba(0,0,0,0.05); }
.comp-table th { background: var(--bg-light); color: var(--secondary); font-weight: 800; }
.comp-table .highlight { background: rgba(var(--primary-rgb), 0.05); color: var(--primary); font-weight: 800; }

/* FAQ Modern */
.faq-grid { margin-top: 3rem; display: grid; gap: 15px; }
.faq-item { background: #fff; border-radius: 12px; border: 1px solid rgba(0,0,0,0.05); }
.faq-question { padding: 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-answer { padding: 0 20px 20px; display: none; color: var(--text-light); line-height: 1.6; }

/* Attractions Scroll */
.attractions-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}
.attraction-card-mini {
    min-width: 280px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.attraction-card-mini img { width: 100%; height: 150px; object-fit: cover; }
.att-info { padding: 15px; }
.att-link { color: var(--primary); font-weight: 700; font-size: 0.85rem; }

/* Mobile Sticky CTA */
.sticky-cta-mobile {
    position: fixed;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 2500;
    display: none;
}
.btn-wa-cta {
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 15px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .hero-advanced { padding: 5rem 0 8rem; text-align: center; }
    .transfer-form-modern .form-row { grid-template-columns: 1fr; }
    .btn-search-modern { width: 100%; }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .sticky-cta-mobile { display: block; }
    .nav-links { display: none; }
}
