/* 
   Pricing Test UI Styles 
   Inspired by modern glassmorphism and premium design
*/

* {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* Tab Styles */
.service-tab {
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.service-tab.active {
    background: white;
    color: #3b82f6 !important;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.12);
}

/* Form Input Styles */
.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 15px;
    transition: all 0.25s ease;
    background: white;
    color: #1e293b;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.header a[href^="tel"] {
    display: flex !important;
    z-index: 100;
}

/* Trip Type Toggle - Horizontal Pills */
.trip-type-container {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 14px;
    gap: 4px;
}

.trip-type-btn {
    flex: 1;
    padding: 10px 8px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s;
    color: #64748b;
    cursor: pointer;
    text-align: center;
    border: none;
    background: transparent;
}

.trip-type-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* Airport Direction Toggle */
.airport-dir-container {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 14px;
    gap: 4px;
}

.airport-dir-btn {
    flex: 1;
    padding: 10px 8px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s;
    color: #64748b;
    cursor: pointer;
    text-align: center;
    border: none;
    background: transparent;
}

.airport-dir-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* Journey Overview Pills */
.journey-pills {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.journey-pills::-webkit-scrollbar {
    display: none;
}

.journey-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    background: white;
    color: #1a1a1a;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    flex-shrink: 0;
}

.journey-pill i {
    margin-right: 8px;
    color: #3b82f6;
    font-size: 14px;
}


/* =========================================
   PRICING CARDS - LM ARENA DESIGN
   Light Blue Gradient Theme
   ========================================= */

/* Gradient Backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.gradient-soft {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

/* Pricing Card Base */
.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 16px;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #bfdbfe;
}

/* Price Styles */
.original-price {
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    /* Red slash */
    text-decoration-thickness: 1px;
    color: #1a1a1a;
    /* Black text */
    font-size: 13px;
    font-weight: 500;
}

.final-price {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* Feature Icons in Square Containers */
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 20px;
}

/* Floating Action Buttons - Left Side */
.floating-action-btn {
    position: fixed;
    left: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.floating-action-btn:hover {
    transform: scale(1.1);
}

.floating-agent-btn {
    bottom: 100px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
}

.floating-whatsapp-btn {
    bottom: 25px;
    background: #25d366;
    color: white;
}

.floating-action-btn i {
    font-size: 28px;
}

/* Widget Styles - Blue Gradient */
.gradient-surface {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
    color: white !important;
}

.gradient-surface h2 {
    color: white !important;
}

.gradient-surface .lbl-sm {
    color: rgba(255, 255, 255, 0.9) !important;
}


/* Book Now Button */
.book-now-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.animate-fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* Redundancy Fix for Mobile */
@media (max-width: 1023px) {
    .mobile-route-hide {
        display: none !important;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 12px;
    }

    .book-now-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .final-price {
        font-size: 22px;
    }
}

/* Cleaned up old premium card classes */

/* Search Button */
.search-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

/* Mobile Modal styles */
.mobile-form-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.mobile-form-modal.active {
    visibility: visible;
    opacity: 1;
}

.mobile-form-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border-radius: 24px 24px 0 0;
    padding: 20px;
    transform: translateY(100%);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-form-panel h2 {
    color: white !important;
}

.mobile-form-panel .close-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-form-panel .form-handle {
    background: rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 4px;
    border-radius: 2px;
    margin: -10px auto 15px;
}

.mobile-form-panel .service-tab {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    /* Pure white for better visibility */
    font-weight: 700;
}

.mobile-form-panel .service-tab.active {
    background: white;
    color: #1e3a8a !important;
}

.mobile-form-panel .service-tab {
    background: transparent;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
}

.mobile-form-panel .trip-type-btn,
.mobile-form-panel .airport-dir-btn {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
}

.mobile-form-panel .trip-type-btn.active,
.mobile-form-panel .airport-dir-btn.active {
    background: white !important;
    color: #1e3a8a !important;
}

.mobile-form-panel .trip-type-container,
.mobile-form-panel .airport-dir-container {
    background: rgba(0, 0, 0, 0.2) !important;
    border: none;
}

.mobile-form-panel .flex.space-x-2.bg-white\/10 {
    background: rgba(0, 0, 0, 0.2) !important;
}

.mobile-form-modal.active .mobile-form-panel {
    transform: translateY(0);
}

.location-popup {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 2000;
    transform: translateY(100%);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.location-popup-header {
    padding: 20px;
    background: white;
    border-bottom: 1px solid #f1f5f9;
}

/* Fix search icon overlap */
#popup-search-input {
    padding-left: 48px !important;
}

.location-popup-header .relative i {
    z-index: 10;
}

.location-popup.active {
    transform: translateY(0);
}

/* Swap Button */
.swap-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    border: 3px solid white;
}

.swap-btn:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4);
}

.swap-btn:active {
    transform: rotate(180deg) scale(0.95);
}

/* Responsive Visibility */
@media (max-width: 1023px) {
    .desktop-form {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .mobile-only {
        display: none !important;
    }
}

/* Section Headers */
.section-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.form-label {
    color: white !important;
}

.trip-type-container,
.airport-dir-container {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trip-type-btn,
.airport-dir-btn {
    color: rgba(255, 255, 255, 0.8) !important;
}

.trip-type-btn.active,
.airport-dir-btn.active {
    background: white !important;
    color: #3b82f6 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* --- SITE FOOTER --- */
.site-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 100px 0 40px;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 32px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 1rem;
    color: #cbd5e1;
}

.footer-contact p {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
    color: white;
}

.footer-contact i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 32px;
    position: relative;
}

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

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #3b82f6;
    transform: translateX(8px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

@media (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        text-align: left;
        padding: 0 10px;
    }

    .footer-links-list li {
        margin-bottom: 0;
    }

    .footer-links-list a:hover {
        transform: none;
    }
}