/* Enhanced Contact Button Styling - Refined Design */

.accessNav .qu_btn {
    background: linear-gradient(135deg, #3498db 0%, #4CAF50 100%) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: none !important;
    letter-spacing: 0.3px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3) !important;
    text-decoration: none !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
}

.accessNav .qu_btn:hover {
    background: linear-gradient(135deg, #2980b9 0%, #45a049 100%) !important;
    border: none !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4) !important;
}

.accessNav .qu_btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3) !important;
    background: linear-gradient(135deg, #2471a3 0%, #3d8b40 100%) !important;
}

.accessNav .qu_btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3) !important;
}

/* Mobile responsiveness for contact button */
@media (max-width: 991px) {
    .accessNav .qu_btn {
        padding: 10px 20px !important;
        font-size: 13px !important;
        border-radius: 22px !important;
    }
}

@media (max-width: 767px) {
    .accessNav .qu_btn {
        display: inline-flex !important;
        width: auto !important;
        text-align: center !important;
        margin-top: 0 !important;
        padding: 10px 18px !important;
        margin-left: 10px !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 480px) {
    .accessNav .qu_btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
        margin-left: 8px !important;
        border-radius: 18px !important;
    }
}

/* Ensure proper spacing between menu toggler and contact button */
.accessNav .menuToggler {
    margin-right: 12px !important;
}

@media (max-width: 767px) {
    .accessNav .menuToggler {
        margin-right: 8px !important;
        margin-bottom: 0 !important;
    }
}

/* Make sure the button aligns properly with other nav elements */
.accessNav {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

@media (max-width: 767px) {
    .accessNav {
        gap: 8px !important;
    }
}
