@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
        
body {
    background: #111111;
    color: #E0E0E0;
    overflow-x: hidden;
}
        
/* Parallax base styles */
.parallax-container {
    position: relative;
    overflow: hidden;
    height: 100vh;
}
        
.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    will-change: transform;
}
        
.parallax-back {
    transform: translateZ(-1px) scale(1.1);
}
        
.parallax-front {
    transform: translateZ(0);
}
        
/* Micro animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
        
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 204, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 204, 0, 0.8), 0 0 30px rgba(255, 204, 0, 0.6); }
}
        
@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}
        
.float-animation {
    animation: float 3s ease-in-out infinite;
}
        
.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}
        
.shimmer-bg {
    background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}
        
/* Interactive elements */
.interactive-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
        
.interactive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}
        
.interactive-card:hover::before {
    left: 100%;
}
        
.interactive-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
        
/* Button interactions */
.btn-interactive {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
        
.btn-interactive::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
        
.btn-interactive:hover::before {
    width: 300px;
    height: 300px;
}
        
/* Form enhancements */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}
        
.form-input {
    transition: all 0.3s ease;
    border: 2px solid #444444;
    background: #2A2A2A;
    color: #E0E0E0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    width: 100%;
}
        
.form-input:focus {
    border-color: #FFCC00;
    background: #3A3A3A;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
    outline: none;
}
        
.form-input:hover {
    border-color: #666666;
}
        
.form-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    pointer-events: none;
    color: #999;
    font-size: 14px;
    background: transparent;
}
        
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.75rem;
    color: #FFCC00;
    background: #2A2A2A;
    padding: 0 0.5rem;
    border-radius: 4px;
}
        
/* Booking card enhancements */
.booking-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    border: 1px solid #444444;
    background: #2A2A2A;
    transition: all 0.3s ease;
}
        
.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}
        
.btn-primary {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #FFCC00;
    color: #111111;
    position: relative;
    overflow: hidden;
}
        
.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #FF5000;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
}
        
.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}
        
.icon-3d {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}
        
.icon-3d:hover {
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.4));
    transform: scale(1.1) rotate(5deg);
}
        
.testimonial-card {
    border-left: 4px solid #FFCC00;
    background: #2A2A2A;
    transition: all 0.3s ease;
    cursor: pointer;
}
        
.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: -5px 0 20px rgba(255, 204, 0, 0.2);
}
        
/* Navigation enhancements */
nav {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(17, 17, 17, 0.9);
}
        
nav.scrolled {
    background: rgba(17, 17, 17, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
}
        
/* WhatsApp button animation */
.whatsapp-float {
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}
        
.whatsapp-float:hover {
    animation: none;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}
        
/* Loading states */
.loading-dots {
    display: inline-block;
}
        
.loading-dots::after {
    content: '';
    animation: dots 1.5s infinite;
}
        
@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}
        
/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
        
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
        
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
        
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
        
::-webkit-scrollbar-thumb {
    background: #FFCC00;
    border-radius: 4px;
}
        
::-webkit-scrollbar-thumb:hover {
    background: #FF5000;
}
        
/* Gradient text animation */
.gradient-text {
    background: linear-gradient(45deg, #FFCC00, #FF5000, #FFCC00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
}
        
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
        
/* Micro interactions for cards */
.fleet-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
        
.fleet-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
        
/* Interactive rating stars */
.star-rating {
    display: inline-flex;
    gap: 2px;
}
        
.star-rating i {
    cursor: pointer;
    transition: all 0.2s ease;
}
        
.star-rating i:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px #FFCC00);
}
        
/* Input validation states */
.input-success {
    border-color: #4CAF50 !important;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}
        
.input-error {
    border-color: #f44336 !important;
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.3);
    animation: shake 0.5s ease-in-out;
}
        
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
        
/* Responsive adjustments */
@media (max-width: 768px) {
    .parallax-container {
        height: auto;
    }
            
    .interactive-card:hover {
        transform: translateY(-5px) scale(1.02);
    }
}
        
nav, .border-b-2, .border-t-2, .border-2 {
    border-color: #444444 !important;
}
        
.bg-white {
    background: #2A2A2A;
    color: #E0E0E0;
}
        
.bg-emerald {
    background: rgba(42, 42, 42, 0.7);
}
        
.bg-softpink {
    background: rgba(42, 42, 42, 0.7);
}
        
a:hover {
    color: #FFCC00 !important;
}
        
button {
    color: #E0E0E0;
}
        
button:hover {
    background: #444444;
}

/* Location Search Styles */
.location-suggestions {
    background: #2A2A2A;
    border: 2px solid #444444;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.location-suggestions.show {
    display: block !important;
}

.location-suggestion {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #444444;
    transition: all 0.2s ease;
    color: #E0E0E0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-suggestion:last-child {
    border-bottom: none;
}

.location-suggestion:hover {
    background: #3A3A3A;
    color: #FFCC00;
    transform: translateX(5px);
}

.location-suggestion.selected {
    background: #FFCC00;
    color: #111111;
}

.location-suggestion-icon {
    width: 16px;
    height: 16px;
    color: #999;
    flex-shrink: 0;
}

.location-suggestion:hover .location-suggestion-icon {
    color: #FFCC00;
}

.location-suggestion.selected .location-suggestion-icon {
    color: #111111;
}

.location-suggestion-text {
    flex: 1;
}

.location-suggestion-main {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 2px;
}

.location-suggestion-sub {
    font-size: 12px;
    color: #999;
    opacity: 0.8;
}

.location-suggestion.selected .location-suggestion-sub {
    color: #444444;
}

.location-search-loading {
    padding: 12px 16px;
    text-align: center;
    color: #999;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.location-search-loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #444444;
    border-top: 2px solid #FFCC00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.location-search-no-results {
    padding: 12px 16px;
    text-align: center;
    color: #999;
    font-size: 14px;
    font-style: italic;
}

/* Distance and Fare Information Styles */
#distance-fare-info {
    transition: all 0.3s ease;
    animation: slideDown 0.3s ease-out;
}

#distance-fare-info.show {
    display: block !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.distance-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #999;
    font-size: 14px;
}

.distance-loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #444444;
    border-top: 2px solid #FFCC00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.fare-breakdown {
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 8px;
}

.fare-item {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 4px;
}

.fare-item:last-child {
    margin-bottom: 0;
    font-weight: bold;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    padding-top: 4px;
}

/* Select Dropdown Styles */
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

select.form-input:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFCC00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

select.form-input option {
    background: #2A2A2A;
    color: #E0E0E0;
    padding: 8px 12px;
}

select.form-input:hover {
    border-color: #FFCC00;
    background-color: #3A3A3A;
}

/* Time dropdown specific styles */
.time-dropdown-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.time-dropdown-container .form-group {
    margin-bottom: 0;
}

.time-dropdown-container select {
    font-size: 14px;
    text-align: center;
}

.time-dropdown-container select:focus {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
}

/* Simple Radio Button Styles */
.trip-type-selection {
    margin-bottom: 1.5rem;
}

.radio-input {
    width: 18px;
    height: 18px;
    accent-color: #FFCC00;
    cursor: pointer;
}

.radio-input:focus {
    outline: 2px solid #FFCC00;
    outline-offset: 2px;
}

/* Mobile Search Styles */
.mobile-search-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FFCC00;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mobile-search-btn:hover {
    background: #e6b800;
    transform: scale(1.1);
}

.mobile-search-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.mobile-search-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1f2937;
    border: 2px solid #FFCC00;
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #374151;
}

.mobile-search-title {
    color: #FFCC00;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.mobile-search-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-search-close:hover {
    background: #374151;
    color: #FFCC00;
}

.mobile-search-form .form-group {
    margin-bottom: 1rem;
}

.mobile-search-form .form-input {
    background: #374151;
    border: 1px solid #4b5563;
    color: #d1d5db;
    padding: 0.75rem;
    border-radius: 6px;
    width: 100%;
    font-size: 1rem;
}

.mobile-search-form .form-input:focus {
    outline: none;
    border-color: #FFCC00;
    box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.2);
}

.mobile-search-form .form-label {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.mobile-search-form .btn-primary {
    background: #FFCC00;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.mobile-search-form .btn-primary:hover {
    background: #e6b800;
    transform: translateY(-1px);
}

.mobile-search-form .trip-type-selection {
    margin-bottom: 1.5rem;
}

.mobile-search-form .trip-type-selection label {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: block;
}

.mobile-search-form .trip-type-options {
    display: flex;
    gap: 1rem;
}

.mobile-search-form .trip-type-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0;
}

.mobile-search-form .radio-input {
    accent-color: #FFCC00;
}

/* Show mobile search button on mobile devices */
@media (max-width: 768px) {
    .mobile-search-btn {
        display: block;
    }
} 