/* Header, Hero and Footer styles from flight.css */

    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

:root {
    --violet: #3b254e;
    --violet-dark: #2a1839;
    --blue: #0057ff;
    --red: #cc2e2e;
    --black: #111111;
    --white: #ffffff;
    --gray: #f5f5f7;
    --success: #28a745;
    --warning: #ffc107;
    --sky-blue: #00b4d8;
    --orange: #ff6b35;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* ====== HEADER SECTION ====== */
header {
    width: 90%;
    max-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    margin: 0 auto;
    padding: 0 30px;
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    z-index: 1003;
}

.logo img {
    width: 180px;
    height: 140px;
    border-radius: 0%;
    background: transparent;
}

header ul {
    display: flex;
    gap: 25px;
}

header ul li {
    list-style: none;
    text-transform: capitalize;
}

header ul a {
    position: relative;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 5px;
    font-weight: 600;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header ul i {
    margin-right: 5px;
}

header ul a i {
    margin-left: 5px;
}

header ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: rgb(126, 24, 24);
    transition: width 0.6s ease;
}

header ul li a:hover::after {
    width: 100%;
}

/* ====== DROPDOWN MENU ====== */
header ul li ul {
    position: absolute;
    top: 100px;
    background: rgba(255, 255, 255, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    padding: 8px 0;
}

header ul li ul li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    width: 100%;
}

header ul li ul li a {
    padding: 12px 20px;
    color: #000;
}

header ul li ul li:hover {
    background: rgb(100, 98, 98);
    color: #fff;
    padding: 10px;
}

header ul li ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #fff;
    transition: width 0.6s ease;
}

header ul li.show ul,
header ul li:hover ul {
    display: flex;
}

/* ====== HAMBURGER MENU ====== */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 2px;
    transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ====== HERO SECTION ====== */
.hero-flight {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-flight h1 {
    font-family: 'Laviossa', serif;
}

/* ====== FOOTER ====== */
.footer {
    background: #fff;
    color: #000;
    padding: 70px 5% 35px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1;
    min-width: 240px;
}

.footer h3, .footer h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: #ff6f61;
}

.footer-contact a {
    text-decoration: none;
    color: var(--red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
}

.footer-contact .mail-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    line-height: 1.6;
}

.footer-contact .whatsapp, .footer-contact .mailing, .footer-contact .location {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-socials a img {
    width: 30px;
    height: 30px;
}

.footer .logo img {
    width: 160px;
    height: 130px;
}

.newsletter {
    background: #111;
    padding: 35px 20px;
    text-align: center;
    border-radius: 6px;
}

.newsletter h4 {
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    outline: none;
    width: 260px;
    max-width: 100%;
}

.newsletter-form button {
    padding: 12px 24px;
    border: none;
    background: #ff6f61;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff3c2f;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 13px;
    color: #777;
}

/* ====== HEADER RESPONSIVE ====== */
@media (min-width: 992px) {
    .hamburger {
        display: none !important;
    }
}

@media (max-width: 991px) {
    header {
        padding: 10px 20px;
        width: 95%;
        border-radius: 40px 40px 0 0;
    }

    .logo img {
        width: 120px;
        height: 100px;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.5);
        flex-direction: column;
        padding: 15px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu.show {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        display: flex !important;
    }

    .menu li {
        margin: 5px 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    header {
        padding: 8px 15px;
        width: 98%;
        top: 10px;
        border-radius: 40px 40px 0 0;
    }

    .logo img {
        width: 100px;
        height: 80px;
    }

    .hamburger {
        gap: 3px;
    }

    .hamburger span {
        width: 18px;
        height: 2px;
    }

    .menu {
        padding: 10px;
    }
    
    .hero-flight h1 {
        font-size: 1.75rem !important;
    }

    .footer-container {
        flex-direction: column;
        text-align: left;
    }
}

/* Override and add specific styles for ticket booking */
.hero-flight {
    height: 70vh;
    min-height: 500px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.active-trip-btn {
    background: white !important;
    color: #667eea !important;
    border: none !important;
    font-weight: 600;
}

.btn-outline-light {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.booking-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.booking-form {
    display: none;
}

.booking-form.active-form {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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

.form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
}

.form-control:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.booking-form h3 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.booking-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.row.g-3 {
    margin-bottom: 1rem;
}

.form-group-icon {
    position: relative;
}

.form-group-icon .form-control {
    padding-left: 45px;
}

.form-group-icon .form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 16px;
    z-index: 2;
}

.info-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15), 0 0 0 1px rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.info-card h4 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.info-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
}

.booking-guide-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.8);
    display: block;
    background: white;
}

.booking-guide-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.booking-steps {
    list-style: none;
    padding: 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 10px;
    font-size: 13px;
    color: #4a5568;
    background: rgba(102, 126, 234, 0.03);
    border-radius: 10px;
    margin-bottom: 2px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.step-item:hover {
    background: rgba(102, 126, 234, 0.08);
    border-left-color: #667eea;
    transform: translateX(5px);
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item i {
    font-size: 18px;
    width: 20px;
    color: #48bb78;
}

.step-item span {
    font-weight: 500;
    flex: 1;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d7377 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 20px;
    animation: pulse 2s infinite;
}

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

.booking-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 235, 255, 0.7) 0%, rgba(220, 210, 245, 0.7) 100%);
    z-index: 1;
}

.booking-form-section .container-fluid {
    position: relative;
    z-index: 2;
}

.contact-info {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 15px;
    padding: 15px;
    margin-top: auto;
    border: 1px solid rgba(102, 126, 234, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h6 {
    color: #2d3748;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services dropdown animation */
header ul li:hover ul li {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking-card {
        padding: 20px;
        margin: 0 15px;
    }
    
    .info-card {
        padding: 20px;
        margin-bottom: 20px;
        position: static;
    }
    
    .hero-flight {
        height: 60vh;
        min-height: 400px;
    }
    
    .display-2 {
        font-size: 2.5rem;
    }
}
/* Particles Animation */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 15s infinite linear;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.particle:nth-child(1) { width: 8px; height: 8px; left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { width: 12px; height: 12px; left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { width: 6px; height: 6px; left: 70%; animation-delay: 4s; animation-duration: 15s; }
.particle:nth-child(4) { width: 10px; height: 10px; left: 80%; animation-delay: 6s; animation-duration: 20s; }
.particle:nth-child(5) { width: 14px; height: 14px; left: 50%; animation-delay: 8s; animation-duration: 14s; }
.particle:nth-child(6) { width: 7px; height: 7px; left: 90%; animation-delay: 10s; animation-duration: 16s; }

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Entry Animations */
.animate-fade-in { animation: fadeIn 1s ease-out; }
.animate-slide-up { animation: slideUp 1s ease-out 0.5s both; }
.animate-slide-left { animation: slideLeft 0.8s ease-out 0.3s both; }
.animate-slide-right { animation: slideRight 0.8s ease-out 0.3s both; }

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

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

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Typing Animation */
.typing-animation {
    overflow: hidden;
    border-right: 3px solid rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    animation: typing 3s steps(25, end), blink-caret 0.75s step-end infinite;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: rgba(255, 255, 255, 0.75); }
}

/* Enhanced Button Hover Effects */
.btn-primary:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.5) !important;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5) !important;
}

.active-trip-btn:hover,
.btn-outline-light:hover {
    transform: translateY(-3px) scale(1.1) !important;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3) !important;
}

.form-control:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15) !important;
}

.info-card:hover,
.booking-card:hover,
.recent-bookings-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 35px 60px rgba(102, 126, 234, 0.25) !important;
}

.step-item:hover {
    transform: translateX(10px) scale(1.05) !important;
    background: rgba(102, 126, 234, 0.15) !important;
}
/* Popup Notifications */
.popup-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.popup-notification.success {
    border-left: 5px solid #25D366;
}

.popup-notification.error {
    border-left: 5px solid #e53e3e;
}

.popup-content {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.popup-content i:first-child {
    font-size: 24px;
}

.popup-notification.success .popup-content i:first-child {
    color: #25D366;
}

.popup-notification.error .popup-content i:first-child {
    color: #e53e3e;
}

.popup-content span {
    flex: 1;
    font-weight: 500;
    color: #2d3748;
}

.popup-close {
    background: none;
    border: none;
    color: #718096;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: #f7fafc;
    color: #2d3748;
}
/* Quick Booking Badge Enhanced Design */
.quick-booking-badge {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 30px;
    padding: 25px 35px;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2), 0 0 0 1px rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    animation: floatBadge 3s ease-in-out infinite;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.3;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.badge-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

.badge-text {
    font-weight: 700;
    color: #2d3748;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trip-buttons {
    display: flex;
    gap: 15px;
}

.trip-btn {
    background: white;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2d3748;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.trip-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.trip-btn:hover::before {
    left: 100%;
}

.trip-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.trip-btn.active-trip {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.trip-btn i {
    font-size: 16px;
}

.trip-btn span {
    font-size: 14px;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(-40px); }
    50% { transform: translateY(-45px); }
}



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

/* Responsive */
@media (max-width: 768px) {
    .quick-booking-badge {
        padding: 20px 25px;
        margin: 0 15px;
    }
    
    .badge-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .trip-buttons {
        justify-content: center;
    }
    
    .trip-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}
/* Dropdown Arrow Styling */
.dropdown-arrow {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.dropdown-arrow:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23667eea' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}
/* Force Number Input Spinners to be Visible */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: auto !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
}

input[type="number"] {
    appearance: number-input !important;
    -webkit-appearance: auto !important;
    -moz-appearance: number-input !important;
}