* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

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

.logo {
    height: 30px;
}

nav {
    display: flex;
}
nav:hover{
    color: #e32851;
}
nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
}

nav a:hover {
    color: #e32851;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed; /* Changed from absolute to fixed */
    top: 0; /* Changed from 100% to 0 */
    right: -100%; /* Start off-screen to the right */
    width: 280px; /* Set a fixed width */
    height: 100vh; /* Full height */
    background: white;
    border-left: 1px solid #eee; /* Changed from border-top to border-left */
    box-shadow: -4px 0 6px -1px rgba(0, 0, 0, 0.1); /* Changed shadow direction */
    z-index: 1000;
    overflow-y: auto; /* Allow scrolling if content is too long */
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 4rem; /* Add top padding to avoid header overlap */
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.mobile-menu a:hover {
    background-color: #f5f5f5;
    color: #e32851;
}

.mobile-menu .size-6 {
    width: 20px;
    height: 20px;
}

/* Hide mobile menu by default */
.mobile-menu.hidden {
    right: -100%; /* Keep off-screen */
    transition: right 0.3s ease-out;
}

/* Show mobile menu when active */
.mobile-menu.active {
    right: 0; /* Slide in from right */
    transition: right 0.3s ease-out;
}

/* Optional: Add backdrop overlay */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Remove the old slideDown animation */
@keyframes slideDown {
    /* Remove this entire animation */
}

/* Optional: Add slide-in animation for extra smoothness */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.mobile-menu.active {
    right: 0;
    animation: slideInFromRight 0.3s ease-out;
}


/* Updated responsive styles */
@media (max-width: 768px) {
    header {
        padding: 15px 5%;
        gap: 10px;
        position: relative;
    }
    
    .logo {
        height: 25px;
    }
    
    .desktop-nav {
        gap: 0;
    }
    
    .desktop-nav a {
        margin-left: 10px;
        font-size: 11px;
        gap: 5px;
    }
    
    .desktop-nav a .size-6 {
        width: 18px;
        height: 18px;
    }
    
    /* Hide non-essential nav items on mobile */
    .desktop-nav a:not(.menu-trigger) .nav-text {
        display: none;
    }
    
    /* Keep only favorites and menu visible on mobile */
    .desktop-nav a:nth-child(2), /* Language */
    .desktop-nav a:nth-child(3) { /* Login */
        display: none;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 3%;
        gap: 5px;
    }
    
    .logo {
        height: 22px;
    }
    
    .desktop-nav a {
        margin-left: 8px;
        padding: 8px;
        border-radius: 4px;
    }
    
    .desktop-nav a:hover {
        background-color: #f5f5f5;
    }
    
    .desktop-nav a .size-6 {
        width: 20px;
        height: 20px;
    }
    
    /* Show only favorites and menu on very small screens */
    .desktop-nav a:first-child .nav-text .trans,
    .desktop-nav a.menu-trigger .nav-text {
        display: none;
    }
}

/* Icon switching styles */
/* Ensure menu trigger stays on top */
.menu-trigger {
    position: relative;
    z-index: 1001;
}

/* Header close icon styling */
.menu-trigger.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.menu-trigger.active .close-icon {
    display: block !important;
    color: #333;
}

.menu-trigger.active .hamburger-icon {
    display: none !important;
}

/* Mobile menu header styling */
.mobile-menu-content .flex:first-child {
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}


.hero {
    background-color: #f5f7fa;
    padding: 50px 10%;
}

@media (max-width: 768px) {
    .hero {
        background-color: #f5f7fa;
        padding: 15px 4%;
    }
}

.search-box {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-form input, .search-form select {
    flex: 1;
    min-width: 100px;
    padding: 12px 15px;    
}

.search-button {
    background-color: #0079c2;
    color: white;
    border: none;
    padding: 5px 35px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.dropdown-active {
    display: block !important;
}
.calendar-container {
    display: flex;
    gap: 2rem;
}
.calendar-month {
    min-width: 280px;
}
.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.nav-button {
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}
.nav-button:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
}
.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    text-align: center;
}
.calendar-day-header {
    padding: 8px;
    font-weight: 500;
    color: #6b7280;
    font-size: 0.875rem;
}
.calendar-day {
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: all 0.2s;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calendar-day:hover {
    background-color: #e5f3ff;
}
.calendar-day.selected {
    background-color: #0ea5e9;
    color: white;
}
.calendar-day.in-range {
    background-color: #bae6fd;
}
.calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
}
.calendar-day.other-month {
    color: #d1d5db;
}

/* Responsive styles - add this to your existing <style> section */

/* Mobile styles */
@media (max-width: 768px) {
    .max-w-6xl {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Stack search inputs vertically on mobile */
    .flex.items-center.gap-4 {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    /* Make inputs full width on mobile */
    .flex-1, .relative {
        width: 100%;
    }
    
    /* Adjust dropdown widths for mobile */
    #checkinDropdown, #checkoutDropdown {
        width: 95vw !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    #locationDropdown {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    #guestsDropdown {
        width: 95vw !important;
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    /* Stack calendar months vertically on mobile */
    .calendar-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .calendar-month {
        min-width: auto;
        width: 100%;
    }
    
    /* Adjust calendar navigation for mobile */
    .calendar-navigation {
        margin-bottom: 0.5rem;
    }
    
    .calendar-navigation .flex.gap-8 {
        gap: 1rem;
    }
    
    /* Make calendar grid more compact on mobile */
    .calendar-grid {
        gap: 0;
    }
    
    .calendar-day {
        min-height: 40px;
        font-size: 0.75rem;
    }
    
    .calendar-day-header {
        font-size: 0.75rem;
        padding: 4px;
    }
    
    /* Adjust quick date buttons for mobile */
    .flex.gap-3.mt-6 {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .flex.gap-3.mt-6 button {
        flex: 1;
        min-width: calc(50% - 0.25rem);
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .max-w-6xl {
        max-width: 90%;
    }
    
    /* Adjust dropdown widths for tablet */
    #checkinDropdown, #checkoutDropdown {
        width: 600px;
    }
    
    #guestsDropdown {
        width: 350px;
    }
    
    /* Keep calendar side by side on tablet but make it smaller */
    .calendar-container {
        gap: 1rem;
    }
    
    .calendar-month {
        min-width: 250px;
    }
}

/* Calendar Mobile Responsive Fix - add this to your existing styles */

@media (max-width: 768px) {
    /* Hide the second calendar on mobile */
    #calendar2, #calendar2Checkout {
        display: none !important;
    }
    
    /* Adjust calendar container for single month view */
    .calendar-container {
        flex-direction: row !important; /* Override the column direction */
        gap: 0 !important;
        justify-content: center;
    }
    
    /* Make single calendar take full width */
    .calendar-month {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Update calendar navigation for single month */
    .calendar-navigation .flex.gap-8 {
        gap: 0;
        justify-content: center;
    }
    
    /* Hide the second month title */
    #month2Title, #month2TitleCheckout {
        display: none !important;
    }
    
    /* Center the single month title */
    #month1Title, #month1TitleCheckout {
        text-align: center;
        min-width: auto;
        flex: 1;
    }
    
    /* Adjust dropdown width for single month */
    #checkinDropdown, #checkoutDropdown {
        width: 90vw !important;
        max-width: 400px !important;
    }
}

@media (max-width: 480px) {
    /* Even more compact on very small screens */
    .calendar-month {
        max-width: 320px;
    }
    
    #checkinDropdown, #checkoutDropdown {
        width: 95vw !important;
        max-width: 350px !important;
    }
    
    /* Make calendar grid more compact */
    .calendar-day {
        min-height: 36px;
        font-size: 0.75rem;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    body {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .bg-white.rounded-lg.shadow-lg.p-6 {
        padding: 1rem;
    }
    
    /* Make month titles smaller on small screens */
    #month1Title, #month2Title, #month1TitleCheckout, #month2TitleCheckout {
        font-size: 0.875rem;
        min-width: 100px;
    }
    
    /* Adjust navigation buttons */
    .nav-button {
        width: 28px;
        height: 28px;
    }
    
    .nav-button svg {
        width: 12px;
        height: 12px;
    }
    
    /* Make guests dropdown controls more touch-friendly */
    .w-8.h-8 {
        width: 40px;
        height: 40px;
    }
    
    /* Adjust input padding for mobile */
    .border.border-gray-300.rounded-lg.px-4.py-3 {
        padding: 0.75rem;
    }
}

.partners {
    padding: 40px 5%;
    text-align: center;
}

.partners h2 {
    margin-bottom: 20px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
    margin-top: 60px;
}

.partner-logo {
    height: 15px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

.destinations {
    padding: 50px 10%;
    background-color: #f9f9f9;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.destination-info {
    padding: 15px;
}

.destination-info h3 {
    margin-bottom: 10px;
}

.destination-info p {
    color: #666;
    font-size: 0.9rem;
}

.usp {
    padding: 50px 10%;
    text-align: center;
    background-color: #fff;
}

.usp-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 30px auto 0;
}

.usp-item {
    flex: 1;
    align-items: center;
    /* max-width: 300px; */
    min-width: 250px;
    padding: 20px;
}

.usp-item img {
    height: 150px;
    margin-bottom: 15px;
}

.usp-item h3 {
    margin-bottom: 10px;
    color: #0a1121;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    flex-shrink: 0;
}
.flag-icon-sm {
    width: 16px;
    height: 12px;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.slide-down {
    animation: slideDown 0.2s ease-out;
}

footer {
    background-color: #0a1121;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Footer top section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    height: 38px;
}

/* Country selector */
.country-selector {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #1a2332;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 8px 12px;
    gap: 8px;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.country-select {
    background: transparent;
    border: none;
    color: white;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    padding-right: 20px;
}

.chevron-down {
    color: #ccc;
    pointer-events: none;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #555;
    color: white;
    transform: translateY(-2px);
}

/* Footer main content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.link-group h4 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 12px;
}

.link-group a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: white;
}

/* Newsletter section */
.newsletter-section {
    background-color: #1a2332;
    padding: 30px;
    border-radius: 8px;
}

.newsletter-section h4 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #333;
    border-right: none;
    border-radius: 6px 0 0 6px;
    background-color: #0a1121;
    color: white;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-input:focus {
    border-color: #0066cc;
}

.newsletter-btn {
    padding: 12px 24px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #0052a3;
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

.copyright p {
    margin: 5px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        padding: 0 3%;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
        gap: 20px;
    }
    
    .footer-logo {
        height: 32px;
    }
    
    .country-selector {
        order: 1;
    }
    
    .social-icons {
        order: 2;
        justify-content: center;
    }
    
    .footer-main {
        gap: 30px;
    }
    
    .footer-links {
        gap: 25px;
    }
    
    .newsletter-section {
        padding: 20px;
    }
    
    .newsletter-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-input {
        border-radius: 6px;
        border-right: 1px solid #333;
    }
    
    .newsletter-btn {
        border-radius: 6px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 5%;
    }
    
    .footer-top {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .country-selector {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .newsletter-section {
        padding: 15px;
    }
    
    .newsletter-section h4 {
        font-size: 14px;
    }
    
    .link-group h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .link-group a {
        font-size: 13px;
    }
    
    .copyright {
        font-size: 11px;
        padding-top: 20px;
    }
}
/* Country selector styles */
.country-selector {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #1a2332;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 8px 12px;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-width: 180px;
}

.country-selector:hover {
    border-color: #555;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    flex-shrink: 0;
}

#selectedCountry {
    color: white;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.chevron-down {
    color: #ccc;
    pointer-events: none;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.country-selector.active .chevron-down {
    transform: rotate(180deg);
}

/* Country dropdown */
.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a2332;
    border: 1px solid #333;
    border-radius: 6px;
    margin-top: 4px;
    z-index: 1000;
    max-height: 300px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.country-dropdown.hidden {
    display: none;
}

.country-dropdown.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

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

.country-search {
    padding: 10px;
    border-bottom: 1px solid #333;
}

.country-search input {
    width: 100%;
    padding: 8px 12px;
    background-color: #0a1121;
    border: 1px solid #333;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    outline: none;
}

.country-search input::placeholder {
    color: #888;
}

.country-search input:focus {
    border-color: #0066cc;
}

.country-list {
    max-height: 250px;
    overflow-y: auto;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #2a3441;
}

.country-option:hover {
    background-color: #2a3441;
}

.country-option:last-child {
    border-bottom: none;
}

.country-option .flag-icon {
    width: 18px;
    height: 13px;
}

.country-option .country-name {
    color: white;
    font-size: 14px;
    flex: 1;
}

/* Custom scrollbar for country list */
.country-list::-webkit-scrollbar {
    width: 6px;
}

.country-list::-webkit-scrollbar-track {
    background: #1a2332;
}

.country-list::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.country-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .country-selector {
        min-width: 160px;
    }
    
    .country-dropdown {
        left: -50%;
        right: -50%;
        width: 280px;
    }
}

@media (max-width: 480px) {
    .country-selector {
        min-width: 140px;
    }
    
    #selectedCountry {
        font-size: 13px;
    }
    
    .country-dropdown {
        left: -100%;
        right: -100%;
        width: 320px;
    }
}

@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
    }
    
    .search-form input, .search-form select {
        width: 100%;
    }
    
    .search-button {
        width: 100%;
    }
}

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

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

.modal-enter {
    animation: fadeIn 0.3s ease-out;
}

.modal-content-enter {
    animation: slideIn 0.3s ease-out;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

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

/* Login/Signup CSS */

.gradient-bg {
    background-color: linear-gradient(135deg, #0066cc 0%, #004499 100%)!important;
}

.hero-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.glass-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-focus:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    border-color: #0066cc;
}

.social-hover:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slide-in {
    animation: slideInFromRight 0.6s ease-out;
}
.input-style {
    @apply w-full px-4 py-3 border border-gray-300 rounded-lg;
}

.btn-primary {
    @apply w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-4 rounded-lg;
}

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

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

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

/* Minimal custom CSS for slider functionality */
.slide {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide:not(.active) {
    opacity: 0;
    transform: translateX(100%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

@media (max-width: 768px) {
    
    .user-desktop-nav {
        gap: 0;
    }
    
    .user-desktop-nav a {
        margin-left: 10px;
        font-size: 11px;
        gap: 5px;
    }
    
    .user-desktop-nav a .size-6 {
        width: 18px;
        height: 18px;
    }

}

@media (max-width: 480px) {
    
    .user-desktop-nav a {
        margin-left: 0px;
        padding: 2px;
        border-radius: 4px;
    }
    
    .user-desktop-nav a:hover {
        background-color: #f5f5f5;
    }
    
    .user-desktop-nav a .size-6 {
        width: 20px;
        height: 20px;
    }
}

:root {
    --primary: #3b82f6;
    --primary-green: #10b981;
}

.select-box {
    position: relative;
    width: 100%;
}

.select-box input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    outline: none;
    transition: border-color 0.2s ease;
}

input[type="tel"] {
    border-radius: 0 8px 8px 0;
}

.select-box input:focus {
    border: 1px solid var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.signup-form .select-box input:focus {
    border: 1px solid var(--primary-green);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}

.selected-option {
    background-color: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #d1d5db;
}

.selected-option div {
    position: relative;
    width: 80px;
    padding: 0 40px 0 8px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-right: 1px solid #d1d5db;
}

.selected-option div::after {
    position: absolute;
    content: "";
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transition: 0.2s;
}

.selected-option div.active::after {
    transform: translateY(-50%) rotate(225deg);
}

.select-box .options {
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    display: none;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #d1d5db;
}

.select-box .options.active {
    display: block;
}

.select-box .options::before {
    position: absolute;
    content: "";
    left: 16px;
    top: -12px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-bottom-color: var(--primary);
}

input.search-box {
    background-color: var(--primary);
    color: #fff;
    border-radius: 8px 8px 0 0;
    padding: 12px 16px;
    border: none;
}

.select-box ol {
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

.select-box ol::-webkit-scrollbar {
    width: 6px;
}

.select-box ol::-webkit-scrollbar-thumb {
    width: 4px;
    height: 30px;
    background-color: #ccc;
    border-radius: 4px;
}

.select-box ol li {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
}

.select-box ol li.hide {
    display: none;
}

.select-box ol li:not(:last-child) {
    border-bottom: 1px solid #f3f4f6;
}

.select-box ol li:hover {
    background-color: #f3f4f6;
}

.select-box ol li .country-name {
    margin-left: 8px;
    font-size: 14px;
}

.select-box ol li div {
    display: flex;
    align-items: center;
}

.select-box ol li strong {
    font-size: 14px;
    color: #6b7280;
}