/* Modern Home Page Styles */

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* ===== Header & Navigation Styles ===== */
.download_app_icon {
    max-width: 150px; 
}

.modern-header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.modern-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.brand-tagline {
    display: none;
}

.brand-tagline p {
    font-size: 11px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.nav-menu-desktop {
    display: none;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    background: #f8f9fa;
    color: #ff7e61;
    text-decoration: none;
}

.nav-link i {
    font-size: 16px;
}

.highlight-link {
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    color: white !important;
}

.highlight-link:hover {
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8561 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 126, 97, 0.3);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login, .btn-profile, .btn-logout {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-login {
    background: #ff7e61;
    color: white;
}

.btn-login:hover {
    background: #ff6b4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 126, 97, 0.4);
}

.btn-profile {
    background: #f8f9fa;
    color: #333;
}

.btn-profile:hover {
    background: #e9ecef;
    color: #ff7e61;
}

.btn-logout {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.btn-logout:hover {
    background: #f8f9fa;
    border-color: #ff7e61;
    color: #ff7e61;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: right 0.4s ease;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-content {
    position: absolute;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-brand-logo {
    height: 40px;
}

.mobile-close-btn {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: #ff7e61;
    color: white;
}

.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: #f8f9fa;
    border-left-color: #ff7e61;
    color: #ff7e61;
    text-decoration: none;
}

.mobile-nav-link i {
    font-size: 20px;
    width: 25px;
}

.mobile-login-btn {
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    color: white !important;
    margin: 20px;
    border-radius: 12px;
    border-left: none !important;
    justify-content: center;
}

.mobile-login-btn:hover {
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8561 100%);
}

/* Header Responsive Styles */
@media (min-width: 992px) {
    .brand-tagline {
        display: block;
    }

    .nav-menu-desktop {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .brand-logo {
        height: 30px;
    }
}

@media (max-width: 991px) {
    .nav-wrapper {
        padding: 10px 0;
    }

    .brand-logo {
        height: 30px;
    }
}

/* ===== Hero Section Styles ===== */
.hero-section {
    position: relative;
    min-height: 650px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 126, 97, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-section {
    text-align: center;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-highlight {
    background: linear-gradient(135deg, #ff7e61 0%, #ffd89b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.stat-item i {
    font-size: 28px;
    color: #ffd89b;
}

.stat-item div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-item strong {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-item span {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 2px;
}

/* ===== Modern Search Container ===== */
.modern-search-container {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 950px;
    margin: 0 auto;
}

.search-inputs-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f8f9fa;
    border-radius: 60px;
    padding: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.search-inputs-wrapper:focus-within {
    border-color: #ff7e61;
    box-shadow: 0 0 0 4px rgba(255, 126, 97, 0.1);
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
}

.input-icon {
    color: #6c757d;
    font-size: 18px;
}

.modern-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    padding: 14px 0;
    color: #333;
    outline: none;
}

.modern-search-input::placeholder {
    color: #6c757d;
}

.search-divider {
    width: 1px;
    height: 40px;
    background: #dee2e6;
}

.modern-search-btn {
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 35px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.modern-search-btn:hover {
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8561 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 126, 97, 0.4);
}

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

/* ===== Quick Filters ===== */
.quick-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-label {
    font-weight: 700;
    color: white;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-right: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-chip {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.filter-chip:hover::before {
    left: 100%;
}

.filter-chip:hover {
    border-color: #ff7e61;
    color: white;
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 126, 97, 0.4);
}

.filter-chip:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 126, 97, 0.3);
}

.filter-chip i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.filter-chip:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* ===== Featured Venues Section ===== */
.featured-venues-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff5f3 0%, #ffe8e1 100%);
    color: #ff7e61;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-badge i {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.featured-venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .featured-venues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .featured-venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== Featured Venues Owl Carousel Slider ===== */
.featured-venues-owl-slider {
    position: relative;
    padding: 0 70px;
}

.featured-venues-owl-slider .owl-stage-outer {
    overflow: visible;
    padding: 30px 0 50px 0;
}

/* Navigation Arrows - Modern Design */
.featured-venues-owl-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 140px);
    left: -70px;
    pointer-events: none;
    z-index: 10;
}

.featured-venues-owl-slider .owl-nav button.owl-prev,
.featured-venues-owl-slider .owl-nav button.owl-next {
    position: absolute;
    width: 55px;
    height: 55px;
    background: white !important;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    pointer-events: all;
    outline: none;
}

.featured-venues-owl-slider .owl-nav button.owl-prev {
    left: 0;
}

.featured-venues-owl-slider .owl-nav button.owl-next {
    right: 0;
}

.featured-venues-owl-slider .owl-nav button span {
    display: none;
}

.featured-venues-owl-slider .owl-nav button i {
    font-size: 20px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.featured-venues-owl-slider .owl-nav button:hover {
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%) !important;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 126, 97, 0.4);
}

.featured-venues-owl-slider .owl-nav button:hover i {
    color: white;
    transform: scale(1.1);
}

.featured-venues-owl-slider .owl-nav button:active {
    transform: scale(1.05);
}

.featured-venues-owl-slider .owl-nav button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Dots Pagination */
.featured-venues-owl-slider .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
}

.featured-venues-owl-slider .owl-dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
    outline: none;
}

.featured-venues-owl-slider .owl-dot span {
    display: none;
}

.featured-venues-owl-slider .owl-dot.active {
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    width: 35px;
    border-radius: 6px;
}

.featured-venues-owl-slider .owl-dot:hover {
    background: #ff9677;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .featured-venues-owl-slider {
        padding: 0 60px;
    }
    
    .featured-venues-owl-slider .owl-nav {
        width: calc(100% + 120px);
        left: -60px;
    }
    
    .featured-venues-owl-slider .owl-nav button.owl-prev,
    .featured-venues-owl-slider .owl-nav button.owl-next {
        width: 50px;
        height: 50px;
    }
    
    .featured-venues-owl-slider .owl-nav button i {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .featured-venues-owl-slider {
        padding: 0 50px;
    }
    
    .featured-venues-owl-slider .owl-nav {
        width: calc(100% + 100px);
        left: -50px;
    }
    
    .featured-venues-owl-slider .owl-nav button.owl-prev,
    .featured-venues-owl-slider .owl-nav button.owl-next {
        width: 45px;
        height: 45px;
    }
    
    .featured-venues-owl-slider .owl-nav button i {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .featured-venues-owl-slider {
        padding: 0;
    }
    
    .featured-venues-owl-slider .owl-nav {
        display: none;
    }
    
    .featured-venues-owl-slider .owl-dots {
        margin-top: 25px;
    }
}



.featured-venue-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

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

.venue-card-image {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.venue-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 126, 97, 0.3);
}

.venue-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    transition: all 0.3s ease;
}

.featured-venue-card:hover .venue-card-image {
    transform: scale(1.05);
}

.featured-venue-card:hover .venue-card-overlay {
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.venue-card-content {
    padding: 25px;
}

.venue-card-header {
    margin-bottom: 15px;
}

.venue-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.venue-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
    font-size: 0.95rem;
}

.venue-card-location i {
    color: #ff7e61;
    font-size: 14px;
}

.venue-card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    font-size: 14px;
    color: #ffd700;
}

.rating-stars .fa-regular {
    color: #ddd;
}

.rating-value {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
}

.venue-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #495057;
    font-weight: 500;
}

.feature-item i {
    color: #ff7e61;
    font-size: 13px;
}

.venue-card-footer {
    margin-top: auto;
}

.venue-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.venue-card-btn:hover {
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8561 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 126, 97, 0.4);
    color: white;
    text-decoration: none;
}

.venue-card-btn i {
    transition: transform 0.3s ease;
}

.venue-card-btn:hover i {
    transform: translateX(5px);
}

/* ===== Suggested Venues Section ===== */
.suggested-venues-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Search Results Banner */
.search-results-banner {
    background: linear-gradient(135deg, #fff5f3 0%, #ffe8e1 100%);
    border: 2px solid #ff7e61;
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(255, 126, 97, 0.1);
    animation: slideInDown 0.5s ease;
}

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

.results-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

.results-info i {
    font-size: 24px;
    color: #ff7e61;
}

.clear-search-btn {
    background: white;
    border: 2px solid #ff7e61;
    border-radius: 25px;
    padding: 10px 20px;
    color: #ff7e61;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.clear-search-btn:hover {
    background: #ff7e61;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 126, 97, 0.3);
}

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

@media (max-width: 768px) {
    .search-results-banner {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .results-info {
        font-size: 1rem;
    }
    
    .clear-search-btn {
        width: 100%;
        justify-content: center;
    }
}

.suggested-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.suggested-venue-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.suggested-card-image-wrapper {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.suggested-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.suggested-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.85) 100%);
    transition: all 0.3s ease;
}

.suggested-venue-card:hover .suggested-card-overlay {
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.9) 100%);
}

.suggested-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.suggested-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.suggested-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.suggested-card-location i {
    color: #ff7e61;
}

.suggested-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.suggested-card-rating i {
    font-size: 14px;
    color: #ffd700;
}

.suggested-card-rating .fa-regular {
    color: rgba(255, 255, 255, 0.5);
}

.rating-number {
    color: white;
    font-weight: 700;
    margin-left: 5px;
    font-size: 0.95rem;
}

.suggested-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.suggested-venue-card:hover .suggested-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.suggested-card-btn:hover {
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.suggested-card-btn i {
    transition: transform 0.3s ease;
}

.suggested-card-btn:hover i {
    transform: translateX(5px);
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(3px);
}

/* ===== Download App Section ===== */
.download-app-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.download-app-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.download-app-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.download-app-card {
    position: relative;
    z-index: 2;
}

.app-content {
    color: white;
    padding: 20px 0;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.app-badge i {
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

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

.app-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.app-subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 35px;
    line-height: 1.7;
    font-weight: 400;
}

.app-features {
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

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

.app-feature i {
    color: #ffd89b;
    font-size: 22px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 217, 155, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.app-feature:hover i {
    background: #ffd89b;
    color: #667eea;
    transform: rotate(360deg);
}

.app-download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-store-btn {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.app-store-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.app-store-btn:hover::before {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}

.app-store-btn img {
    height: 55px;
    width: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
}

.app-store-btn:hover {
    transform: translateY(-8px);
}

.app-store-btn:hover img {
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

.app-image-container {
    text-align: center;
    position: relative;
    perspective: 1000px;
}

.app-mockup {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    animation: float 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.app-mockup:hover {
    transform: scale(1.05) rotateY(5deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-item strong {
        font-size: 1.25rem;
    }

    .modern-search-container {
        padding: 25px;
    }

    .search-inputs-wrapper {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 10px;
    }

    .search-input-group {
        width: 100%;
        padding: 10px 15px;
    }

    .search-divider {
        display: none;
    }

    .modern-search-btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }

    .featured-venues-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }

    .featured-venues-slider {
        padding: 0 50px;
    }

    .featured-venues-slider .owl-nav button.owl-prev,
    .featured-venues-slider .owl-nav button.owl-next {
        width: 45px;
        height: 45px;
    }

    .featured-venues-slider .owl-nav button.owl-prev {
        left: -50px;
    }

    .featured-venues-slider .owl-nav button.owl-next {
        right: -50px;
    }

    .featured-venues-slider .owl-nav button i {
        font-size: 18px;
    }

    .featured-venues-slider .owl-nav button i {
        font-size: 18px;
    }

    .featured-venues-slider .owl-nav .owl-prev {
        margin-left: -22px;
    }

    .featured-venues-slider .owl-nav .owl-next {
        margin-right: -22px;
    }

    .section-title {
        font-size: 2rem;
    }

    .suggested-venues-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .app-title {
        font-size: 2rem;
    }

    .app-mockup {
        max-height: 350px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 550px;
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        gap: 8px;
    }

    .stat-item i {
        font-size: 22px;
    }

    .stat-item strong {
        font-size: 1.1rem;
    }

    .stat-item span {
        font-size: 0.75rem;
    }

    .modern-search-container {
        padding: 20px;
        border-radius: 15px;
    }

    .quick-filters {
        margin-top: 20px;
        padding: 15px;
        gap: 10px;
    }

    .filter-label {
        font-size: 13px;
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }

    .filter-chip {
        font-size: 13px;
        padding: 10px 18px;
        flex: 1 1 auto;
        min-width: 130px;
        justify-content: center;
    }

    .filter-chip i {
        font-size: 14px;
    }
}

/* ===== How It Works Section ===== */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.how-it-works-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.how-it-works-section .section-title {
    color: white;
}

.how-it-works-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.work-step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.work-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff7e61 0%, #ffd89b 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.work-step-card:hover::before {
    transform: scaleX(1);
}

.work-step-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 126, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.work-step-card:hover::after {
    width: 400px;
    height: 400px;
}

.work-step-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.step-number {
    position: absolute;
    top: -25px;
    right: 35px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(255, 126, 97, 0.5);
    border: 5px solid rgba(255, 255, 255, 0.95);
    z-index: 3;
    transition: all 0.4s ease;
}

.work-step-card:hover .step-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 126, 97, 0.6);
}

.step-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #fff5f3 0%, #ffe8e1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 126, 97, 0.2);
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ffd89b 0%, #ff9677 100%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.work-step-card:hover .step-icon::before {
    opacity: 1;
    transform: scale(1.2);
}

.step-icon i {
    font-size: 45px;
    color: #ff7e61;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.work-step-card:hover .step-icon {
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 126, 97, 0.4);
}

.work-step-card:hover .step-icon i {
    color: white;
    transform: scale(1.1);
}

.step-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.work-step-card:hover .step-title {
    color: #ff7e61;
    transform: scale(1.05);
}

.step-description {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* ===== Why Choose Us Section ===== */
.why-choose-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 126, 97, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 126, 97, 0.1), transparent);
    transition: left 0.7s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    transition: height 0.5s ease;
    z-index: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 126, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 45px 35px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 25px;
    font-size: 150px;
    color: rgba(255, 126, 97, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
    transition: all 0.5s ease;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 126, 97, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.testimonial-card:hover::after {
    transform: scale(1);
}

.testimonial-card:hover::before {
    color: rgba(255, 126, 97, 0.15);
    transform: scale(1.1) rotate(-5deg);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px rgba(255, 126, 97, 0.2);
    border-color: rgba(255, 126, 97, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 18px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-card:hover .testimonial-stars i {
    transform: scale(1.1) rotate(10deg);
}

.testimonial-text {
    color: #2c3e50;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author {
    border-top-color: rgba(255, 126, 97, 0.3);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(255, 126, 97, 0.3);
    border: 4px solid white;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 12px 30px rgba(255, 126, 97, 0.5);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-name {
    color: #ff7e61;
}

.author-event {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-event::before {
    content: '';
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, #ff7e61 0%, transparent 100%)
}

.benefit-card:hover .benefit-text {
    color: rg30px;
    }
    
    .work-step-card {
        padding: 40px 25px;
    }
    
    .benefit-card {
        padding: 40px 25px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }


@media (max-width: 768px) {
    .how-it-works-grid,
    .why-choose-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .how-it-works-section,
    .why-choose-section,
    .testimonials-section {
        padding: 70px 0;
    }
    
    .work-step-card {
        padding: 45px 30px;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 24px;
        top: -20px;
        right: 25px;
    }
    
    .step-icon {
        width: 95px;
        height: 95px;
    }
    
    .step-icon i {
        font-size: 38px;
    }
    
    .step-title {
        font-size: 1.35rem;
    }
    
    .benefit-card {
        padding: 40px 30px;
    }
    
    .benefit-icon {
        width: 85px;
        height: 85px;
    }
    
    .benefit-icon i {
        font-size: 36px;
    }
    
    .benefit-title {
        font-size: 1.25rem;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-card::before {
        font-size: 120px;
        top: -25px;
        left: 20px;
    }
    
    .author-avatar {
        width: 55px;
        height: 55px;
        font-size: 22pxx rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 100px;
    color: #ffe8e1;
    font-family: Georgia, serif;
    line-height: 1;
}

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

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 16px;
}

.testimonial-text {
    color: #2c3e50;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7e61 0%, #ff9677 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.author-event {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Responsive Styles for New Sections */
@media (max-width: 991px) {
    .how-it-works-grid,
    .why-choose-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .how-it-works-grid,
    .why-choose-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .how-it-works-section,
    .why-choose-section,
    .testimonials-section {
        padding: 60px 0;
    }
    
    .step-title,
    .benefit-title {
        font-size: 1.25rem;
    }
}

    .featured-venues-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .featured-venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-venues-slider {
        padding: 0 30px;
    }

    .featured-venues-slider .owl-nav button.owl-prev {
        left: -30px;
    }

    .featured-venues-slider .owl-nav button.owl-next {
        right: -30px;
    }

    .featured-venues-slider .owl-nav button.owl-prev,
    .featured-venues-slider .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
    }

    .featured-venues-slider .owl-nav button i {
        font-size: 16px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .suggested-venues-section {
        padding: 60px 0;
    }

    .suggested-venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .suggested-card-image-wrapper {
        height: 350px;
    }

    .suggested-card-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .download-app-section {
        padding: 60px 0;
    }

    .app-title {
        font-size: 1.75rem;
    }

    .app-subtitle {
        font-size: 1rem;
    }

    .app-image-container {
        margin-top: 40px;
    }

    .app-mockup {
        max-height: 300px;
    }
}

/* ===== Modern Footer Styles ===== */
#footer_section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0 0 0;
    color: white;
    position: relative;
    overflow: hidden;
}

#footer_section .row {
    /* max-width: 1400px; */
    margin: 0 auto;
}

#footer_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7e61 0%, #667eea 50%, #ff7e61 100%);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

#footer_section::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 126, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

#join_us_section {
    padding: 0 30px;
}

#join_us_section img {
    max-width: 180px;
    height: auto;
    margin-bottom: 25px;
    filter: brightness(1.2);
    display: block;
}

.join_us_container {
    margin-bottom: 30px;
    max-width: 450px;
}

.join_title {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin-bottom: 0;
    text-align: justify;
}

#footer_download_app_icon {
    margin-top: 30px;
}

.footer_download_app_icon {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.footer_download_app_icon a {
    transition: all 0.3s ease;
    display: inline-block;
    flex-shrink: 0;
}

.footer_download_app_icon a:hover {
    transform: translateY(-5px);
}

.footer_download_app_icon img {
    height: 42px;
    width: auto;
    max-width: 140px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.footer_download_app_icon a:hover img {
    filter: drop-shadow(0 8px 25px rgba(255, 126, 97, 0.4)) brightness(1.1);
}

/* Follow Section */
#follow_section {
    padding: 0 25px;
}0px;
}

.follow_title p {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 12px;
}

.follow_title p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, #ff7e61 0%, #ff9677 100%);
    border-radius: 2px;
}

.follow_icons {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.follow_icons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    max-width: max-content;
}

.follow_icons a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff7e61 0%, #ff9677 100%);
    bottom: 7px;
    transition: width 0.3s ease;
}

.follow_icons a:hover::before {
    width: 25px;
}

.follow_icons a:hover {
    color: white;
    transform: translateX(8px);
}

.follow_icons a img {
    width: 22px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.follow_icons a:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 126, 97, 0.6));
    transform: scale(1.1);
}



.contact_index .title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 8px;
}

.contact_index .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.contact_index .email,
.contact_index .mobile {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 400;
    word-break: break-word;
}

.contact_index .email::before {
    content: '📧';
    font-size: 15px;
    flex-shrink: 0;
}

.contact_index .mobile::before {
    content: '📱';
    font-size: 15px;
    flex-shrink: 0
.contact_index .email::before {
    content: '📧';
    font-size: 16px;
}

.contact_index .mobile::before {
    content: '📱';
    font-size: 16px;
}

.contact_index .email:hover,
.contact_index .mobile:hover {
    color: #ff7e61;
    transform: translateX(5px);
}

/* Footer Bott2px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_second_section p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0;
    font-size: 0.88rem;
    font-weight: 400;
    padding: 0 15px;
}

/* Footer Responsive */
@media (max-width: 991px) {
    #join_us_section {
        margin-bottom: 35px;
    }
    
    #follow_section,
    #get_deals_section {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    #footer_section {
        padding: 50px 0 0 0;
    }
    
    #footer_section .row {
        max-width: 100%;
    }
    
    #join_us_section {
        padding: 0 20px;
        margin-bottom: 45px;
    }
    
    .join_us_container {
        max-width: 100%;
    }
    
    .join_title {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    #follow_section,
    #get_deals_section {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .follow_title p {
        font-size: 1.25rem;
    }
    
    .contact_index .title {
        font-size: 1.15rem;
    }
    
    .contact_index .email,
    .contact_index .mobile {
        font-size: 0.85rem;
    }
    
    .footer_second_section {
        margin-top: 40px;
        padding: 18px 0;
    }
    
    .footer_second_section p {
        font-size: 0.82rem;
    }
    
    .footer_download_app_icon img {
        height: 38px;
        max-width: 13
    }
    .footer_download_app_icon img {
        height: 40px;
    }
}
