/* Floating Navigation Styles */
.floating-nav {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-nav.visible {
    opacity: 1;
    visibility: visible;
}

.floating-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px;
    background-color: rgba(18, 18, 18, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-nav-logo img {
    height: 30px;
    width: auto;
}

.floating-nav-links {
    display: flex;
    gap: 16px;
}

.floating-nav-link {
    padding: 8px 16px;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.floating-nav-link.active {
    border: 1px solid white;
    font-weight: bold;
}

.floating-nav-link:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.1);
}

.floating-nav-contact .contact-button {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(to right, #096E4E, #23A67D,#00F6A7);
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.floating-nav-contact .contact-button:hover {
    transform: translateY(-2px);
}

.contact-icon-button {
    background: linear-gradient(to right, #00F6A7, #096E4E, #23A67D);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-icon-button:hover {
    transform: translateY(-2px);
}


/* Wheel Picker Styles */
.mobile-nav {
    display: none;
}

.wheel-container {
    position: relative;
    height: 40px;
    overflow: hidden;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.wheel-container:before,
.wheel-container:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    z-index: 2;
    pointer-events: none;
}

.wheel-container:before {
    top: 0;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.3), transparent);
}

.wheel-container:after {
    bottom: 0;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.3), transparent);
}

.wheel-items {
    position: relative;
    transition: transform 0.3s ease;
}

.wheel-item {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 16px;
    white-space: nowrap;
    text-align: center;
}

.wheel-item.active {
    color: white;
    font-weight: bold;
    font-size: 16px;
    border: 1px solid white;
    border-radius: 20px;
    transform: scale(1);
}

.wheel-item.prev,
.wheel-item.next {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transform: scale(0.9);
}

/* Make the wheel items visible */
.wheel-item:not(.active):not(.prev):not(.next) {
    opacity: 0.3;
}

/* Icon sizes */
.site-header .appbar-icon svg,
.site-header .nav-icon svg,
.appbar .nav-icon svg {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 767px) {
    .site-header .appbar-icon svg,
    .site-header .nav-icon svg,
    .appbar .nav-icon svg {
        width: 20px;
        height: 20px;
    }
}
.contact-icon-button {
    display: none;
}

/* Small Mobile Styles - Show only email button (below 450px) */
@media screen and (max-width: 449px) {
    .contact-button {
        display: none !important;
    }
    
    .contact-icon-button {
        display: flex !important;
    }
}
/* Update wheel picker styles for mobile */
@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: block;
        width: 40%;
        margin: 0 auto;
    }
    
    .floating-nav-container {
        padding: 0 10px;
        justify-content: space-between;
    }
    
    .floating-nav-logo {
        width: 30%;
        min-width: 24px;
        display: flex;
        justify-content: flex-start;
    }
    
    .floating-nav-logo img {
        height: 24px;
        width: auto;
    }
    
    .floating-nav-contact {
        width: 30%;
        display: flex;
        justify-content: flex-end;
    }
    
    /* Fix the wheel container */
    .wheel-container {
        max-width: 100%;
        height: 50px; /* Increase height to prevent cropping */
        background: transparent; /* Ensure no background color */
        padding: 5px 0; /* Add padding to prevent cropping */
    }
    
    /* Remove background gradients */
    .wheel-container:before,
    .wheel-container:after {
        background: none;
    }
    
    /* Ensure wheel items have no background */
    .wheel-items {
        background: transparent;
    }
    
    .wheel-item {
        padding: 0 8px;
        background: transparent;
    }
    
    /* Fix active item to ensure it's fully visible */
    .wheel-item.active {
        margin: 8 auto;
        transform: scale(1);
        line-height: 38px; /* Ensure text is vertically centered */
    }
}