* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: #e74c3c;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo i {
    margin-right: 0.5rem;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav a:hover {
    color: #e74c3c;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

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

/* Search Container */
.search-container {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.search-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.search-field {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 400px;
}

.search-field i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666 !important;
    z-index: 1;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    font-size: 16px;
}

/* AGGRESSIVE FIX: Remove any red boxes or unwanted elements */
.search-field *:not(input):not(select):not(.location-btn) {
    display: none !important;
}

/* Remove any elements with red background that might be causing issues */
.search-field [style*="background: red"],
.search-field [style*="background-color: red"],
.search-field [style*="background: #e74c3c"],
.search-field .fa-map-marker-alt,
.search-field .fas.fa-map-marker-alt {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Hide icons in location field since we're using emoji in placeholder */
.location-field i {
    display: none !important;
}

/* Specific fix for any red background on Font Awesome icons */
.fa-map-marker-alt:before,
.fas.fa-map-marker-alt:before {
    background: none !important;
    color: #666 !important;
}

/* Remove any pseudo-element styling that might cause red boxes */
.search-field i:before,
.search-field i:after {
    background: none !important;
    border: none !important;
    content: none !important;
}

/* Specifically target the map marker icon */
.search-field .fa-map-marker-alt {
    background: transparent !important;
    color: #666 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove any Font Awesome styling conflicts */
.search-field .fas,
.search-field .far,
.search-field .fab {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Make sure Font Awesome icons display correctly */
.search-field i.fas::before,
.search-field i.far::before,
.search-field i.fab::before {
    background: none !important;
    color: inherit !important;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Default padding for all fields */
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Poppins', sans-serif;
    background: white;
}

/* Location field specific styling - completely reset */
.location-field {
    position: relative;
    display: flex;
    align-items: center;
}

.location-field input {
    width: 100%;
    padding: 12px 50px 12px 15px !important;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Poppins', sans-serif;
    background: white !important;
    box-shadow: none !important;
}

.location-field input:focus {
    outline: none;
    border-color: #e74c3c;
}

/* Hide any icons in location field */
.location-field i,
.location-field .fas,
.location-field .far,
.location-field .fab {
    display: none !important;
}

/* Remove any pseudo-elements that might be causing the red box */
.location-field::before,
.location-field::after,
.location-field input::before,
.location-field input::after {
    display: none !important;
    content: none !important;
}

/* Remove any browser autofill styling and validation indicators */
.search-field input::-webkit-outer-spin-button,
.search-field input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.search-field input:-webkit-autofill,
.search-field input:-webkit-autofill:hover,
.search-field input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #333 !important;
}

.search-field input:invalid {
    box-shadow: none !important;
    outline: none !important;
}

/* Remove any red dots or browser validation indicators */
.search-field input::-webkit-validation-bubble,
.search-field input::-webkit-validation-bubble-arrow,
.search-field input::-webkit-validation-bubble-message {
    display: none !important;
}

.search-field input::placeholder {
    color: #999;
    opacity: 1;
}

.search-field input::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.search-field input:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

.search-field input::-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: #e74c3c;
}

.location-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 14px;
}

.location-btn:hover {
    background: #c0392b;
    transform: translateY(-50%) scale(1.05);
}

/* Remove any Font Awesome icons from location button */
.location-btn i,
.location-btn .fas {
    display: none !important;
}

.search-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.search-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Filters */
.filters {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.filters .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.filter-tab.active,
.filter-tab:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

.sort-options select {
    padding: 10px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: white;
}

.sort-options select:focus {
    outline: none;
    border-color: #e74c3c;
}

/* Venues Section */
.venues-section {
    padding: 4rem 0;
    min-height: 50vh;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
}

.view-toggle {
    display: flex;
    gap: 1rem;
}

.view-btn {
    background: #f8f9fa;
    border: 2px solid #eee;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.view-btn.active {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.view-btn:hover {
    transform: translateY(-2px);
}

/* Venues Grid */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.venue-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: slideUp 0.6s ease;
}

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

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.venue-image {
    height: 200px;
    background: linear-gradient(45deg, #eee, #ddd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #999;
    position: relative;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.venue-info {
    padding: 1.5rem;
}

.venue-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.venue-location {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.venue-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
}

.venue-detail {
    text-align: center;
    flex: 1;
}

.venue-detail i {
    color: #e74c3c;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.venue-detail .detail-value {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.2rem;
}

.venue-detail .detail-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.venue-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.venue-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffc107;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
}

.contact-btn {
    width: 100%;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.contact-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Loading */
.loading {
    text-align: center;
    padding: 4rem 0;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e74c3c;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

/* Map Container */
.map-container {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: fadeIn 0.6s ease;
}

#map {
    width: 100%;
    height: 100%;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 0;
    color: #666;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ddd;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #999;
}

/* About Section */
.about-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.about-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

/* Highlight the availability feature as our main USP */
.feature:nth-child(2) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e74c3c;
    position: relative;
}

.feature:nth-child(2)::before {
    content: "NEW";
    position: absolute;
    top: -8px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e74c3c;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #555;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #e74c3c;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Modal */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    margin: 20px;
    padding: 0;
    border-radius: 15px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    color: #999;
    transition: color 0.3s;
}

.close:hover {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .search-form {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .search-field {
        max-width: 100%;
    }
    
    .search-btn {
        width: 100%;
    }
    
    .filters .container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .search-form {
        padding: 1.5rem;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .venue-card {
        margin: 0 auto;
        max-width: 100%;
    }
}
