/* Layout and global styles */
:root {
    --header-height-desktop: 71px;
    --header-height-tablet: 60px;
    --header-height-mobile: 55px;
    --container-padding: 1rem;
    
    /* Harmonious HSL colors & ambient shadow tokens */
    --brand-green: hsl(160, 100%, 36%);
    --brand-green-light: hsl(160, 100%, 97%);
    --brand-green-glow: hsla(160, 100%, 36%, 0.18);
    --brand-green-hover: hsl(160, 100%, 30%);
    --brand-navy: hsl(220, 25%, 12%);
    --brand-navy-muted: hsl(220, 12%, 36%);
    --bg-light: hsl(210, 30%, 98%);
    --bg-white: hsl(0, 0%, 100%);
    --border-light: rgba(0, 182, 122, 0.12);
    
    /* Glassmorphism styling tokens */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.45);
    --glass-shadow: 0 8px 32px 0 rgba(0, 182, 122, 0.08);
}

/* Custom details/summary reset and styling for native accordions */
details.faq-item summary::-webkit-details-marker {
    display: none;
}
details.faq-item summary {
    list-style: none;
}
details.faq-item .faq-toggle::before {
    content: "+";
    font-size: 1.25rem;
    font-weight: 700;
    transition: transform 0.2s ease;
}
details.faq-item[open] .faq-toggle::before {
    content: "−";
}

/* Base styles */
body { 
    margin: 0; 
    font-family: 'Poppins', Arial, sans-serif; 
    background: linear-gradient(135deg, #f5f8fa 0%, #edf4fa 50%, #f5fafd 100%) !important; 
    background-attachment: fixed !important;
    color: var(--brand-navy);
    padding-top: var(--header-height-desktop);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

/* Header styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    z-index: 1000;
    height: var(--header-height-desktop);
    transition: height 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Main content wrapper */
main {
    flex: 1 0 auto;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding-bottom: 2rem;
}

/* Section styles */
.hero-section,
.dummy-ticket-info-panel,
.pricing,
.features-section {
    padding: 2rem 1rem;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile menu styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height-desktop);
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
    max-height: calc(100vh - var(--header-height-desktop));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Updated styles for inline auto-suggestions */
.suggestion-box {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.suggestion-item {
    padding: 8px;
    cursor: pointer;
    color: #000;
    transition: background-color 0.2s;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

/* Hide browser autofill and suggestion dropdown for all input fields */
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #000 !important;
}
input::-webkit-contacts-auto-fill-button,
input::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
}
/* Optionally hide the dropdown arrow for Chrome/Edge */
input::-ms-reveal,
input::-ms-clear {
    display: none !important;
}

/* Responsive breakpoints */
/* Large tablets and desktops */
@media screen and (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Tablets and smaller desktops */
@media screen and (max-width: 1023px) {
    .hero > div { 
        flex-direction: column; 
        min-height: unset; 
    }
    .hero { 
        padding: 32px 16px; 
    }
    .features-list, 
    .pricing-table { 
        gap: 20px; 
    }
}

/* Large tablets portrait */
@media screen and (max-width: 900px) {
    .header-main, 
    .navbar-main { 
        padding: 0 12px; 
    }
    .navbar-main { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 10px; 
    }
    .features, 
    .pricing, 
    .faq { 
        padding: 24px 16px; 
    }
}

/* Small tablets and large phones */
@media screen and (max-width: 768px) {
    :root {
        --header-height-desktop: var(--header-height-tablet);
    }
    body {
        padding-top: var(--header-height-tablet);
    }
    .header-container {
        padding: 0.75rem;
    }
    .features-list, 
    .pricing-table { 
        flex-direction: column;
        gap: 16px;
    }
    .feature, 
    .price-card { 
        min-width: 0;
        padding: 16px;
    }
    .form-grid { 
        grid-template-columns: 1fr;
        gap: 12px 0;
    }
    #booking-form { 
        max-width: 100%;
        padding: 16px;
    }
    .navbar-main { 
        padding: 12px 16px;
    }
    .mobile-menu.active {
        display: block;
    }
}

/* Phones */
@media screen and (max-width: 480px) {
    :root {
        --header-height-desktop: var(--header-height-mobile);
        --container-padding: 0.75rem;
    }
    body {
        padding-top: var(--header-height-mobile);
    }
    .header-container {
        padding: 0.5rem;
    }
    .hero h1 { 
        font-size: 1.5rem; 
    }
    .hero p { 
        font-size: 1rem; 
    }
    .features, 
    .pricing, 
    .faq, 
    .dummy-ticket-info-panel { 
        padding: 16px;
        border-radius: 0;
    }
    .form-grid { 
        gap: 8px 0; 
    }
    .nav-link, 
    .nav-link-whatsapp { 
        font-size: 0.9rem;
    }
}

/* Small phones */
@media screen and (max-width: 360px) {
    :root {
        --container-padding: 0.5rem;
    }
    .hero h1 { 
        font-size: 1.25rem; 
    }
    .cta-btn, 
    #booking-form .cta-btn { 
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    .logo-link { 
        font-size: 0.9rem;
    }
    .nav-link, 
    .nav-link-whatsapp { 
        font-size: 0.85rem;
    }
    .form-input, 
    .form-date { 
        font-size: 0.9rem;
        padding: 8px;
    }
}

/* iPad specific adjustments */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .hero-section {
        padding: 32px 24px;
    }
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    #booking-form {
        max-width: 600px;
    }
}

/* Landscape orientation adjustments */
@media screen and (orientation: landscape) and (max-height: 600px) {
    .mobile-menu {
        max-height: 80vh;
    }
    .hero-section {
        padding: 16px;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Print styles */
@media print {
    body {
        padding: 0;
    }
    .main-header,
    .mobile-menu,
    .footer {
        display: none;
    }
}

/* Premium Liquid Glass Card Styles */
.liquid-glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    z-index: 1;
    /* Hardware acceleration to prevent text blurriness on hover/transitions */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform, box-shadow;
}

.liquid-glass-card::before {
    display: none !important;
}

.liquid-glass-card:hover {
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(15, 23, 42, 0.15) !important;
    transform: translateY(-2px);
}

@keyframes liquidRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Continuous Marquee Scrolling */
.marquee-container {
    overflow: hidden;
    user-select: none;
    display: flex;
    width: 100%;
    position: relative;
    padding: 14px 0;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    justify-content: space-around;
    min-width: 100%;
    gap: 30px;
    animation: marqueeScroll 25s linear infinite;
}

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

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

/* 3D Liquid Cards */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease, border-color 0.5s ease !important;
    /* Prevent blurriness */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.card-3d:hover {
    transform: translateY(-8px) rotateX(4deg) rotateY(-4deg) scale(1.02) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(15, 23, 42, 0.25) !important;
}

/* Liquid Header Background Layer */
.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.45) !important;
}

.header-bg::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 400%;
    background: radial-gradient(circle, rgba(0, 182, 122, 0.14) 0%, rgba(0, 182, 122, 0.03) 30%, transparent 60%);
    animation: liquidRotate 20s linear infinite;
    z-index: -1;
}

/* Liquid Footer Background Layer */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-top: 1.5px solid rgba(255, 255, 255, 0.45) !important;
}

.footer-bg::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 400%;
    background: radial-gradient(circle, rgba(0, 182, 122, 0.14) 0%, rgba(0, 182, 122, 0.03) 30%, transparent 60%);
    animation: liquidRotate 20s linear infinite;
    z-index: -1;
}

/* Add variable at the top if not present */
:root {
  --brand-green: #00B67A;
}

/* Button styles */
.cta-btn { background: #fff; color: var(--brand-green); padding: 16px 38px; border: 2px solid var(--brand-green); border-radius: 30px; font-size: 1.2rem; font-weight: bold; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: background 0.2s, color 0.2s, border 0.2s; text-decoration: none; }
.cta-btn:hover, .cta-btn:focus { background: var(--brand-green); color: #fff; border-color: var(--brand-green); }
#booking-form .cta-btn { background: var(--brand-green) !important; color: #fff !important; font-size: 1.15rem; font-weight: 700; letter-spacing: 0.5px; box-shadow: 0 2px 8px rgba(0,112,186,0.15); border: none; outline: none; transition: background 0.2s; }
#booking-form .cta-btn:hover { background: #009B66 !important; }

/* Mobile button adjustments for better fit and no overflow */
@media (max-width: 600px) {
  .cta-btn {
    padding: 12px 18px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
  }
  #booking-form .cta-btn {
    font-size: 0.98rem;
    padding: 10px 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 400px) {
  .cta-btn {
    padding: 10px 8px;
    font-size: 0.92rem;
  }
}

/* Card and feature styles */
.features-list { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; }
.feature { flex: 1 1 220px; min-width: 220px; background: #f2f8fd; border-radius: 8px; padding: 18px; margin-bottom: 10px; }
.feature h3 { margin-top: 0; color: #00B67A; }
.pricing-table { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.price-card { background: #f2f8fd; border-radius: 8px; padding: 24px 18px; min-width: 220px; text-align: center; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.price-card h3 { margin: 0 0 10px 0; color: #00B67A; }
.price { font-size: 2rem; color: #00B67A; margin: 10px 0 18px 0; }
.faq-list { margin: 0; padding: 0; list-style: none; }
.faq-list li { margin-bottom: 18px; }
.faq-list strong { color: #00B67A; }
.modern-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; justify-content: space-between; }
.modern-feature-card { background: #f2f8fd !important; border-radius: 12px !important; box-shadow: 0 1px 4px rgba(0,0,0,0.04) !important; padding: 24px !important; text-align: center; transition: transform 0.2s ease !important; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.modern-feature-card:hover { transform: translateY(-2px) !important; box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important; }
.modern-feature-card .feature-icon img { filter: none !important; transform: none !important; transition: none !important; }
.modern-3d-card, .modern-3d-card-inner { perspective: none !important; transform: none !important; transition: none !important; box-shadow: none !important; }
@media (max-width: 700px) {
    .modern-features { flex-direction: column; gap: 0; }
    .modern-feature-card { min-width: 0; margin-bottom: 18px; }
}
@media (max-width: 900px) {
  .features-list, .pricing-table { flex-direction: column !important; gap: 0 !important; }
  .feature, .modern-feature-card, .price-card { min-width: 0 !important; padding: 12px 8px !important; }
}
@media (max-width: 500px) {
  .features-list, .pricing-table { gap: 0 !important; }
  .feature, .modern-feature-card, .price-card { padding: 8px 4px !important; }
}
.modern-3d-card { perspective: 800px; will-change: transform; }
.modern-3d-card-inner { transition: transform 0.4s cubic-bezier(.4,2,.6,1); transform-style: preserve-3d; }
.modern-3d-card.active .modern-3d-card-inner,
.modern-3d-card:active .modern-3d-card-inner,
.modern-3d-card:hover .modern-3d-card-inner { transform: rotateY(18deg) scale(1.08) skewY(-2deg); box-shadow: 0 12px 36px rgba(0,112,186,0.18), 0 2px 12px rgba(0,0,0,0.10); }

/* FAQ section */
.faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-list li {
    margin-bottom: 18px;
    padding: 16px;
    background: #f8fbff;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.faq-list li:hover {
    background: #f2f8fd;
}

.faq-list strong {
    color: #00B67A;
    display: block;
    margin-bottom: 8px;
}

/* Responsive Breakpoints */
@media screen and (min-width: 1200px) {
    .modern-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1199px) {
    .modern-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .modern-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .modern-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modern-feature-card,
    .price-card {
        padding: 20px !important;
    }

    .price {
        font-size: 1.75rem;
    }

    .faq-list li {
        padding: 14px;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 480px) {
    .modern-feature-card,
    .price-card {
        padding: 16px !important;
    }

    .price {
        font-size: 1.5rem;
    }

    .faq-list li {
        padding: 12px;
        margin-bottom: 10px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .faq-list li {
        padding: 16px;
        margin-bottom: 16px;
    }
}

/* iPad/tablet specific */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .modern-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .modern-feature-card,
    .price-card {
        box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    }
}

/* Add variable at the top if not present */
:root {
    --brand-green: #00B67A;
}

/* Form and autocomplete styles */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    align-items: center;
}

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

.form-label,
.form-input,
.form-date {
    text-align: left;
}

.form-label {
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 2px;
    display: block;
}

.form-section-title {
    color: var(--brand-green);
    font-weight: 600;
    margin: 18px 0 8px 0;
    grid-column: 1 / -1;
}

.form-input,
.form-date,
.form-select {
    width: 100%;
    height: 36px;
    font-size: 0.9rem;
    color: #222;
    margin-bottom: 4px;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    transition: all 0.2s ease;
}

.remove-route,
.remove-hotel {
    margin-top: 2px;
}

#booking-form label[style*="font-weight:600;"] {
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

/* New inline suggestion styles */
.suggestion-box {
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.suggestion-item {
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    background: transparent;
    border: none;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

.suggestion-item:hover,
.suggestion-item.active {
    background: #f0f0f0;
    color: #00B67A;
}

.btn-flight,
.btn-hotel,
.btn-both {
    /* Reduce width by 20% */
    width: 80% !important;
    /* Add shadow */
    box-shadow: 0 4px 16px rgba(0, 182, 122, 0.18), 0 1.5px 8px rgba(0, 0, 0, 0.10);
    /* Center the button if needed */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn-flight:hover,
.btn-hotel:hover,
.btn-both:hover {
    background-color: #008e5c;
    border-color: #008e5c;
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 8px 0 !important;
    }

    .form-label,
    .form-input,
    .form-date {
        font-size: 0.98rem !important;
    }

    .form-input,
    .form-date {
        padding: 8px 8px !important;
    }
}

@media (max-width: 500px) {

    .form-label,
    .form-input,
    .form-date {
        font-size: 0.92rem !important;
    }

    .form-input,
    .form-date {
        padding: 6px 6px !important;
    }
}

@media (max-width: 400px) {

    .form-label,
    .form-input,
    .form-date {
        font-size: 0.88rem !important;
    }

    .form-input,
    .form-date {
        padding: 4px 4px !important;
    }
}

#booking-form {
    width: 100%;
    max-width: 100%;
}



/* Style for both section inputs */
#both-section .form-input:focus,
#both-section .form-date:focus,
#both-section .form-select:focus {
    outline: none;
    border-color: rgba(0, 182, 122, 0.4);
    box-shadow: 0 2px 12px rgba(0, 182, 122, 0.15);
    background-color: #fff;
}

/* Hotel section inputs */
#hotel-section .form-input:focus,
#hotel-section .form-date:focus,
#hotel-section .form-select:focus {
    outline: none;
    border-color: rgba(0, 182, 122, 0.4);
    box-shadow: 0 2px 12px rgba(0, 182, 122, 0.15);
    background-color: #fff;
}
/* Typography and color overrides */
h1, h2 { color: #000000 !important; font-weight: bold !important; }
h3, h4, h5, h6 { color: #111 !important; font-weight: bold !important; }
p { color: #111 !important; font-weight: normal !important; }
.faq-list strong, .features-seo-text strong { font-weight: bold !important; color: #111 !important; }
.dummy-ticket-info-panel strong { font-weight: bold !important; color: #111 !important; }
.price-card h3 { font-weight: bold !important; color: #111 !important; }
.feature h3, .modern-feature-card h3 { font-weight: bold !important; color: #111 !important; }
#review-slider span[style*="font-weight:800"] { font-weight: 800 !important; color: #111 !important; }
body, h1, h2, h3, h4, h5, h6, p, .features, .pricing, .faq, .features-list, .feature, .modern-feature-card, .price-card, .faq-list, .faq-list li, .features-seo-text, .cta-btn, .dummy-ticket-info-panel, .features-list, .modern-features, .pricing-table, .feature-icon, .price, .footer, .header, .nav, .main, .section, .features-seo-text, .features-list, .modern-features, .pricing-table, .feature, .modern-feature-card, .price-card, .faq-list, .faq-list li, .features-seo-text, .dummy-ticket-info-panel, .hero form#booking-form, .hero form#booking-form *, .hero #hotel-section *, .hero #flight-section *, .hero #both-section * { font-family: 'Poppins', Arial, sans-serif !important; }

:root {
  --brand-green: #00B67A;
  --section-padding-desktop: 48px;
  --section-padding-tablet: 32px;
  --section-padding-mobile: 24px;
}

/* Homepage-specific styles extracted from inline styles in index.html */

.header-main {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 0;
}

.navbar-main {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 14px 24px;
}

.logo-link {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-green);
  letter-spacing: 1px;
  text-decoration: none;
}

.nav-link {
  color: var(--brand-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-link-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #25d366;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08rem;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.hero-section,
.hero,
main {
  background: transparent !important;
  color: var(--brand-navy) !important;
}

.hero-section {
  background: transparent !important;
  padding: var(--section-padding-desktop) 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: heroRotate 30s linear infinite;
}

@keyframes heroRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hero {
  color: var(--brand-navy);
}

.hero-flex {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 32px 40px 0;
  min-width: 0;
  text-align: left;
}

.hero-left-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.hero-left-inner2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 420px;
  padding: 0;
  margin: 0 auto;
}

#review-slider {
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
  border-radius: 16px;
  padding: 38px 32px 54px;
  margin-top: 18px;
  min-height: 180px;
  box-shadow: 0 10px 30px rgba(0, 182, 122, 0.08);
  border: 1px solid var(--border-light);
}

.review-slide-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.review-slide-rating {
  font-size: 1.45rem;
  color: var(--brand-green);
  font-weight: 700;
  margin: 22px 0 0 0;
}

.review-slide-text {
  font-size: 1.15rem;
  color: var(--brand-navy);
  margin-top: 10px;
}

.slider-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--brand-green);
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.slider-dot.inactive {
  background: hsla(160, 100%, 36%, 0.2);
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 20px 16px;
  max-width: 450px;
  min-width: 0;
  width: 100%;
}

@media (min-width: 769px) {
  .hero-right {
    width: 420px !important;
    max-width: 420px !important;
    padding: 32px 28px !important;
  }
}

#booking-form {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

@media (min-width: 769px) {
  #booking-form button[type="submit"] {
    margin-top: 12px !important;
  }
}

.booking-tabs-row {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.booking-tabs-row .tab-btn {
  flex: 1;
  padding: 6px 0 !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  border: none !important;
  background: transparent !important;
  color: var(--brand-navy) !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: none !important;
  min-height: unset !important;
}

.booking-tabs-row .tab-btn.active {
  background: linear-gradient(135deg, hsl(160, 95%, 45%) 0%, hsl(160, 100%, 35%) 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 182, 122, 0.25) !important;
}

.booking-tabs-row .tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.3) !important;
  color: var(--brand-green) !important;
}

.flight-type-row {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  margin-bottom: 7.2px;
  padding: 0;
  background: #f7fafd;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 112, 186, 0.10);
  padding: 8px 8px;
}

.flight-type-row label {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 112, 186, 0.08);
  padding: 3.6px 9px;
  margin: 0;
  font-weight: bold;
  font-size: 0.765rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.flight-type-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin: 0 0 4px 0;
  padding: 0;
  width: 100%;
  flex-wrap: nowrap !important;
}

.flight-type-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--brand-navy, #0f172a);
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  flex: 1 1 0px;
  padding: 6px 2px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.2s ease;
}

.flight-type-label input[type="radio"] {
  transform: scale(0.85);
  margin: 0;
}

#booking-form .form-input,
#booking-form .form-date {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 4px;
  padding: 5.8px 8px;
  font-size: 0.8rem;
  margin-bottom: 6px;
  position: relative;
}

.form-group {
  position: relative;
  margin-bottom: 10px;
}

#booking-form label.form-label {
  font-weight: 600;
  color: #222;
  margin-bottom: 0.8px;
  display: block;
  font-size: 0.78rem;
  text-align: left;
  /* Ensure left alignment */
}

#booking-form .cta-btn {
  width: 100%;
  margin-top: 6px;
  font-size: 0.82rem;
  padding: 7.2px 0;
  border-radius: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 0;
  /* Reduced by 50% from 7.2px */
  text-align: left;
  /* Ensure left alignment for grid container */
}

.form-grid-full {
  grid-column: 1 / -1;
  text-align: left;
  /* Ensure left alignment for full-width grid items */
}

@media (min-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 7.2px 10.8px;
  }
}

@media (max-width: 600px) {

  html,
  body {
    overflow-x: hidden;
    width: 100vw;
  }

  .hero-flex {
    flex-direction: column-reverse;
    gap: 16px;
    max-width: 100vw;
    margin: 0;
    padding: 0;
  }

  .hero-left,
  .hero-left-inner,
  .hero-left-inner2 {
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    max-width: 100vw;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .features-list,
  .pricing-table,
  .modern-features {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 8px;
    width: 100%;
    max-width: 100vw;
  }

  main,
  section,
  .hero-section {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }

  #review-slider {
    margin-left: auto !important;
    margin-right: auto !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
    display: block !important;
    max-width: 100vw !important;
  }

  .hero-left-inner2 {
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 100vw !important;
    display: flex !important;
  }
}

/* Section containers: always fluid, never overflow */
.features-section,
.dummy-ticket-info-panel,
.pricing,
.faq,
.order-summary {
  width: 100%;
  max-width: 900px;
  margin: 32px auto;
  box-sizing: border-box;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 18px 8px;
}

@media (min-width: 600px) {

  .features-section,
  .dummy-ticket-info-panel,
  .pricing,
  .faq,
  .order-summary {
    padding: 32px 24px;
  }
}

/* Remove hardcoded min-widths/max-widths from cards */
.price-card,
.feature,
.modern-feature-card {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 18px 0;
}

/* Flex and grid layouts: stack on mobile, row on desktop */
.features-list,
.pricing-table,
.modern-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 600px) {

  .features-list,
  .pricing-table,
  .modern-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
}

/* Typography: readable everywhere */
h1 {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 12px;
}

p,
li,
label,
input,
button,
.form-label,
.form-input,
.form-date {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.08rem;
  color: #222;
}

@media (max-width: 700px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  p,
  li,
  label,
  input,
  button,
  .form-label,
  .form-input,
  .form-date {
    font-size: 0.98rem;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 1.1rem;
  }

  h2 {
    font-size: 1rem;
  }

  p,
  li,
  label,
  input,
  button,
  .form-label,
  .form-input,
  .form-date {
    font-size: 0.92rem;
  }
}

/* Buttons: always touch-friendly */
button,
.cta-btn,
.tab-btn {
  min-height: 44px;
  min-width: 44px;
  font-size: 1rem;
  border-radius: 8px;
  padding: 10px 18px;
  box-sizing: border-box;
}

/* Forms: full width, never overflow */
#booking-form,
form {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 0;
}

@media (min-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
  }
}

/* Make all images responsive and never overflow */
img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Hide scrollbars on mobile for a cleaner look */
body,
html {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #b3d8f6 #fff;
}

.dummy-info-flex {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
}

.dummy-info-img {
  max-width: 168px;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.dummy-info-text {
  font-size: 1.13rem;
  color: #111;
  line-height: 1.7;
  margin-bottom: 0;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: normal;
  max-width: 600px;
}

.dummy-title {
  color: var(--brand-green);
  font-size: 1.52rem;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: 'Poppins', Arial, sans-serif;
}

@media (max-width: 700px) {
  .dummy-info-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .dummy-info-img {
    max-width: 120px;
  }

  .dummy-info-text {
    max-width: 100%;
    font-size: 1rem;
  }

  .dummy-title {
    font-size: 1.2rem;
  }
}

/* Hide slider dots in the review section */
#slider-dots,
.slider-dot {
  display: none !important;
}

.form-section-title {
  color: #00B67A;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  /* Reduced from 8px */
  margin-top: 4px;
  /* Added small top margin */
}

#both-flight {
  margin-bottom: 8px;
}

/* Remove any extra spacing */
#both-section .form-section-title {
  margin-bottom: 4px;
}

/* Hero section base styles */
.hero-section {
  padding: var(--section-padding-desktop) 80px 40px;
  text-align: center;
}

.hero-flex {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: var(--section-padding-mobile) 16px;
  }

  .hero-flex {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .hero-right {
    max-width: 400px;
    width: 100%;
  }

  #booking-form {
    max-width: 100%;
  }

  .booking-tabs-row {
    flex-direction: row;
    gap: 4px;
  }

  .flight-type-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Additional adjustments for smaller screens */
@media (max-width: 480px) {
  .hero-section {
    padding: 20px 12px;
  }

  .hero-right {
    padding: 16px 12px;
    border-radius: 12px;
  }

  #booking-form {
    gap: 8px;
  }

  .booking-tabs-row {
    padding: 6px;
  }

  .flight-type-label {
    font-size: 0.9rem;
  }
}

/* Small phones */
@media screen and (max-width: 360px) {
  .hero-section {
    padding: 16px 8px;
  }

  .hero-right {
    padding: 12px 8px;
  }

  .flight-type-label {
    font-size: 0.85rem;
  }
}

/* iPad/tablet specific */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .hero-flex {
    gap: 24px;
  }

  .hero-right {
    max-width: 380px;
  }
}

/* Landscape orientation */
@media screen and (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    padding: 16px;
  }

  .hero-flex {
    flex-direction: row;
  }
}

/* Review slider responsive styles */
#review-slider {
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  background: #f2f8fd;
  border-radius: 14px;
  padding: 38px 32px 54px;
  margin-top: 18px;
  min-height: 180px;
  box-shadow: 0 4px 24px rgba(0, 112, 186, 0.10);
}

@media screen and (max-width: 768px) {
  #review-slider {
    padding: 24px 20px 40px;
    margin: 12px auto;
    max-width: 100%;
  }
}

/* Feature sections responsive styles */
.features-list,
.pricing-table,
.modern-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 24px;
}

@media screen and (max-width: 768px) {

  .features-list,
  .pricing-table,
  .modern-features {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

  .booking-tabs-row button,
  .form-input,
  .form-date,
  .form-select {
    min-height: 44px;
    /* Minimum touch target size */
  }
}

/* Add a neutral shadow to all 'from', 'to', and 'return' fields in multi-trip as well */
#booking-form .form-input[name*="from"],
#booking-form .form-input[name*="to"],
#booking-form .form-date[name*="depart"],
#booking-form .form-date[name*="return"] {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #fff;
}

/* Pricing card premium designs and hover animations */
.price-card {
  padding: 32px 24px !important;
  max-width: 320px !important;
  flex: 1 1 300px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.price-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
}

/* Styled details and accordion elements */
details.faq-item {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 16px 20px !important;
  border: 1px solid var(--border-light) !important;
  box-shadow: 0 2px 8px rgba(0, 182, 122, 0.02);
  margin-bottom: 16px !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

details.faq-item[open] {
  border-color: rgba(0, 182, 122, 0.3) !important;
  box-shadow: 0 4px 16px rgba(0, 182, 122, 0.06);
}

/* Airline Logo Hover Effect */
.airline-logo-item:hover {
  color: var(--brand-green) !important;
  opacity: 1 !important;
  transform: scale(1.05);
}

/* Sample Card Zoom & Glowing Border */
.sample-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sample-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 182, 122, 0.4) !important;
  box-shadow: 0 12px 30px rgba(0, 182, 122, 0.1) !important;
}
.sample-image-wrapper img {
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sample-card:hover .sample-image-wrapper img {
  transform: scale(1.03);
}

/* Video Card Hover & Pulse */
.video-card-wrapper {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.video-card-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 182, 122, 0.15) !important;
  border-color: rgba(0, 182, 122, 0.4) !important;
}
.video-card-wrapper:hover .play-btn-circle {
  background: var(--brand-green-hover) !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
  box-shadow: 0 6px 24px rgba(0, 182, 122, 0.6) !important;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

.play-btn-pulse {
  animation: pulseRing 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

/* Trust Badges Hover Glow */
.footer-trust-badge {
  transition: all 0.3s ease;
}
.footer-trust-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 182, 122, 0.3) !important;
  box-shadow: 0 6px 16px rgba(0, 182, 122, 0.08) !important;
}

/* Payment Logo Colors on Hover */
.payment-logo-card {
  filter: none;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.payment-logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 182, 122, 0.25) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
}

.payment-logo-card.visa:hover {
  color: #1a1f71 !important;
}
.payment-logo-card.mastercard:hover {
  color: inherit !important;
}
.payment-logo-card.amex:hover {
  color: #0170b2 !important;
}
.payment-logo-card.paypal:hover {
  color: #003087 !important;
}
.payment-logo-card.upi:hover {
  color: #0f8f46 !important;
}
.payment-logo-card.gpay:hover {
  color: inherit !important;
}
.payment-logo-card.applepay:hover {
  color: #000 !important;
}

/* Premium Hero Ratings Row & Card Styles */
.hero-ratings-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0;
  width: 100%;
}

.rating-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 182, 122, 0.04) !important;
  min-width: 260px;
  text-align: left;
  margin: 0 !important; /* Reset default margins */
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rating-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 182, 122, 0.3) !important;
  box-shadow: 0 12px 24px rgba(0, 182, 122, 0.08) !important;
}

.rating-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rating-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-ratings-container {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    margin: 24px auto 0;
  }
  .rating-card {
    width: 100%;
    max-width: 320px;
  }
}

/* Passenger Details & Booking Summary Panel */
#passenger-fields-container {
  margin-bottom: 15px;
}

.passenger-block {
  background: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(0, 182, 122, 0.12) !important;
  border-radius: 12px !important;
  padding: 16px 14px 10px 14px !important;
  margin-bottom: 14px !important;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 182, 122, 0.03) !important;
  text-align: left;
}

.passenger-block .remove-passenger-btn {
  background: hsl(0, 78%, 57%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 4px 12px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  cursor: pointer;
  min-height: 28px !important;
  min-width: unset !important;
  transition: background 0.2s ease;
}

.passenger-block .remove-passenger-btn:hover {
  background: hsl(0, 78%, 52%) !important;
}

.passenger-block .modern-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

@media (max-width: 480px) {
  .passenger-block .modern-fields-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 8px;
  }
}

.passenger-block .modern-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.passenger-block .modern-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 2px;
}

.passenger-block .modern-input,
.passenger-block .modern-select {
  width: 100%;
  padding: 8px 10px !important;
  border: 1.5px solid #eaf6ff !important;
  border-radius: 10px !important;
  font-size: 0.85rem !important;
  background: #fff !important;
  height: 38px !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  min-height: unset !important;
}

.passenger-block .modern-input:focus,
.passenger-block .modern-select:focus {
  border-color: var(--brand-green) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 182, 122, 0.1) !important;
}

#add-passenger-btn {
  width: 100%;
  background: transparent !important;
  color: var(--brand-green) !important;
  border: 1.5px dashed var(--brand-green) !important;
  border-radius: 10px !important;
  padding: 8px 0 !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  cursor: pointer;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  min-height: 38px !important;
}

#add-passenger-btn:hover {
  background: rgba(0, 182, 122, 0.05) !important;
  color: hsl(160, 100%, 30%) !important;
  border-color: hsl(160, 100%, 30%) !important;
}

#booking-summary-panel {
  background: rgba(255, 255, 255, 0.35) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  margin-bottom: 15px;
  font-size: 0.85rem !important;
  color: var(--brand-navy) !important;
  text-align: left;
  line-height: 1.5;
}

#booking-summary-panel div {
  margin-bottom: 4px;
}

#booking-summary-panel b {
  color: var(--brand-green) !important;
}

/* Feature cards custom styling: remove green background/glow and style as clean white-glass cards */
.features-section .liquid-glass-card::before {
  display: none !important;
}

.features-section .liquid-glass-card {
  background: rgba(255, 255, 255, 0.75) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

.features-section .liquid-glass-card:hover {
  background: #fff !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
}

/* Neutralize scrolling marquee colors (remove green backgrounds and borders) */
.marquee-container {
  background: rgba(15, 23, 42, 0.02) !important;
  border-top: 1px solid rgba(15, 23, 42, 0.06) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
}

.marquee-content span {
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
}

/* Policy pages shared styles */
.policy-section {
    background-color: #f6fefb;
    padding: 40px 20px;
    min-height: calc(100vh - 71px);
    margin-top: 71px;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,182,122,0.1);
}

.policy-title {
    color: #000000;
    font-size: 2rem;
    margin-bottom: 32px;
    font-family: 'Poppins', sans-serif;
}

.policy-section h2 {
    color: #00B67A;
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.policy-section p,
.policy-section ul,
.policy-section ol {
    color: #222;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.policy-note {
    background: #f6fefb;
    padding: 20px;
    border-radius: 8px;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 20px 15px;
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }
    .policy-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 15px 10px;
        margin-top: 55px;
        min-height: calc(100vh - 55px);
    }
    .policy-content {
        padding: 15px;
        border-radius: 8px;
    }
    .policy-title {
        font-size: 1.6rem;
    }
    .policy-section h2 {
        font-size: 1.2rem;
    }
}

/* AI Chatbot Widget Stylesheet */

/* Floating Action Button (FAB) */
.chatbot-fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: 1px solid rgba(0, 182, 122, 0.15);
    outline: none;
    padding: 0;
}

.chatbot-fab:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.chatbot-fab svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    transition: transform 0.3s ease;
}

/* Badge/Notification on FAB */
.chatbot-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background-color: #ff3b30;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 1; }
}

/* FAB Pulse Rings */
.chatbot-fab::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid var(--brand-green);
    opacity: 0;
    animation: pulseRing 2s infinite ease-out;
    pointer-events: none;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Chat Widget Container */
.chatbot-container {
    position: fixed;
    bottom: 96px;
    left: 24px;
    width: 380px;
    height: 520px;
    max-height: calc(100vh - 120px);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 182, 122, 0.04);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
}

.chatbot-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 182, 122, 0.16) 0%, rgba(0, 182, 122, 0.04) 30%, transparent 60%);
    animation: liquidRotate 15s linear infinite;
    z-index: -1;
    pointer-events: none;
}

.chatbot-container.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Chat Header */
.chatbot-header {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--brand-navy, #0f172a) !important;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.45) !important;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(0, 182, 122, 0.15);
    overflow: hidden;
    padding: 0;
}

.chatbot-status-container {
    display: flex;
    flex-direction: column;
}

.chatbot-title {
    color: var(--brand-navy, #0f172a) !important;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.chatbot-status {
    color: var(--brand-navy-muted, #475569) !important;
    font-size: 0.7rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chatbot-status::before {
    display: none !important;
}

.chatbot-close-btn {
    background: none;
    border: none;
    color: var(--brand-navy, #0f172a) !important;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.chatbot-close-btn:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}

/* Chat Messages Content */
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(255, 255, 255, 0.4);
    scroll-behavior: smooth;
}

/* Message Bubbles */
.chatbot-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.86rem;
    line-height: 1.5;
    word-wrap: break-word;
    font-family: 'Poppins', sans-serif;
    animation: bubbleFadeIn 0.3s ease forwards;
}

@keyframes bubbleFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot-msg.bot {
    align-self: flex-start;
    background-color: #fff;
    color: var(--brand-navy);
    border: 1px solid rgba(0, 182, 122, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border-top-left-radius: 4px;
}

.chatbot-msg.user {
    align-self: flex-end;
    background: linear-gradient(135deg, hsl(160, 95%, 40%) 0%, hsl(160, 100%, 30%) 100%);
    color: #fff;
    border-top-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 182, 122, 0.15);
}

/* Suggestion Chips */
.chatbot-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
    animation: bubbleFadeIn 0.3s ease forwards;
}

.chatbot-chip {
    background-color: #fff;
    border: 1px solid rgba(0, 182, 122, 0.25);
    color: var(--brand-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.76rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 182, 122, 0.04);
}

.chatbot-chip:hover {
    background-color: var(--brand-green-light);
    border-color: var(--brand-green);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 182, 122, 0.08);
}

/* Typing Indicator */
.chatbot-typing {
    align-self: flex-start;
    background-color: #fff;
    border: 1px solid rgba(0, 182, 122, 0.08);
    padding: 12px 18px;
    border-radius: 16px;
    border-top-left-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.chatbot-dot {
    width: 6px;
    height: 6px;
    background-color: var(--brand-green);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
    opacity: 0.6;
}

.chatbot-dot:nth-child(1) { animation-delay: -0.32s; }
.chatbot-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Chat Input Footer Area */
.chatbot-input-area {
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid rgba(0, 182, 122, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-input {
    flex: 1;
    border: 1px solid rgba(0, 182, 122, 0.18);
    border-radius: 24px;
    padding: 10px 16px;
    font-size: 0.86rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
    color: var(--brand-navy);
    background: var(--bg-light);
    transition: all 0.2s ease;
}

.chatbot-input:focus {
    border-color: var(--brand-green);
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 182, 122, 0.15);
}

.chatbot-send-btn {
    background: linear-gradient(135deg, hsl(160, 95%, 40%) 0%, hsl(160, 100%, 30%) 100%);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 182, 122, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 182, 122, 0.3);
}

.chatbot-send-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .chatbot-container {
        left: 16px !important;
        right: auto !important;
        bottom: 84px !important;
        width: calc(100% - 32px) !important;
        height: 480px !important;
        max-height: calc(100vh - 100px) !important;
        border-radius: 20px !important;
        border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    }
    .chatbot-fab {
        bottom: 16px;
        left: 16px;
        right: auto;
    }
    .chatbot-tooltip {
        left: 86px;
        right: auto;
        bottom: 26px;
    }
}

/* Chatbot Tooltip Popover */
.chatbot-tooltip {
    position: fixed;
    bottom: 34px;
    left: 96px;
    right: auto;
    background: #fff;
    color: var(--brand-navy, #0f172a);
    padding: 10px 18px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 182, 122, 0.08);
    z-index: 999;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    border: 1px solid rgba(0, 182, 122, 0.15);
}

.chatbot-tooltip::after {
    content: '';
    position: absolute;
    left: -6px;
    right: auto;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 1px solid rgba(0, 182, 122, 0.15);
    border-bottom: 1px solid rgba(0, 182, 122, 0.15);
}

.chatbot-tooltip.show {
    opacity: 1;
    transform: translateX(0);
}

/* Chatbot Image Avatar and FAB styling */
.chatbot-fab img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.chatbot-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

