<style>
/* main.css - Darlakbira Booking Website Styles - FIXED */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Text Color Fixes - SIMPLIFIED */
.text-gray-800 { color: #1f2937 !important; }
.text-gray-700 { color: #374151 !important; }
.text-gray-600 { color: #4b5563 !important; }
.text-gray-500 { color: #6b7280 !important; }
.text-gray-400 { color: #9ca3af !important; }
.text-white { color: white !important; }

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%) !important;
    position: relative;
    overflow: hidden;
}

.hero-gradient * {
    color: white !important;
}

/* Search Box */
.search-box {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-box * {
    color: #374151 !important;
}

.search-input {
    transition: all 0.3s ease;
    border: 1px solid #d1d5db;
    background: white !important;
    color: #374151 !important;
}

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

.search-input::placeholder {
    color: #9ca3af !important;
}

/* SEARCH SUGGESTIONS - FIXED VISIBILITY */
.search-suggestions {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
    z-index: 1000;
}

.search-suggestions * {
    color: #1f2937 !important;
    background: transparent !important;
}

.suggestion-item {
    border-bottom: 1px solid #f3f4f6 !important;
    transition: all 0.2s ease !important;
    color: #1f2937 !important;
    background: #ffffff !important;
}

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

.suggestion-item:hover {
    background: #eff6ff !important;
    color: #1f2937 !important;
}

.suggestion-item.active {
    background: #dbeafe !important;
    border-left: 3px solid #3b82f6 !important;
    color: #1f2937 !important;
}

/* MOBILE MENU - FIXED VISIBILITY */
.mobile-menu {
    background: #ffffff !important;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu * {
    color: #1f2937 !important;
    background: transparent !important;
}

.mobile-menu a {
    color: #374151 !important;
    background: transparent !important;
}

.mobile-menu a:hover {
    color: #3b82f6 !important;
    background: #eff6ff !important;
}

/* Desktop Navigation Dropdown */
.nav-desktop {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    z-index: 1000;
    min-width: 200px;
    padding: 8px 0;
}

.dropdown-menu * {
    color: #374151 !important;
    background: transparent !important;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #374151 !important;
    background: #ffffff !important;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.dropdown-item:hover {
    background: #eff6ff !important;
    color: #3b82f6 !important;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
}

.mobile-menu-backdrop.active {
    display: block;
}

body.menu-open {
    overflow: hidden;
}

/* Cards */
.destination-card,
.hotel-card,
.deal-card,
.testimonial-card {
    background: white !important;
    color: #374151 !important;
}

.destination-card *,
.hotel-card *,
.deal-card *,
.testimonial-card * {
    color: #374151 !important;
}

.destination-overlay * {
    color: white !important;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

/* Flatpickr Calendar */
.flatpickr-calendar {
    background: white !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    color: #374151 !important;
}

.flatpickr-calendar * {
    color: #374151 !important;
}

.flatpickr-day.selected {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
    color: white !important;
}

.flatpickr-day.today {
    border-color: #3b82f6 !important;
}

.flatpickr-day:hover {
    background: #eff6ff !important;
}

/* Scrollbar */
.search-suggestions::-webkit-scrollbar {
    width: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Footer */
footer {
    background: #1f2937 !important;
}

footer * {
    color: #d1d5db !important;
}

footer a:hover {
    color: white !important;
}

/* Utility Classes */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    transition: all 0.3s ease;
    color: white !important;
    border: none;
}

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

/* AGGRESSIVE FIX FOR WHITE TEXT IN SUGGESTIONS */
#destination-suggestions,
#destination-suggestions * {
    color: #1f2937 !important;
    background: #ffffff !important;
}

#destination-suggestions div,
#destination-suggestions span,
#destination-suggestions p,
#destination-suggestions i {
    color: #1f2937 !important;
    background: inherit !important;
}

#destination-suggestions .suggestion-item {
    color: #1f2937 !important;
    background: #ffffff !important;
}

#destination-suggestions .suggestion-item:hover {
    color: #1f2937 !important;
    background: #eff6ff !important;
}

#destination-suggestions .suggestion-item.active {
    color: #1f2937 !important;
    background: #dbeafe !important;
}

/* Nuclear option - override all possible white text */
[class*="search-suggestions"],
[class*="suggestion-item"] {
    color: #1f2937 !important;
    background: #ffffff !important;
}

[class*="search-suggestions"] *,
[class*="suggestion-item"] * {
    color: #1f2937 !important;
    background: inherit !important;
}

/* Hero section specific overrides for suggestions */
.hero-gradient .search-suggestions,
.hero-gradient .search-suggestions *,
.hero-gradient #destination-suggestions,
.hero-gradient #destination-suggestions * {
    color: #1f2937 !important;
    background: #ffffff !important;
}

/* Desktop dropdown menu overrides */
.nav-desktop .dropdown-menu,
.nav-desktop .dropdown-menu * {
    color: #374151 !important;
    background: #ffffff !important;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .mobile-menu {
        background: #ffffff !important;
    }
    
    .mobile-menu a {
        color: #374151 !important;
        background: transparent !important;
    }
    
    .mobile-menu a:hover {
        color: #3b82f6 !important;
        background: #eff6ff !important;
    }
    
    .search-suggestions {
        margin-top: 8px;
        max-height: 200px;
        overflow-y: auto;
    }
}

/* Focus states for accessibility */
.search-suggestions:focus-within,
.dropdown-menu:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.suggestion-item:focus {
    background: #dbeafe !important;
    outline: none;
}
</style>