/* Modern Search Button */
.page-search-btn {
    display: flex !important;
    padding: 10px 20px !important;
    background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    border: none !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    gap: 8px !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(60, 7, 83, 0.4) !important;
}

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

.page-search-btn:hover {
    border: 2px solid #ff6c2c;
    background: linear-gradient(135deg, #910A67 0%, #ff6c2c 50%, #720455 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 108, 44, 0.4), 0 0 20px rgba(255, 108, 44, 0.3);
}

.page-search-btn:hover::before {
    left: 100%;
}

/* Modern Modal Container */
.location-search-container {
    background: linear-gradient(135deg, rgba(60, 7, 83, 0.1) 0%, rgba(114, 4, 85, 0.1) 50%, rgba(145, 10, 103, 0.1) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.location-search-container.active {
    max-height: 100vh;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Modern Header */
.location-search-container .location-search-header {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 108, 44, 0.3);
}

/* Modern Layout */
.location-search-container .location-search-layout {
    border: 2px solid rgba(255, 108, 44, 0.3);
    padding: 40px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(60, 7, 83, 0.9) 0%, rgba(114, 4, 85, 0.9) 100%);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 600px;
    max-width: 90vw;
    max-height: 80vh;
    box-shadow: 
        0 20px 60px rgba(60, 7, 83, 0.5),
        0 0 50px rgba(255, 108, 44, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.location-search-container .location-search-layout::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 108, 44, 0.1), transparent);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

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

/* Modern Close Button */
.location-search-container .location-search-close {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 108, 44, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-search-container .location-search-close:hover {
    background: rgba(255, 108, 44, 0.4);
    transform: rotate(90deg) scale(1.1);
}

.location-search-container .location-search-close > i {
    color: #ff6c2c;
    font-size: 24px;
    transition: all 0.3s ease;
}

/* Modern Title */
.location-search-container .location-search-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #ff6c2c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 108, 44, 0.5);
}

/* Modern Search Input */
.location-search-container .Locationsearch {
    padding: 16px 24px;
    width: 100%;
    border-radius: 50px;
    border: 2px solid rgba(255, 108, 44, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.location-search-container .Locationsearch::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.location-search-container .Locationsearch:focus {
    border-color: #ff6c2c;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 108, 44, 0.4);
    transform: scale(1.02);
}

/* Modern Results Container */
.location-search-container .location-search-results {
    height: 300px;
    overflow: auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 16px;
    border: 1px solid rgba(255, 108, 44, 0.2);
    box-shadow: inset 0 0 20px rgba(255, 108, 44, 0.1);
}

.location-search-container .location-search-results.active {
    max-height: 300px;
    opacity: 1;
    margin-top: 20px;
    overflow: auto;
}

/* Custom Scrollbar */
.location-search-container .location-search-results::-webkit-scrollbar {
    width: 8px;
}

.location-search-container .location-search-results::-webkit-scrollbar-track {
    background: rgba(255, 108, 44, 0.1);
    border-radius: 10px;
}

.location-search-container .location-search-results::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #720455, #ff6c2c);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-search-container .location-search-results::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #910A67, #ff6c2c);
}

/* Modern Country Headers */
.location-search-container .location-search-results > h3 {
    padding: 15px 24px 8px;
    margin: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(60, 7, 83, 0.1) 0%, rgba(255, 108, 44, 0.1) 100%);
    border-bottom: 2px solid rgba(255, 108, 44, 0.2);
}

.location-search-container .location-search-results > h3 > a {
    text-decoration: none !important;
    text-transform: uppercase !important;
    background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px !important;
    font-weight: 800 !important;
    width: 100%;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.location-search-container .location-search-results > h3 > a:hover {
    background: linear-gradient(135deg, #910A67 0%, #ff6c2c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern City Lists */
.location-search-container .location-search-results > ul {
    border-bottom: 1px solid rgba(255, 108, 44, 0.1);
    padding: 8px 24px 16px;
    text-decoration: none !important;
    text-transform: capitalize !important;
    color: #000;
    list-style: none !important;
    margin: 0;
}

.location-search-container .location-search-results > ul > li {
    width: 100%;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.location-search-container .location-search-results > ul > li::before {
    content: '\f061';
    font-family: 'FontAwesome';
    color: #720455;
    font-size: 12px;
    transition: all 0.3s ease;
}

.location-search-container .location-search-results > ul > li:hover {
    background: linear-gradient(135deg, rgba(60, 7, 83, 0.1) 0%, rgba(255, 108, 44, 0.15) 100%);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(255, 108, 44, 0.2);
}

.location-search-container .location-search-results > ul > li:hover::before {
    color: #ff6c2c;
    transform: translateX(4px);
}

.location-search-container .location-search-results > ul > li > a {
    text-decoration: none !important;
    text-transform: capitalize !important;
    color: #3C0753;
    width: 100%;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.location-search-container .location-search-results > ul > li:hover > a {
    color: #910A67;
    font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 662px) {
    .location-search-container .location-search-layout {
        min-width: 90vw;
        padding: 24px;
        margin: 20px;
    }
    
    .location-search-container .location-search-title {
        font-size: 20px;
    }
    
    .location-search-container .page-search-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .location-search-container .location-search-results {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .location-search-container .location-search-layout {
        min-width: 95vw;
        padding: 20px;
    }
    
    .location-search-container .location-search-header {
        gap: 15px;
    }
    
    .location-search-container .location-search-title {
        font-size: 18px;
    }
}


































